summaryrefslogtreecommitdiffstats
path: root/README (follow)
Commit message (Collapse)AuthorAgeFilesLines
* README: symlink from README.mdSage Weil2014-08-061-0/+1
| | | | | | | It looks better as markdown than rendered as text via the markdown tool, so just symlink it. Signed-off-by: Sage Weil <sage@redhat.com>
* Renamed README to README.md to render in markdownLuis Pabón2014-08-051-103/+0
| | | | Signed-off-by: Luis Pabón <lpabon@redhat.com>
* Developer quick start guideLuis Pabón2014-08-051-22/+22
| | | | Signed-off-by: Luis Pabón <lpabon@redhat.com>
* Automagically setup submodules on first run.Thorsten Behrens2014-07-031-4/+0
| | | | | | I mean, who's reading the README, anyway? Signed-off-by: Thorsten Behrens <tbehrens@suse.com>
* doc: Fixes spelling errors on READMESahid Orentino Ferdjaoui2014-06-071-2/+2
| | | | Signed-off-by: Sahid Orentino Ferdjaoui <sahid.ferdjaoui@cloudwatt.com>
* README: move package dependencies into separate filesSage Weil2014-05-211-96/+24
| | | | | | | Sorted, with a short, simple command to paste. Avoid the duplication of the lists. Signed-off-by: Sage Weil <sage@inktank.com>
* README: clean up some whitespaceSage Weil2014-05-211-12/+12
| | | | | | Remove $ prefix, use tab consistently. Signed-off-by: Sage Weil <sage@inktank.com>
* rbd: add libkrbd convenience libraryIlya Dryomov2014-04-231-2/+4
| | | | | | | | | | | | | Add libkrbd libtool convenience library to provide an interface for mapping and unmapping rbd images programmatically. This will be used by the rbd binary itself and the librbd_fsx testing tool. libkrbd takes care of the kernel module stuff (common/module.h) and makes use of libudev to be able to properly wait for block device creation and deletion and tell which block device got assigned by the kernel to the newly created mapping. Signed-off-by: Ilya Dryomov <ilya.dryomov@inktank.com>
* doc: update build prerequisitesKen Dreyer2014-03-101-1/+4
| | | | | | Based on WIP branch by Gary Lowell <gary.lowell@inktank.com>. Signed-off-by: Ken Dreyer <ken.dreyer@inktank.com>
* Merge remote-tracking branch 'gh/firefly'Sage Weil2014-03-071-2/+4
|\ | | | | | | | | Conflicts: README
| * FileStore: introduce XfsFileStoreBackend classIlya Dryomov2014-03-031-2/+4
| | | | | | | | | | | | | | | | | | | | Introduce XfsFileStoreBackend class, currently the only filestore backend implementing SETALLOCHINT op. This commit adds a build-time dependency on libxfs as xfs-specific ioctl (XFS_IOC_FSSETXATTR / XFS_XFLAG_EXTSIZE) is used to implement the new set_alloc_hint() method. Signed-off-by: Ilya Dryomov <ilya.dryomov@inktank.com>
* | README: add build depSage Weil2014-02-231-2/+2
|/ | | | | | Technically it's a 'make check' dep, but close enough. Signed-off-by: Sage Weil <sage@inktank.com>
* correct one command line at building packages sectionywang192014-02-121-1/+1
| | | | Signed-off-by: Wang, Yaguang <yaguang.wang@intel.com>
* rbd: match against whole disks on unmapIlya Dryomov2013-12-131-2/+4
| | | | | | | | | | | | | | | | | | Currently the way 'rbd unmap' translates a user-provided block device into an rbd id is it matches the major number of the specified device against /sys/bus/rbd/devices/<id>/major for each rbd mapping and declares success on the first match. This works for both entire disks and partitions, because under the current device number allocation scheme, each mapping means a new major number. In preparation for support for single-major device number allocation scheme, which would require matching both major and minor numbers, make sure to always match against entire disk device numbers, by converting the specified device major:minor pair into wholdedisk major:minor pair. To achive that, use the libblkid library, which accomplishes this goal by walking stable sysfs structures. Signed-off-by: Ilya Dryomov <ilya.dryomov@inktank.com>
* README: update a list of build deps for rpm-based systemsIlya Dryomov2013-12-021-2/+7
| | | | | | | A list of build dependencies for rpm-based OSes is missing a few items. This fills in the gaps. Signed-off-by: Ilya Dryomov <ilya.dryomov@inktank.com>
* README: add yum command lineSage Weil2013-11-261-0/+5
| | | | | | This makes it easy to cut and paste. Yay! Signed-off-by: Sage Weil <sage@inktank.com>
* fix nss lib nameAlfredo Deza2013-08-261-1/+1
| | | | Signed-off-by: Alfredo Deza <alfredo.deza@inktank.com>
* update the README with required RPM packagesAlfredo Deza2013-08-261-1/+27
| | | | Signed-off-by: Alfredo Deza <alfredo.deza@inktank.com>
* Add 'ceph-rest-api'Dan Mick2013-07-111-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ceph-rest-api is a Python WSGI module for accessing the Ceph cluster. It supports most of the commands supported by the ceph CLI, appropriately translated to HTTP GET/PUT requests. It is not a truly RESTful interface. Not supported at this moment: "tell", "pg <pgid>", and "daemon" commands. Configuration options are specified in ceph.conf, specified with -c/--conf or obtained from $CEPH_CONF, /etc/ceph/ceph.conf, ~/.ceph/ceph.conf, or ./ceph.conf. -n/--name specifies the client name, used for the cluster authentication key and for the ceph.conf section name (default is client.restapi). restapi keyring = <keyring file> restapi public addr = listenIP:port (default 0.0.0.0:5000) restapi base url = <base path> (default /api/v0.1) restapi log level = (error, warning, info, debug) restapi log file = (default /var/log/ceph/<clientname>.log) Primitive human-level command discovery is supported; GET from BASEURL (say, http://localhost:5000/api/v0.1) will show an HTML table of all commands and arguments, method supported, and help strings. Signed-off-by: Dan Mick <dan.mick@inktank.com>
* Add python-argparse to dependencies (for pre-2.7 systems)Dan Mick2013-06-241-1/+2
| | | | Signed-off-by: Dan Mick <dan.mick@inktank.com>
* Update README dependency listsDan Mick2013-06-131-1/+4
| | | | Signed-off-by: Dan Mick <dan.mick@inktank.com>
* Fix a README typoFrancois Deppierraz2013-04-291-2/+2
| | | | Signed-off-by: François Deppierraz <francois@ctrlaltdel.ch>
* README: fix dependency listsDan Mick2013-04-021-2/+1
| | | | | 1) automake appeared twice 2) make apt-get command match the list
* README: Add libsnappy-dev to build requirements.Gary Lowell2013-03-021-0/+1
| | | | Signed-off-by: Gary Lowell <gary.lowell@inktank.com>
* README: add leveldb-dev to package list needed for buildDanny Al-Gaaf2013-02-271-1/+1
| | | | Signed-off-by: Danny Al-Gaaf <danny.al-gaaf@bisect.de>
* Added libexpat dependencyCesar Mello2013-01-261-2/+2
|
* README: add the libboost-thread-dev dep to the listSam Lang2012-11-281-1/+2
| | | | Signed-off-by: Sam Lang <sam.lang@inktank.com>
* README: add libboost-program-options-devSamuel Just2012-10-311-0/+1
| | | | Signed-off-by: Samuel Just <sam.just@inktank.com>
* doc: Adds package deps to list in READMESam Lang2012-09-241-1/+4
| | | | | | | | The README provides a list of packages needed to successfully configure ceph. uuid-dev and libatomic-ops-dev are missing from the list. Signed-off-by: Sam Lang <sam.lang@inktank.com>
* doc: add missing dependencies to READMEMike Ryan2012-07-191-1/+5
| | | | Signed-off-by: Mike Ryan <mike.ryan@inktank.com>
* ceph.newdream.net -> ceph.comSage Weil2012-06-161-1/+1
| | | | wiki url -> docs url
* doc: Whitespace cleanup.Tommi Virtanen2012-05-031-29/+27
| | | | Signed-off-by: Tommi Virtanen <tommi.virtanen@dreamhost.com>
* Initial cut of introduction, getting started, and installing. More to do on ↵John Wilkins2012-05-021-11/+65
| | | | | | | installation. RADOS gateway to follow. Signed-off-by: John Wilkins <john.wilkins@dreamhost.com> Signed-off-by: Tommi Virtanen <tommi.virtanen@dreamhost.com>
* README: updateSage Weil2012-04-111-20/+47
| | | | | | | | | | - refer to COPYING, SubmittingPatches - a word about dependencies - building packages - drop the list of built binaries... it's incomplete and not very interesting. Signed-off-by: Sage Weil <sage@newdream.net>
* README: update instructionsYehuda Sadeh2012-04-051-0/+4
| | | | | | Needed to add submodule instructions. Signed-off-by: Yehuda Sadeh <yehuda@hq.newdream.net>
* c* -> ceph-*Sage Weil2011-09-231-4/+4
| | | | | | Hopefully I didn't miss too much... Signed-off-by: Sage Weil <sage@newdream.net>
* README: update a bitSage Weil2011-09-071-9/+4
| | | | Signed-off-by: Sage Weil <sage@newdream.net>
* mkmonfs: remove all tracesSage Weil2010-07-021-1/+0
| | | | | | | It's been replaced by 'cmon --mkfs' Reported-by: Thomas Mueller <thomas@chaschperli.ch> Signed-off-by: Sage Weil <sage@newdream.net>
* fix up READMEsSage Weil2010-03-231-22/+7
|
* helper script readmeSage Weil2008-05-131-0/+5
|
* readmev0.2Sage Weil2008-05-071-2/+24
|
* readme summarizes binary targetsSage Weil2008-03-181-0/+25
|
* autoconf changes to build on a debian/testing machineSage Weil2008-02-011-0/+2
|
* first pass at autoconf and automakeSage Weil2008-01-281-0/+4