How To Install atasm on Fedora 36
Introduction
In this tutorial we learn how to install atasm
on Fedora 36.
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 Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install atasm.
Install atasm on Fedora 36 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 Fedora 36 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 Fedora 36
To uninstall only the atasm
package we can use the following command:
sudo dnf remove atasm
atasm Package Contents on Fedora 36
/usr/bin/atasm
/usr/lib/.build-id
/usr/lib/.build-id/9f
/usr/lib/.build-id/9f/3a8eb3ef87b53fca9d9909bb7c8cad759414f9
/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 Fedora 36 using yum and [dnf]((/fedora/36/dnf/).