Ceph is a distributed object, block, and file storage platform
Go to file
Kefu Chai c7effab565 man: point man/conf.py and Makefile to doc/man
Fixes: #11320
Signed-off-by: Kefu Chai <kchai@redhat.com>
2015-04-07 23:26:49 +08:00
admin doc: Switch doxygen integration back to breathe 2015-03-20 17:17:16 +08:00
ceph-erasure-code-corpus@f1f95a1de9
ceph-object-corpus@da43eb1195
cmake/modules
debian debian: remove lttng checking from rules 2015-04-06 11:36:35 -07:00
doc man: move man/8/*.rst back to doc/man/8 2015-04-07 23:26:49 +08:00
examples
fusetrace
keys
m4 crc32c: add aarch64 optimized crc32c implementation 2015-03-17 13:56:52 -05:00
man man: point man/conf.py and Makefile to doc/man 2015-04-07 23:26:49 +08:00
qa Merge pull request #3560 from XinzeChi/wip-pmon-all 2015-04-06 15:47:09 -07:00
rpm
share
src Merge pull request #4273 from dachary/wip-docker-ccache 2015-04-07 21:21:19 +08:00
systemd ceph.spec.in: fix handling of /var/run/ceph 2015-03-17 12:28:28 -06:00
udev
.gitignore
.gitmodule_mirrors
.gitmodules
.mailmap mailmap: Zhi (David) Zhang affiliation 2015-04-02 21:54:53 +02:00
.organizationmap mailmap: Ian Kelling affiliation 2015-04-02 21:58:26 +02:00
.peoplemap Some sanitization work on .mailmap, .organizationmap, .peoplemap : Sorting , Duplicate removal 2015-03-16 21:02:34 +00:00
AUTHORS
CMakeLists.txt
CONTRIBUTING.rst
COPYING
COPYING-GPL2
COPYING-LGPL2.1
ChangeLog
CodingStyle
Doxyfile
INSTALL
Makefile.am
NEWS
PendingReleaseNotes Update PendingReleaseNotes for firefly change, rgw socket path related 2015-04-06 10:38:57 -07:00
README
README.cmake
README.md
README.xio xio: Update README.xio with dependencies 2015-03-17 05:13:57 -07:00
SubmittingPatches be gender neutral 2015-03-23 16:59:55 -07:00
autogen.sh
ceph.spec.in spec.in: sphinx -b man needs sphinx > 1.0 (part 2) 2015-04-07 12:09:03 +02:00
configure.ac man: using sphinx-1.0-build if no sphinx-build 2015-04-03 02:59:58 +02:00
do_autogen.sh
doc_deps.deb.txt
install-deps.sh install-deps: support OpenSUSE 2015-03-24 14:11:47 +01:00
make-debs.sh
pom.xml
run-make-check.sh

README.md

============================================ Ceph - a scalable distributed storage system

Please see http://ceph.com/ for current info.

Contributing Code

Most of Ceph is licensed under the LGPL version 2.1. Some miscellaneous code is under BSD-style license or is public domain. The documentation is licensed under Creative Commons Attribution-ShareAlike (CC BY-SA). There are a handful of headers included here that are licensed under the GPL. Please see the file COPYING for a full inventory of licenses by file.

Code contributions must include a valid "Signed-off-by" acknowledging the license for the modified or contributed file. Please see the file SubmittingPatches for details on what that means and on how to generate and submit patches.

We do not require assignment of copyright to contribute code; code is contributed under the terms of the applicable license.

Build Prerequisites

debian-based

The list of debian packages dependencies can be installed with:

./install-deps.sh

Note: libsnappy-dev and libleveldb-dev are not available upstream for natty, oneiric, and squeeze. Backports for Ceph can be found at ceph.com/debian-leveldb.

rpm-based

The list of RPM packages dependencies can be installed with:

./install-deps.sh

Building Ceph

Developers, please refer to the Developer Guide for more information, otherwise, you can build the server daemons, and FUSE client, by executing the following:

./autogen.sh
./configure
make

(Note that the FUSE client will only be built if libfuse is present.)

Dependencies

The configure script will complain about any missing dependencies as it goes. You can also refer to debian/control or ceph.spec.in for the package build dependencies on those platforms. In many cases, dependencies can be avoided with --with-foo or --without-bar switches. For example,

./configure --with-nss         # use libnss instead of libcrypto++
./configure --without-radosgw  # do not build radosgw
./configure --without-tcmalloc # avoid google-perftools dependency

Building packages

You can build packages for Debian or Debian-derived (e.g., Ubuntu) systems with

sudo apt-get install dpkg-dev
dpkg-checkbuilddeps        # make sure we have all dependencies
dpkg-buildpackage

For RPM-based systems (Red Hat, SUSE, etc.),

rpmbuild

Building the Documentation

Prerequisites

The list of package dependencies for building the documentation can be found in doc_deps.deb.txt:

sudo apt-get install `cat doc_deps.deb.txt`

Building the Documentation

To build the documentation, ensure that you are in the top-level `/ceph directory, and execute the build script. For example:

admin/build-doc