summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Wilkins <john.wilkins@inktank.com>2013-02-25 08:21:11 -0800
committerJohn Wilkins <john.wilkins@inktank.com>2013-02-25 08:21:11 -0800
commit3fdf4393493732f77bbd6e35c1ffbd4ee7eb6648 (patch)
tree5328f51d7d412e559c7e8df63deac0d7d4c9b834
parent516935bc2397ad5e766462a63a0c475e76d1a748 (diff)
downloadceph-3fdf4393493732f77bbd6e35c1ffbd4ee7eb6648.tar.gz
doc: Moved admonition to kernel mount.
fixes: #4146 Signed-off-by: John Wilkins <john.wilkins@inktank.com>
-rw-r--r--doc/start/quick-cephfs.rst13
-rw-r--r--doc/start/quick-rbd.rst9
2 files changed, 14 insertions, 8 deletions
diff --git a/doc/start/quick-cephfs.rst b/doc/start/quick-cephfs.rst
index 6674087f922..5e17c4d39a4 100644
--- a/doc/start/quick-cephfs.rst
+++ b/doc/start/quick-cephfs.rst
@@ -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
diff --git a/doc/start/quick-rbd.rst b/doc/start/quick-rbd.rst
index e7561ec9dd6..7300547e5ea 100644
--- a/doc/start/quick-rbd.rst
+++ b/doc/start/quick-rbd.rst
@@ -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