How To Install rxvt-unicode on AlmaLinux 8
Introduction
In this tutorial we learn how to install rxvt-unicode
on AlmaLinux 8.
What is rxvt-unicode
rxvt-unicode is a clone of the well known terminal emulator rxvt, modified to store text in Unicode (either UCS-2 or UCS-4) and to use locale-correct input and output. It also supports mixing multiple fonts at the same time, including Xft fonts.
We can use yum
or dnf
to install rxvt-unicode
on AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install rxvt-unicode.
Install rxvt-unicode 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 rxvt-unicode
using dnf
by running the following command:
sudo dnf -y install rxvt-unicode
Install rxvt-unicode 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 rxvt-unicode
using yum
by running the following command:
sudo yum -y install rxvt-unicode
How To Uninstall rxvt-unicode on AlmaLinux 8
To uninstall only the rxvt-unicode
package we can use the following command:
sudo dnf remove rxvt-unicode
References
Summary
In this tutorial we learn how to install rxvt-unicode
on AlmaLinux 8 using yum and dnf.