2012-05-03 17:45:08 +00:00
===================================
Installing Debian/Ubuntu Packages
===================================
2012-05-24 23:54:15 +00:00
You may install release packages (recommended) or development
packages (for development and QA only). Do not add both at the same time.
Add Release Packages
--------------------
2012-05-03 17:51:02 +00:00
We build Debian and Ubuntu packages for each stable release of Ceph.
Packages are cryptographically signed with the `` release.asc `` key.
2012-05-03 17:45:08 +00:00
2012-05-03 17:51:02 +00:00
Add our release key to your system's list of trusted keys to avoid a
security warning::
2012-05-03 17:45:08 +00:00
2012-05-03 17:51:02 +00:00
wget -q -O- https://raw.github.com/ceph/ceph/master/keys/release.asc | sudo apt-key add -
2012-05-03 17:45:08 +00:00
2012-06-05 15:15:47 +00:00
Add our package repository to your system's list of APT sources.
See `the Debian repository`_ for a complete list of distributions
supported. ::
2012-05-24 23:54:15 +00:00
2012-06-14 16:35:17 +00:00
echo deb http://ceph.com/debian/ $(lsb_release -sc) main | sudo tee /etc/apt/sources.list.d/ceph.list
2012-05-24 23:54:15 +00:00
Add Development Packages
------------------------
We build Debian and Ubuntu packages for development releases of Ceph.
These packages are intended for developers and QA only. Packages are
cryptographically signed with the `` autobuild.asc `` key.
Add our autobuild key to your system's list of trusted keys to avoid a
security warning::
wget -q -O- https://raw.github.com/ceph/ceph/master/keys/autobuild.asc \ | sudo apt-key add -
2012-05-03 17:45:08 +00:00
2012-05-24 23:54:15 +00:00
Add our package repository to your system's list of APT sources, but replace `` {BRANCH} ``
2012-06-05 15:15:47 +00:00
with the branch you'd like to use (e.g., chef-3, wip-hack, master, stable).
We support `` maveric `` , `` oneiric `` , and `` precise `` distributions. ::
2012-05-03 17:45:08 +00:00
2012-06-14 16:35:17 +00:00
echo deb http://gitbuilder.ceph.com/ceph-deb-$(lsb_release -sc)-x86_64-basic/ref/{BRANCH} $(lsb_release -sc) main | sudo tee /etc/apt/sources.list.d/ceph.list
2012-05-03 17:45:08 +00:00
2012-05-24 23:54:15 +00:00
Installing Packages
-------------------
Once you have added either release or development packages to APT,
2012-06-14 16:35:17 +00:00
you should update APT's database and install Ceph::
2012-05-03 17:45:08 +00:00
2012-06-14 16:35:17 +00:00
sudo apt-get update && sudo apt-get install ceph
2012-05-03 17:45:08 +00:00
2012-06-01 19:53:13 +00:00
.. _the Debian repository: http://ceph.com/debian/dists