How To Install appliance-tools on Rocky Linux 8
Introduction
In this tutorial we learn how to install appliance-tools
on Rocky Linux 8.
What is appliance-tools
Tools for generating appliance images on Fedora based systems, including derived distributions such as RHEL, CentOS, and others.
We can use yum
or dnf
to install appliance-tools
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install appliance-tools.
Install appliance-tools 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 appliance-tools
using dnf
by running the following command:
sudo dnf -y install appliance-tools
Install appliance-tools 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 appliance-tools
using yum
by running the following command:
sudo yum -y install appliance-tools
How To Uninstall appliance-tools on Rocky Linux 8
To uninstall only the appliance-tools
package we can use the following command:
sudo dnf remove appliance-tools
appliance-tools Package Contents on Rocky Linux 8
/usr/bin/appliance-creator
/usr/bin/ec2-converter
/usr/lib/python3.6/site-packages/appcreate
/usr/lib/python3.6/site-packages/appcreate/__init__.py
/usr/lib/python3.6/site-packages/appcreate/__pycache__
/usr/lib/python3.6/site-packages/appcreate/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/appcreate/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/appcreate/__pycache__/appliance.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/appcreate/__pycache__/appliance.cpython-36.pyc
/usr/lib/python3.6/site-packages/appcreate/__pycache__/partitionedfs.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/appcreate/__pycache__/partitionedfs.cpython-36.pyc
/usr/lib/python3.6/site-packages/appcreate/appliance.py
/usr/lib/python3.6/site-packages/appcreate/partitionedfs.py
/usr/lib/python3.6/site-packages/ec2convert
/usr/lib/python3.6/site-packages/ec2convert/__init__.py
/usr/lib/python3.6/site-packages/ec2convert/__pycache__
/usr/lib/python3.6/site-packages/ec2convert/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/ec2convert/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/ec2convert/__pycache__/ec2config.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/ec2convert/__pycache__/ec2config.cpython-36.pyc
/usr/lib/python3.6/site-packages/ec2convert/__pycache__/fs.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/ec2convert/__pycache__/fs.cpython-36.pyc
/usr/lib/python3.6/site-packages/ec2convert/__pycache__/rpmcheck.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/ec2convert/__pycache__/rpmcheck.cpython-36.pyc
/usr/lib/python3.6/site-packages/ec2convert/ec2config.py
/usr/lib/python3.6/site-packages/ec2convert/fs.py
/usr/lib/python3.6/site-packages/ec2convert/rpmcheck.py
/usr/share/doc/appliance-tools
/usr/share/doc/appliance-tools/README
/usr/share/doc/appliance-tools/fedora-aos.ks
/usr/share/licenses/appliance-tools
/usr/share/licenses/appliance-tools/COPYING
/usr/share/man/man8/appliance-creator.8.gz
/usr/share/man/man8/ec2-converter.8.gz
References
Summary
In this tutorial we learn how to install appliance-tools
on Rocky Linux 8 using yum and dnf.