ceph/doc/install/building-ceph.rst
John Wilkins 6f6df5c2ef doc: Moved doc/source files to doc/install per new IA.
Signed-off-by: John Wilkins <john.wilkins@inktank.com>
2012-11-07 22:41:35 -08:00

27 lines
658 B
ReStructuredText

===============
Building Ceph
===============
Ceph provides ``automake`` and ``configure`` scripts to streamline the build
process. To build Ceph, navigate to your cloned Ceph repository and execute the
following::
cd ceph
./autogen.sh
./configure
make
You can use ``make -j`` to execute multiple jobs depending upon your system. For
example::
make -j4
To install Ceph locally, you may also use::
sudo make install
If you install Ceph locally, ``make`` will place the executables in
``usr/local/bin``. You may add the ``ceph.conf`` file to the ``usr/local/bin``
directory to run an evaluation environment of Ceph from a single directory.