How To Install psmisc on AlmaLinux 8
Introduction
In this tutorial we learn how to install psmisc on AlmaLinux 8.
What is psmisc
The psmisc package contains utilities for managing processes on your system a tree structure of all of the running processes on your system. The killall command sends a specified signal (SIGTERM if nothing is specified) to processes identified by name. The fuser command identifies the PIDs of processes that are using specified files or filesystems. The pslog command shows the path of log files owned by a given process.
We can use yum or dnf to install psmisc on AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install psmisc.
Install psmisc on AlmaLinux 8 Using dnf
Update yum database with dnf using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install psmisc using dnf by running the following command:
sudo dnf -y install psmisc
Install psmisc on AlmaLinux 8 Using yum
Update yum database with yum using the following command.
sudo yum makecache --refresh
After updating yum database, We can install psmisc using yum by running the following command:
sudo yum -y install psmisc
How To Uninstall psmisc on AlmaLinux 8
To uninstall only the psmisc package we can use the following command:
sudo dnf remove psmisc
References
Summary
In this tutorial we learn how to install psmisc on AlmaLinux 8 using yum and dnf.