How To Install lorax on AlmaLinux 8
Introduction
In this tutorial we learn how to install lorax
on AlmaLinux 8.
What is lorax
Lorax is a tool for creating the anaconda install images. It also includes livemedia-creator which is used to create bootable livemedia, including live isos and disk images. It can use libvirtd for the install, or Anaconda’s image install feature.
We can use yum
or dnf
to install lorax
on AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install lorax.
Install lorax 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 lorax
using dnf
by running the following command:
sudo dnf -y install lorax
Install lorax 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 lorax
using yum
by running the following command:
sudo yum -y install lorax
How To Uninstall lorax on AlmaLinux 8
To uninstall only the lorax
package we can use the following command:
sudo dnf remove lorax
References
Summary
In this tutorial we learn how to install lorax
on AlmaLinux 8 using yum and dnf.