]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
doc: s/Ceph FS/CephFS 23308/head
authorJos Collin <jcollin@redhat.com>
Sat, 28 Jul 2018 12:17:33 +0000 (17:47 +0530)
committerJos Collin <jcollin@redhat.com>
Sat, 28 Jul 2018 14:29:33 +0000 (19:59 +0530)
Fixes: https://github.com/ceph/ceph/pull/22784#discussion_r200755460
Signed-off-by: Jos Collin <jcollin@redhat.com>
doc/architecture.rst
doc/cephfs/fstab.rst
doc/cephfs/fuse.rst
doc/cephfs/kernel.rst
doc/man/8/ceph-fuse.rst
doc/rados/operations/monitoring.rst
doc/rbd/index.rst
doc/start/quick-cephfs.rst

index 15b8d266f565122b8c6aca9defb1f84d22a47afc..fb6e9c31bf1468c6e0a67f17e4b197e5ecf65cfc 100644 (file)
@@ -1444,7 +1444,7 @@ architecture.
 
 .. ditaa::
             +--------------+  +----------------+  +-------------+
-            | Block Device |  | Object Storage |  |   Ceph FS   |
+            | Block Device |  | Object Storage |  |   CephFS    |
             +--------------+  +----------------+  +-------------+            
 
             +--------------+  +----------------+  +-------------+
@@ -1513,16 +1513,16 @@ client. Other virtualization technologies such as Xen can access the Ceph Block
 Device kernel object(s). This is done with the  command-line tool ``rbd``.
 
 
-.. index:: Ceph FS; Ceph Filesystem; libcephfs; MDS; metadata server; ceph-mds
+.. index:: CephFS; Ceph Filesystem; libcephfs; MDS; metadata server; ceph-mds
 
 .. _arch-cephfs:
 
 Ceph Filesystem
 ---------------
 
-The Ceph Filesystem (Ceph FS) provides a POSIX-compliant filesystem as a 
+The Ceph Filesystem (CephFS) provides a POSIX-compliant filesystem as a
 service that is layered on top of the object-based Ceph Storage Cluster.
-Ceph FS files get mapped to objects that Ceph stores in the Ceph Storage
+CephFS files get mapped to objects that Ceph stores in the Ceph Storage
 Cluster. Ceph Clients mount a CephFS filesystem as a kernel object or as
 a Filesystem in User Space (FUSE).
 
@@ -1532,7 +1532,7 @@ a Filesystem in User Space (FUSE).
             +-----------------------+  +------------------------+            
 
             +---------------------------------------------------+
-            |            Ceph FS Library (libcephfs)            |
+            |            CephFS Library (libcephfs)             |
             +---------------------------------------------------+
 
             +---------------------------------------------------+
@@ -1554,7 +1554,7 @@ would tax the Ceph OSD Daemons unnecessarily. So separating the metadata from
 the data means that the Ceph Filesystem can provide high performance services
 without taxing the Ceph Storage Cluster.
 
-Ceph FS separates the metadata from the data, storing the metadata in the MDS, 
+CephFS separates the metadata from the data, storing the metadata in the MDS,
 and storing the file data in one or more objects in the Ceph Storage Cluster.
 The Ceph filesystem aims for POSIX compatibility. ``ceph-mds`` can run as a
 single process, or it can be distributed out to multiple physical machines,
index dc3871549aabfbcc801d45de0ccc646214c3ef1e..785208d7f2f8210b07606182a04fe87a20652b8b 100644 (file)
@@ -1,14 +1,14 @@
-==========================================
- Mount Ceph FS in your File Systems Table
-==========================================
+========================================
+ Mount CephFS in your File Systems Table
+========================================
 
-If you mount Ceph FS in your file systems table, the Ceph file system will mount 
+If you mount CephFS in your file systems table, the Ceph file system will mount
 automatically on startup. 
 
 Kernel Driver
 =============
 
-To mount Ceph FS in your file systems table as a kernel driver, add the
+To mount CephFS in your file systems table as a kernel driver, add the
 following to ``/etc/fstab``::
 
        {ipaddress}:{port}:/ {mount}/{mountpoint} {filesystem-name}     [name=username,secret=secretkey|secretfile=/path/to/secretfile],[{mount.options}]
@@ -26,7 +26,7 @@ See `User Management`_ for details.
 FUSE
 ====
 
-To mount Ceph FS in your file systems table as a filesystem in user space, add the
+To mount CephFS in your file systems table as a filesystem in user space, add the
 following to ``/etc/fstab``::
 
        #DEVICE PATH       TYPE      OPTIONS
index d8c6cdf46b23b97124ce0b39f826aadbbc1bcb0a..02a4d485c1750c042238aeee9ecc480c40b38b33 100644 (file)
@@ -1,6 +1,6 @@
-=========================
-Mount Ceph FS using FUSE
-=========================
+=======================
+Mount CephFS using FUSE
+=======================
 
 Before mounting a Ceph File System in User Space (FUSE), ensure that the client
 host has a copy of the Ceph configuration file and a keyring with CAPS for the
index eaaacef3748004149f1737d9bce5158511888a45..3b5a75086a54cb3ee5a07dea1dac4dbc9457ccd5 100644 (file)
@@ -1,6 +1,6 @@
-======================================
- Mount Ceph FS with the Kernel Driver
-======================================
+====================================
+ Mount CephFS with the Kernel Driver
+====================================
 
 To mount the Ceph file system you may use the ``mount`` command if you know the
 monitor host IP address(es), or use the ``mount.ceph`` utility to resolve the 
