How To Install atasm on Rocky Linux 8
Introduction
In this tutorial we learn how to install atasm on Rocky Linux 8.
What is atasm
ATasm is a 6502 command-line cross-assembler that is compatible with the original Mac/65 macro-assembler released by OSS software. Code development can now be performed using “modern” editors and compiles with lightning speed.
We can use yum or dnf to install atasm on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install atasm.
Install atasm 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 atasm using dnf by running the following command:
sudo dnf -y install atasm
Install atasm 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 atasm using yum by running the following command:
sudo yum -y install atasm
How To Uninstall atasm on Rocky Linux 8
To uninstall only the atasm package we can use the following command:
sudo dnf remove atasm
atasm Package Contents on Rocky Linux 8
/usr/bin/atasm
/usr/lib/.build-id
/usr/lib/.build-id/89
/usr/lib/.build-id/89/742fca2867f43277396307356c09ec05ee07b8
/usr/share/doc/atasm
/usr/share/doc/atasm/README.md
/usr/share/doc/atasm/VERSION.TXT
/usr/share/doc/atasm/atasm.blurb
/usr/share/doc/atasm/atasm.txt
/usr/share/licenses/atasm
/usr/share/licenses/atasm/LICENSE
/usr/share/man/man1/atasm.1.gz
References
Summary
In this tutorial we learn how to install atasm on Rocky Linux 8 using yum and dnf.