How To Install system-storage-manager on CentOS 7

In this tutorial we learn how to install system-storage-manager on CentOS 7. system-storage-manager is A single tool to manage your storage

Introduction

In this tutorial we learn how to install system-storage-manager on CentOS 7.

What is system-storage-manager

System Storage Manager provides an easy to use command line interface to manage your storage using various technologies like lvm, btrfs, encrypted volumes and more. In more sophisticated enterprise storage environments, management with Device Mapper (dm), Logical Volume Manager (LVM), or Multiple Devices (md) is becoming increasingly more difficult. With file systems added to the mix, the number of tools needed to configure and manage storage has grown so large that it is simply not user friendly. With so many options for a system administrator to consider, the opportunity for errors and problems is large. The btrfs administration tools have shown us that storage management can be simplified, and we are working to bring that ease of use to Linux file systems in general. You should install the ssm if you need to manage your storage with various technologies via a single unified interface.

We can use yum or dnf to install system-storage-manager on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install system-storage-manager.

Install system-storage-manager on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install system-storage-manager using yum by running the following command:

sudo yum -y install system-storage-manager

Install system-storage-manager on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install system-storage-manager using dnf by running the following command:

sudo dnf -y install system-storage-manager

How To Uninstall system-storage-manager on CentOS 7

To uninstall only the system-storage-manager package we can use the following command:

sudo dnf remove system-storage-manager

References

Summary

In this tutorial we learn how to install system-storage-manager on CentOS 7 using yum and dnf.