mirror of
https://github.com/ceph/ceph
synced 2024-12-14 07:25:50 +00:00
7eca0dd9a9
Removed {ARCH} references. Added link to Source. Signed-off-by: John Wilkins <john.wilkins@dreamhost.com>
30 lines
914 B
ReStructuredText
30 lines
914 B
ReStructuredText
===================================
|
|
Installing Debian/Ubuntu Packages
|
|
===================================
|
|
|
|
We build Debian and Ubuntu packages for each stable release of Ceph.
|
|
Packages are cryptographically signed with the ``release.asc`` key.
|
|
|
|
Add our release 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/release.asc | sudo apt-key add -
|
|
|
|
Add our package repository to your system's list of APT sources::
|
|
|
|
echo deb http://ceph.com/debian/ {DISTRO} main | sudo tee /etc/apt/sources.list.d/ceph.list
|
|
|
|
Replace ``{DISTRO}`` with the code name for Debian/Ubuntu distribution
|
|
(*e.g.,* ``precise`` for Ubuntu ``12.04``). See `the Debian
|
|
repository <http://ceph.com/debian/dists>`_ for a full list
|
|
of distributions supported.
|
|
|
|
Update APT's database::
|
|
|
|
sudo apt-get update
|
|
|
|
Install Ceph::
|
|
|
|
sudo apt-get install ceph
|
|
|