]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
doc/cephfs: Improve mount-using-fuse.rst 64472/head
authorAnthony D'Atri <anthonyeleven@users.noreply.github.com>
Fri, 11 Jul 2025 19:02:45 +0000 (15:02 -0400)
committerZac Dover <zac.dover@proton.me>
Mon, 14 Jul 2025 09:48:13 +0000 (19:48 +1000)
Signed-off-by: Anthony D'Atri <anthonyeleven@users.noreply.github.com>
(cherry picked from commit 329ee7b3038e49cf0def2f2628444e3e90796c05)

doc/cephfs/mount-using-fuse.rst

index 5d9801e73ec3e75f84680785d46d912c5dcfee93..9a66ce17cdc466dba40474b2c76af5a0f4bfbad3 100644 (file)
@@ -44,17 +44,17 @@ too::
 
     ceph-fuse --id foo -k /path/to/keyring /mnt/mycephfs
 
-You may pass the MON's socket too, although this is not mandatory::
+You may pass a Monitor's address and port on the commandline, although this is not mandatory::
 
     ceph-fuse --id foo -m 192.168.0.1:6789 /mnt/mycephfs
 
 You can also mount a specific directory within CephFS instead of mounting
-root of CephFS on your local FS::
+the CephFS root::
 
     ceph-fuse --id foo -r /path/to/dir /mnt/mycephfs
 
-If you have more than one FS on your Ceph cluster, use the option
-``--client_fs`` to mount the non-default FS::
+If you serve more than one CephFS file system from your Ceph cluster, use the option
+``--client_fs`` to mount the non-default file system::
 
     ceph-fuse --id foo --client_fs mycephfs2 /mnt/mycephfs2
 
@@ -68,8 +68,8 @@ Use ``umount`` to unmount CephFS like any other FS::
 
     umount /mnt/mycephfs
 
-.. tip:: Ensure that you are not within the file system directories before
-   executing this command.
+.. tip:: Ensure that no shell or other processes have open files under the file system
+   before executing this command.  This includes a shell's current working directory.
 
 Persistent Mounts
 =================