How To Install xterm on AlmaLinux 8
Introduction
In this tutorial we learn how to install xterm
on AlmaLinux 8.
What is xterm
The xterm program is a terminal emulator for the X Window System. It provides DEC VT102 and Tektronix 4014 compatible terminals for programs that can’t use the window system directly.
We can use yum
or dnf
to install xterm
on AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install xterm.
Install xterm 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 xterm
using dnf
by running the following command:
sudo dnf -y install xterm
Install xterm 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 xterm
using yum
by running the following command:
sudo yum -y install xterm
How To Uninstall xterm on AlmaLinux 8
To uninstall only the xterm
package we can use the following command:
sudo dnf remove xterm
References
Summary
In this tutorial we learn how to install xterm
on AlmaLinux 8 using yum and dnf.