Programster's Blog

Tutorials focusing on Linux, programming, and open-source

Debian 9 - Install Ceph Deploy Tool

Run the script below to install the the ceph-deploy tool for the latest LTS version of Ceph (Luminous), on the latest version of Debian.

#!/bin/bash

sudo apt update
sudo apt-get install apt-transport-https

# add the key to trust repo we are about to add
wget -q -O- 'https://download.ceph.com/keys/release.asc' \
| sudo apt-key add -

# add ceph repo
echo deb https://download.ceph.com/debian-luminous/ $(lsb_release -sc) main \
| sudo tee /etc/apt/sources.list.d/ceph.list

# install ceph-deploy.
sudo apt update
sudo apt install ceph-deploy -y

Now if you run ceph-deply --version, you should see 2.0.0.

References

Last updated: 14th January 2025
First published: 16th August 2018

This blog is created by Stuart Page

I'm a freelance web developer and technology consultant based in Surrey, UK, with over 10 years experience in web development, DevOps, Linux Administration, and IT solutions.

Need support with your infrastructure or web services?

Get in touch