2012-05-03 17:45:08 +00:00
|
|
|
===================================
|
|
|
|
Installing Debian/Ubuntu 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-05-03 17:51:02 +00:00
|
|
|
Add our package repository to your system's list of APT sources::
|
2012-05-03 17:45:08 +00:00
|
|
|
|
2012-05-03 17:51:02 +00:00
|
|
|
echo deb http://ceph.com/debian/ {DISTRO} main | sudo tee /etc/apt/sources.list.d/ceph.list
|
2012-05-03 17:45:08 +00:00
|
|
|
|
2012-05-03 17:51:02 +00:00
|
|
|
Replace ``{DISTRO}`` with the code name for Debian/Ubuntu distribution
|
|
|
|
(*e.g.,* ``precise`` for Ubuntu ``12.04``). See `the Debian
|
|
|
|
repository <http://ceph.newdream.net/debian/dists>`_ for a full list
|
|
|
|
of distributions supported. Replace ``{ARCH}`` with either ``amd64``
|
|
|
|
for 64-bit systems or ``i386`` for 32-bit systems.
|
2012-05-03 17:45:08 +00:00
|
|
|
|
2012-05-03 17:51:02 +00:00
|
|
|
Update APT's database::
|
2012-05-03 17:45:08 +00:00
|
|
|
|
|
|
|
sudo apt-get update
|
|
|
|
|
2012-05-03 17:51:02 +00:00
|
|
|
Install Ceph::
|
2012-05-03 17:45:08 +00:00
|
|
|
|
|
|
|
sudo apt-get install ceph
|
|
|
|
|