2012-05-03 17:45:08 +00:00
===================================
Installing Debian/Ubuntu Packages
===================================
2012-07-24 00:39:12 +00:00
You may install stable release packages (for stable deployments),
development release packages (for the latest features), or development
testing packages (for development and QA only). Do not add multiple
package sources at the same time.
2012-05-24 23:54:15 +00:00
2013-01-08 04:51:04 +00:00
Install Release Key
===================
2012-05-03 17:45:08 +00:00
2012-07-24 00:39:12 +00:00
Packages are cryptographically signed with the `` release.asc `` key.
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
2013-02-09 05:09:20 +00:00
wget -q -O- 'https://ceph.com/git/?p=ceph.git;a=blob_plain;f=keys/release.asc' | sudo apt-key add -
2012-05-03 17:45:08 +00:00
2013-01-08 04:51:04 +00:00
Add Release Packages
====================
Bobtail
-------
Bobtail is the most recent major release of Ceph. These packages are
recommended for anyone deploying Ceph in a production environment.
Critical bug fixes are backported and point releases are made as
necessary.
2012-06-05 15:15:47 +00:00
Add our package repository to your system's list of APT sources.
2013-05-02 09:26:47 +00:00
See `the bobtail Debian repository`_ for a complete list of Debian and Ubuntu releases
2012-06-05 15:15:47 +00:00
supported. ::
2012-05-24 23:54:15 +00:00
2013-01-08 04:51:04 +00:00
echo deb http://ceph.com/debian-bobtail/ $(lsb_release -sc) main | sudo tee /etc/apt/sources.list.d/ceph.list
2012-05-24 23:54:15 +00:00
2012-08-17 17:41:06 +00:00
For the European users there is also a mirror in the Netherlands at http://eu.ceph.com/ ::
2012-08-15 10:13:07 +00:00
2013-01-08 04:51:04 +00:00
echo deb http://eu.ceph.com/debian-bobtail/ $(lsb_release -sc) main | sudo tee /etc/apt/sources.list.d/ceph.list
2012-08-15 10:13:07 +00:00
2013-01-08 04:51:04 +00:00
Argonaut
--------
2012-07-24 00:39:12 +00:00
2013-01-08 04:51:04 +00:00
Argonaut is the previous major release of Ceph. These packages are
recommended for those who have already deployed argonaut in production
and are not yet ready to upgrade.
2012-07-24 00:39:12 +00:00
2013-01-08 04:51:04 +00:00
Add our package repository to your system's list of APT sources. See
2013-05-02 09:26:47 +00:00
`the argonaut Debian repository`_ for a complete list of Debian and Ubuntu releases
2013-01-08 04:51:04 +00:00
supported. ::
2012-07-24 00:39:12 +00:00
2013-01-08 04:51:04 +00:00
echo deb http://ceph.com/debian-argonaut/ $(lsb_release -sc) main | sudo tee /etc/apt/sources.list.d/ceph.list
For the European users there is also a mirror in the Netherlands at http://eu.ceph.com/ ::
echo deb http://eu.ceph.com/debian-argonaut/ $(lsb_release -sc) main | sudo tee /etc/apt/sources.list.d/ceph.list
2012-07-24 00:39:12 +00:00
2013-01-08 04:51:04 +00:00
Development Release Packages
----------------------------
Our development process generates a new release of Ceph every 3-4
weeks. These packages are faster-moving than the stable releases, as
they get new features integrated quickly, while still undergoing
several weeks of QA prior to release.
Add our package repository to your system's list of APT sources. See
2013-05-02 09:26:47 +00:00
`the testing Debian repository`_ for a complete list of Debian and Ubuntu releases
2012-07-24 00:39:12 +00:00
supported. ::
echo deb http://ceph.com/debian-testing/ $(lsb_release -sc) main | sudo tee /etc/apt/sources.list.d/ceph.list
2012-08-17 17:41:06 +00:00
For the European users there is also a mirror in the Netherlands at http://eu.ceph.com/ ::
2012-08-15 10:13:07 +00:00
echo deb http://eu.ceph.com/debian-testing/ $(lsb_release -sc) main | sudo tee /etc/apt/sources.list.d/ceph.list
2013-01-08 04:51:04 +00:00
Development Testing Packages
----------------------------
2012-05-24 23:54:15 +00:00
2012-07-24 00:39:12 +00:00
We automatically build Debian and Ubuntu packages for current
development branches in the Ceph source code repository. These
packages are intended for developers and QA only.
Packages are cryptographically signed with the `` autobuild.asc `` key.
2012-05-24 23:54:15 +00:00
Add our autobuild key to your system's list of trusted keys to avoid a
security warning::
2013-02-09 05:09:20 +00:00
wget -q -O- 'https://ceph.com/git/?p=ceph.git;a=blob_plain;f=keys/autobuild.asc' | sudo apt-key add -
2012-05-03 17:45:08 +00:00
2013-01-08 04:51:04 +00:00
Add our package repository to your system's list of APT sources, but
replace `` {BRANCH} `` with the branch you'd like to use (e.g., chef-3,
wip-hack, master, stable). See `the gitbuilder page`_ for a complete
list of distributions we build. ::
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
2013-01-08 04:51:04 +00:00
2012-05-24 23:54:15 +00:00
Installing Packages
2012-11-07 22:09:12 +00:00
===================
2012-07-24 00:39:12 +00:00
2012-05-24 23:54:15 +00:00
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
2013-01-08 04:51:04 +00:00
.. _the bobtail Debian repository: http://ceph.com/debian-bobtail/dists
.. _the argonaut Debian repository: http://ceph.com/debian-argonaut/dists
.. _the testing Debian repository: http://ceph.com/debian-testing/dists
2013-01-10 00:10:36 +00:00
.. _the gitbuilder page: http://gitbuilder.ceph.com