How To Install gnusim8085 on Fedora 34
Introduction
In this tutorial we learn how to install gnusim8085
on Fedora 34.
What is gnusim8085
GNUSim8085 is a graphical simulator for Intel 8085 microprocessor assembly language. It has some very nice features including a keypad which can be used to write assembly language programs with much ease. It also has stack, memory and port viewers which can be used for debugging the programs.
We can use yum
or dnf
to install gnusim8085
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install gnusim8085.
Install gnusim8085 on Fedora 34 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install gnusim8085
using dnf
by running the following command:
sudo dnf -y install gnusim8085
Install gnusim8085 on Fedora 34 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install gnusim8085
using yum
by running the following command:
sudo yum -y install gnusim8085
How To Uninstall gnusim8085 on Fedora 34
To uninstall only the gnusim8085
package we can use the following command:
sudo dnf remove gnusim8085
gnusim8085 Package Contents on Fedora 34
/usr/bin/gnusim8085
/usr/lib/.build-id
/usr/lib/.build-id/89
/usr/lib/.build-id/89/0e4b0680d5b4be4534e05dc5debcdd90fc79c8
/usr/share/applications/GNUSim8085.desktop
/usr/share/doc/gnusim8085
/usr/share/doc/gnusim8085/ABOUT-NLS
/usr/share/doc/gnusim8085/AUTHORS
/usr/share/doc/gnusim8085/ChangeLog
/usr/share/doc/gnusim8085/NEWS
/usr/share/doc/gnusim8085/README.md
/usr/share/doc/gnusim8085/TODO
/usr/share/doc/gnusim8085/asm-guide.txt
/usr/share/doc/gnusim8085/examples
/usr/share/doc/gnusim8085/examples/README
/usr/share/doc/gnusim8085/examples/addwithcarry.asm
/usr/share/doc/gnusim8085/examples/bcd2bin.asm
/usr/share/doc/gnusim8085/examples/debugexample.asm
/usr/share/doc/gnusim8085/examples/nqueens.asm
/usr/share/doc/gnusim8085/examples/sorting.asm
/usr/share/doc/gnusim8085/examples/sumofnumbers.asm
/usr/share/doc/gnusim8085/examples/swaphex.asm
/usr/share/gnusim8085
/usr/share/gnusim8085/8085asm.lang
/usr/share/icons/hicolor/scalable/apps/gnusim8085.svg
/usr/share/licenses/gnusim8085
/usr/share/licenses/gnusim8085/COPYING
/usr/share/locale/ar/LC_MESSAGES/gnusim8085.mo
/usr/share/locale/ast/LC_MESSAGES/gnusim8085.mo
/usr/share/locale/de/LC_MESSAGES/gnusim8085.mo
/usr/share/locale/el/LC_MESSAGES/gnusim8085.mo
/usr/share/locale/eo/LC_MESSAGES/gnusim8085.mo
/usr/share/locale/es/LC_MESSAGES/gnusim8085.mo
/usr/share/locale/fr/LC_MESSAGES/gnusim8085.mo
/usr/share/locale/gu/LC_MESSAGES/gnusim8085.mo
/usr/share/locale/it/LC_MESSAGES/gnusim8085.mo
/usr/share/locale/ja/LC_MESSAGES/gnusim8085.mo
/usr/share/locale/kn/LC_MESSAGES/gnusim8085.mo
/usr/share/locale/lt/LC_MESSAGES/gnusim8085.mo
/usr/share/locale/mr/LC_MESSAGES/gnusim8085.mo
/usr/share/locale/nl/LC_MESSAGES/gnusim8085.mo
/usr/share/locale/pt_BR/LC_MESSAGES/gnusim8085.mo
/usr/share/locale/ru/LC_MESSAGES/gnusim8085.mo
/usr/share/locale/ta/LC_MESSAGES/gnusim8085.mo
/usr/share/locale/th/LC_MESSAGES/gnusim8085.mo
/usr/share/man/man1/gnusim8085.1.gz
/usr/share/metainfo/gnusim8085.appdata.xml
/usr/share/pixmaps/gnusim8085
References
Summary
In this tutorial we learn how to install gnusim8085
on Fedora 34 using yum and dnf.