ceph-fuse --id foo --client_fs mycephfs2 /mnt/mycephfs2
-You may also add a ``client_fs`` setting to your ``ceph.conf``
+You may also add a ``client_fs`` setting to your ``ceph.conf``. Alternatively, the option
+``--client_mds_namespace`` is supported for backward compatibility.
Unmounting CephFS
=================
mount -t ceph cephuser@.cephfs=/subvolume/dir1/dir2 /mnt/mycephfs -o secretfile=/etc/ceph/cephuser.secret
+Backward Compatibility
+======================
+The old syntax is supported for backward compatibility.
+
+To mount CephFS with the kernel driver::
+
+ mkdir /mnt/mycephfs
+ mount -t ceph :/ /mnt/mycephfs -o name=admin
+
+The key-value argument right after option ``-o`` is CephX credential;
+``name`` is the username of the CephX user we are using to mount CephFS.
+
+To mount a non-default FS ``cephfs2``, in case the cluster has multiple FSs::
+
+ mount -t ceph :/ /mnt/mycephfs -o name=admin,fs=cephfs2
+
+ or
+
+ mount -t ceph :/ /mnt/mycephfs -o name=admin,mds_namespace=cephfs2
+
+.. note:: The option ``mds_namespace`` is deprecated. Use ``fs=`` instead when using the old syntax for mounting.
+
Unmounting CephFS
=================
To unmount the Ceph file system, use the ``umount`` command as usual::
them. If an inode contains any stale file locks, read/write on the inode
is not allowed until applications release all stale file locks.
+:command: `fs=<fs-name>`
+ Specify the non-default file system to be mounted, when using the old syntax.
+
+:command: `mds_namespace=<fs-name>`
+ A synonym of "fs=" (Deprecated).
+
Advanced
--------
:command:`cap_release_safety`
mount.ceph fs_user@.mycephfs2=/ /mnt/mycephfs
+To mount using the old syntax::
+
+ mount -t ceph 192.168.0.1:/ /mnt/mycephfs
+
Availability
============