How To Install libguestfs-inspect-icons on Rocky Linux 8
Introduction
In this tutorial we learn how to install libguestfs-inspect-icons
on Rocky Linux 8.
What is libguestfs-inspect-icons
libguestfs-inspect-icons is a metapackage that pulls in additional dependencies required by libguestfs to pull icons out of non-Linux guests. Install this package if you want libguestfs to be able to inspect non-Linux guests and display icons from them. The only reason this is a separate package is to avoid core libguestfs having to depend on Perl. See https
We can use yum
or dnf
to install libguestfs-inspect-icons
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install libguestfs-inspect-icons.
Install libguestfs-inspect-icons on Rocky Linux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install libguestfs-inspect-icons
using dnf
by running the following command:
sudo dnf -y install libguestfs-inspect-icons
Install libguestfs-inspect-icons on Rocky Linux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install libguestfs-inspect-icons
using yum
by running the following command:
sudo yum -y install libguestfs-inspect-icons
How To Uninstall libguestfs-inspect-icons on Rocky Linux 8
To uninstall only the libguestfs-inspect-icons
package we can use the following command:
sudo dnf remove libguestfs-inspect-icons
libguestfs-inspect-icons Package Contents on Rocky Linux 8
References
Summary
In this tutorial we learn how to install libguestfs-inspect-icons
on Rocky Linux 8 using yum and dnf.