crimson-osd command not found

In this troubleshooting guide we learn how to fix crimson-osd command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

crimson-osd: command not found

or when using sudo you get the following error message

sudo: crimson-osd: command not found

Solutions to crimson-osd: command not found

How To Fix crimson-osd: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu crimson-osd is provided by crimson-osd package.

crimson-osd is:

Ceph is a massively scalable, open-source, distributed storage system that runs on commodity hardware and delivers object, block and file system storage.

Crimson is a re-implementation of the ceph-osd daemon using a more platform aware and scalable software architecture (seastar).

This package contains the Crimson Object Storage Daemon for the Ceph storage system. It is responsible for storing objects on a local file system and providing access to them over the network.

To fix this problem, we can install more using the command below.

sudo apt-get -y install crimson-osd

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install crimson-osd.

sudo apt -y install crimson-osd

Or if you have aptitude installed you can use the following command.

sudo aptitude install crimson-osd

Summary

In this tutorial we learn how to fix crimson-osd command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.