How To Install libradosstriper-dev on Ubuntu 20.04

In this tutorial we learn how to install libradosstriper-dev on Ubuntu 20.04. libradosstriper-dev is RADOS striping interface (development files) RADOS striping interface (development files) RADOS striping interface (development files)

Introduction

In this tutorial we learn how to install libradosstriper-dev on Ubuntu 20.04.

What is libradosstriper-dev

libradosstriper-dev is:

libradosstriper is a striping interface built on top of the rados library, allowing to stripe bigger objects onto several standard rados objects using an interface very similar to the rados one.

This package contains development files needed for building applications that link against libradosstriper.

Package: libradosstriper-dev Architecture: amd64 Version: 15.2.12-0ubuntu0.20.04.1 Priority: optional Section: libdevel Source: ceph Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Ceph Packaging Team [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 111 Depends: libradosstriper1 (= 15.2.12-0ubuntu0.20.04.1) Filename: pool/main/c/ceph/libradosstriper-dev_15.2.12-0ubuntu0.20.04.1_amd64.deb Size: 18436 MD5sum: c602b7534f67b8d64b2b6f309e52164b SHA1: fa01d5117fcde14cce50e6a96c1cddf743f6deb0 SHA256: f0b3a945a372ec0a1b4d0dd845b416d93e3289c230479e313925d755bc960bfd SHA512: ad1b7fd5d2af5a619087daae6a08e84380ab17600e8a8d8d2073eec4ba55b86305e3f45a1a230ce211b6b778c838f0e4acb549323294404d7e9da4bc4c6b14bb Homepage: http://ceph.com/ Description-en: RADOS striping interface (development files) libradosstriper is a striping interface built on top of the rados library, allowing to stripe bigger objects onto several standard rados objects using an interface very similar to the rados one.

This package contains development files needed for building applications that link against libradosstriper.

Package: libradosstriper-dev Architecture: amd64 Version: 15.2.1-0ubuntu1 Priority: optional Section: libdevel Source: ceph Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Ceph Packaging Team [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 110 Depends: libradosstriper1 (= 15.2.1-0ubuntu1) Filename: pool/main/c/ceph/libradosstriper-dev_15.2.1-0ubuntu1_amd64.deb Size: 18432 MD5sum: 971bc33e240344f5bbcec1455befe127 SHA1: 1c9309bf4d27dc5a5634937efb678930ac323399 SHA256: 3f8f47ec7a48ac7f10f803aeff2ee3695581ac508517c5fa899eaaa4eaa3cbaf Homepage: http://ceph.com/ Description-en: RADOS striping interface (development files) libradosstriper is a striping interface built on top of the rados library, allowing to stripe bigger objects onto several standard rados objects using an interface very similar to the rados one.

This package contains development files needed for building applications that link against libradosstriper.

There are three methods to install libradosstriper-dev on Ubuntu 20.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install libradosstriper-dev Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install libradosstriper-dev using apt-get by running the following command:

sudo apt-get -y install libradosstriper-dev

Install libradosstriper-dev Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libradosstriper-dev using apt by running the following command:

sudo apt -y install libradosstriper-dev

Install libradosstriper-dev Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install libradosstriper-dev using aptitude by running the following command:

sudo aptitude -y install libradosstriper-dev

How To Uninstall libradosstriper-dev on Ubuntu 20.04

To uninstall only the libradosstriper-dev package we can use the following command:

sudo apt-get remove libradosstriper-dev

Uninstall libradosstriper-dev And Its Dependencies

To uninstall libradosstriper-dev and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove libradosstriper-dev

Remove libradosstriper-dev Configurations and Data

To remove libradosstriper-dev configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge libradosstriper-dev

Remove libradosstriper-dev configuration, data, and all of its dependencies

We can use the following command to remove libradosstriper-dev configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libradosstriper-dev

References

Summary

In this tutorial we learn how to install libradosstriper-dev package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.