]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
doc: Moved admonition to kernel mount.
authorJohn Wilkins <john.wilkins@inktank.com>
Mon, 25 Feb 2013 16:21:11 +0000 (08:21 -0800)
committerJohn Wilkins <john.wilkins@inktank.com>
Mon, 25 Feb 2013 16:21:11 +0000 (08:21 -0800)
fixes: #4146

Signed-off-by: John Wilkins <john.wilkins@inktank.com>
doc/start/quick-cephfs.rst
doc/start/quick-rbd.rst

index 6674087f92215dc8460aa4663a0ac604da712a76..5e17c4d39a4eae08bfc8111684dff077e6950bcf 100644 (file)
@@ -5,8 +5,6 @@
 To use this guide, you must have executed the procedures in the `5-minute
 Quick Start`_ guide first. Execute this quick start on the client machine.
 
-.. important:: Mount the CephFS filesystem on the client machine,
-   not the cluster machine.
 
 Kernel Driver
 =============
@@ -15,7 +13,12 @@ Mount Ceph FS as a kernel driver. ::
 
        sudo mkdir /mnt/mycephfs
        sudo mount -t ceph {ip-address-of-monitor}:6789:/ /mnt/mycephfs
-       
+
+
+.. note:: Mount the CephFS filesystem on the client machine,
+   not the cluster machine. See `FAQ`_ for details.
+
+
 Filesystem in User Space (FUSE)
 ===============================
 
@@ -24,6 +27,7 @@ Mount Ceph FS as with FUSE. Replace {username} with your username. ::
        sudo mkdir /home/{username}/cephfs
        sudo ceph-fuse -m {ip-address-of-monitor}:6789 /home/{username}/cephfs
 
+
 Additional Information
 ======================
 
@@ -33,4 +37,5 @@ details on running CephFS in a production environment.
 
 .. _5-minute Quick Start: ../quick-start
 .. _CephFS: ../../cephfs/
-.. _Inktank: http://inktank.com
\ No newline at end of file
+.. _Inktank: http://inktank.com
+.. _FAQ: ../../faq#try-ceph
index e7561ec9dd651ae968cc7fb212395dd755705da9..7300547e5ea2a7fb2fa93fb8c3d07e75ed951a46 100644 (file)
@@ -5,9 +5,6 @@
 To use this guide, you must have executed the procedures in the `5-minute
 Quick Start`_ guide first. Execute this quick start on the client machine.
 
-.. important:: Mount the block device on the client machine, 
-   not the server machine.
-
 #. Create a block device image. :: 
 
        rbd create foo --size 4096      
@@ -29,7 +26,11 @@ Quick Start`_ guide first. Execute this quick start on the client machine.
        sudo mkdir /mnt/myrbd
        sudo mount /dev/rbd/rbd/foo /mnt/myrbd
 
+.. note:: Mount the block device on the client machine, 
+   not the server machine. See `FAQ`_ for details.
+
 See `block devices`_ for additional details.
 
 .. _5-minute Quick Start: ../quick-start
-.. _block devices: ../../rbd/rbd
\ No newline at end of file
+.. _block devices: ../../rbd/rbd
+.. _FAQ: ../../faq#try-ceph