===============
The ``ceph-daemon`` utility is used to bootstrap a new Ceph Cluster.
-You can get the utility by either installing a package provided by
-your Linux distribution::
- sudo apt install -y ceph-daemon # or,
- sudo dnf install -y ceph-daemon # or,
- sudo yum install -y ceph-daemon
+Use curl to fetch the standalone script::
+
+ [monitor 1] # curl --silent --remote-name --location https://github.com/ceph/ceph/raw/master/src/ceph-daemon/ceph-daemon
+ [monitor 1] # chmod +x ceph-daemon
+ [monitor 1] # sudo install -m 0755 ceph-daemon /usr/sbin # optional!
+
+You can also get the utility by installing a package provided by
+your Linux distribution::
-or by simply downloading the standalone script manually::
+ [monitor 1] # sudo apt install -y ceph-daemon # or,
+ [monitor 1] # sudo dnf install -y ceph-daemon # or,
+ [monitor 1] # sudo yum install -y ceph-daemon
- curl --silent --remote-name --location https://github.com/ceph/ceph/raw/master/src/ceph-daemon/ceph-daemon
- chmod +x ceph-daemon
- sudo install -m 0755 ceph-daemon /usr/sbin # optional!
+
Bootstrap a new cluster
=======================