index c9c867ea1e57423d93fc8a6be71e1f49117142c2..ecf18ea11ad6638a852ee56e599ed669bf1168c0 100644 (file)
@@ -18,7 +18,7 @@ Description
 **ceph-fuse** is a FUSE (File system in USErspace) client for Ceph
 distributed file system. It will mount a ceph file system specified
 via the -m option or described by ceph.conf (see below) at the
-specific mount point. See `Mount Ceph FS using FUSE`_ for detailed
+specific mount point. See `Mount CephFS using FUSE`_ for detailed
 information.
 
 The file system can be unmounted with::
@@ -75,4 +75,4 @@ See also
 fusermount(8),
 :doc:`ceph <ceph>`\(8)
 
-.. _Mount Ceph FS using FUSE: ../../../cephfs/fuse/
+.. _Mount CephFS using FUSE: ../../../cephfs/fuse/
index f9d6cf67be80f67f47c72bfb74171b6091a00132..3c59f057720d7d8e31abc506c20825850b3938aa 100644 (file)
@@ -311,7 +311,7 @@ three monitors may return the following:
 Checking MDS Status
 ===================
 
-Metadata servers provide metadata services for  Ceph FS. Metadata servers have
+Metadata servers provide metadata services for  CephFS. Metadata servers have
 two sets of states: ``up | down`` and ``active | inactive``. To ensure your
 metadata servers are ``up`` and ``active``,  execute the following:: 
 
index 3cdb7b5be4a749b2e1f940edc4894fc096c32683..23bcbed63f1ec14e5f3dee1a5eab7a1cba153201 100644 (file)
@@ -32,7 +32,7 @@ Ceph's block devices deliver high performance with infinite scalability to
 `kernel modules`_, or to :abbr:`KVMs (kernel virtual machines)` such as `QEMU`_, and
 cloud-based computing systems like `OpenStack`_ and `CloudStack`_ that rely on
 libvirt and QEMU to integrate with Ceph block devices. You can use the same cluster
-to operate the `Ceph RADOS Gateway`_, the `Ceph FS filesystem`_, and Ceph block
+to operate the `Ceph RADOS Gateway`_, the `CephFS filesystem`_, and Ceph block
 devices simultaneously.
 
 .. important:: To use Ceph Block Devices, you must have access to a running
@@ -69,4 +69,4 @@ devices simultaneously.
 .. _OpenStack: ../rbd-openstack
 .. _CloudStack: ../rbd-cloudstack
 .. _Ceph RADOS Gateway: ../../radosgw/
-.. _Ceph FS filesystem: ../../cephfs/
+.. _CephFS filesystem: ../../cephfs/
index da4d84efab8b549f16b8dd1dd66e0cc8b672ed9b..fda0919a417faadd8b6a43d034bef9a4b556b76f 100644 (file)
@@ -1,8 +1,8 @@
-=====================
- Ceph FS Quick Start
-=====================
+===================
+ CephFS Quick Start
+===================
 
-To use the :term:`Ceph FS` Quick Start guide, you must have executed the
+To use the :term:`CephFS` Quick Start guide, you must have executed the
 procedures in the `Storage Cluster Quick Start`_ guide first. Execute this quick
 start on the Admin Host.
 
@@ -53,7 +53,7 @@ following procedure:
 
        cat ceph.client.admin.keyring
 
-#. Copy the key of the user who will be using the mounted Ceph FS filesystem.
+#. Copy the key of the user who will be using the mounted CephFS filesystem.
    It should look something like this:: 
        
        [client.admin]
@@ -75,7 +75,7 @@ following procedure:
 Kernel Driver
 =============
 
-Mount Ceph FS as a kernel driver. :: 
+Mount CephFS as a kernel driver. ::
 
        sudo mkdir /mnt/mycephfs
        sudo mount -t ceph {ip-address-of-monitor}:6789:/ /mnt/mycephfs
@@ -87,14 +87,14 @@ example::
        sudo mount -t ceph 192.168.0.1:6789:/ /mnt/mycephfs -o name=admin,secretfile=admin.secret
 
 
-.. note:: Mount the Ceph FS filesystem on the admin node,
+.. note:: Mount the CephFS filesystem on the admin node,
    not the server node. See `FAQ`_ for details.
 
 
 Filesystem in User Space (FUSE)
 ===============================
 
-Mount Ceph FS as a Filesystem in User Space (FUSE). ::
+Mount CephFS as a Filesystem in User Space (FUSE). ::
 
        sudo mkdir ~/mycephfs
        sudo ceph-fuse -m {ip-address-of-monitor}:6789 ~/mycephfs
@@ -108,12 +108,12 @@ is not in the default location (i.e., ``/etc/ceph``)::
 Additional Information
 ======================
 
-See `Ceph FS`_ for additional information. Ceph FS is not quite as stable
+See `CephFS`_ for additional information. CephFS is not quite as stable
 as the Ceph Block Device and Ceph Object Storage. See `Troubleshooting`_
 if you encounter trouble. 
 
 .. _Storage Cluster Quick Start: ../quick-ceph-deploy
-.. _Ceph FS: ../../cephfs/
+.. _CephFS: ../../cephfs/
 .. _FAQ: http://wiki.ceph.com/How_Can_I_Give_Ceph_a_Try
 .. _Troubleshooting: ../../cephfs/troubleshooting
 .. _OS Recommendations: ../os-recommendations