Ceph is a distributed object, block, and file storage platform
Go to file
Sage Weil a08d9619d5 rados: move librados.h, rados_bencher.h
Also include rados_bencher.h in Makefile.am.
2009-12-04 10:03:49 -08:00
debian debian: gracefully replace lib packages prior to '1' suffix 2009-11-04 13:27:06 -08:00
fusetrace
man radosgw: fix man page names, include in package 2009-10-28 12:08:54 -07:00
qa qa: Rename a file for future clarity. 2009-12-01 17:32:38 -08:00
src rados: move librados.h, rados_bencher.h 2009-12-04 10:03:49 -08:00
web
wireshark auth: fix connect response 2009-10-15 16:24:03 -07:00
.gitignore
AUTHORS
COPYING
ChangeLog
INSTALL
Makefile.am
NEWS
README
RELEASE_CHECKLIST don't forget -standalone.git in release checklist 2009-11-05 21:53:15 -08:00
autogen.sh
build_upload_debian_packages.sh debian: warn on no args to build script 2009-10-28 12:13:48 -07:00
ceph.spec.in ceph.spec: mostly in line with .deb 2009-11-25 21:45:11 -08:00
configure.ac makefile: don't link libm and libpthread with crush 2009-10-28 14:47:08 -07:00

README

Ceph - a scalable distributed file system
-----------------------------------------

Please see http://ceph.newdream.net/ for current info.

----

To build the Linux kernel client,

$ cd src/kernel
$ make
or
$ make KERNELDIR=/path/to/linux
$ insmod ceph.ko
$ mount -t ceph 1.2.3.4:/ /mnt/ceph
...

----

To build the server daemons, and FUSE client,

$ ./autogen.sh
$ ./configure
$ cd src
$ make

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

----

A quick summary of binaries that will be built in src/

daemons:
 cmon -- monitor daemon.  handles cluster state and configuration
         information.
 cosd -- storage daemon.  stores objects on a given block device.
 cmds -- metadata daemon.  handles file system namespace.
 cmonctl -- send commands to the monitor cluster.

userland clients:
 cfuse -- fuse client.
 csyn -- synthetic workload generator client.

tools:
 mkmonfs -- create a fresh monfs (for a new filesystem)
 monmaptool -- create/edit mon map
 osdmaptool -- create/edit osd map 
 crushtool -- create/edit crush map
 dupstore -- duplicate an osd object store (offline)

development/debugging:
 fakesyn -- simulator with synthetic workload
 fakefuse -- simulator that mounts with fuse

----

see also src/README