How To Install libksgrd9 on Kali Linux

In this tutorial we learn how to install libksgrd9 on Kali Linux. libksgrd9 is library for system monitoring - ksgrd shared library

Introduction

In this tutorial we learn how to install libksgrd9 on Kali Linux.

What is libksgrd9

libksgrd9 is:

KSysGuard is a program to monitor various elements of your system, or any other remote system with the KSysGuard daemon (ksysgardd) installed.

This package contains the shared library libksgrd.

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

Install libksgrd9 Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install libksgrd9

Install libksgrd9 Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libksgrd9 using apt by running the following command:

sudo apt -y install libksgrd9

Install libksgrd9 Using aptitude

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

sudo aptitude update

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

sudo aptitude -y install libksgrd9

How To Uninstall libksgrd9 on Kali Linux

To uninstall only the libksgrd9 package we can use the following command:

sudo apt-get remove libksgrd9

Uninstall libksgrd9 And Its Dependencies

To uninstall libksgrd9 and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove libksgrd9

Remove libksgrd9 Configurations and Data

To remove libksgrd9 configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge libksgrd9

Remove libksgrd9 configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libksgrd9

Dependencies

libksgrd9 have the following dependencies:

References

Summary

In this tutorial we learn how to install libksgrd9 package on Kali Linux using different package management tools: apt, apt-get and aptitude.