How To Install nazghul on Fedora 34
Introduction
In this tutorial we learn how to install nazghul
on Fedora 34.
What is nazghul
Nazghul is an old-school RPG engine modeled after those made in the heyday of top-down, 2d tile-based graphics. It is specifically modeled after Ultima V.
We can use yum
or dnf
to install nazghul
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install nazghul.
Install nazghul 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 nazghul
using dnf
by running the following command:
sudo dnf -y install nazghul
Install nazghul 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 nazghul
using yum
by running the following command:
sudo yum -y install nazghul
How To Uninstall nazghul on Fedora 34
To uninstall only the nazghul
package we can use the following command:
sudo dnf remove nazghul
nazghul Package Contents on Fedora 34
/usr/bin/nazghul
/usr/lib/.build-id
/usr/lib/.build-id/6e
/usr/lib/.build-id/6e/94b8ef79ee7fdf167a55d3cc5b1964dacc5e9d
/usr/share/doc/nazghul
/usr/share/doc/nazghul/AUTHORS
/usr/share/doc/nazghul/COPYING
/usr/share/doc/nazghul/ChangeLog
/usr/share/doc/nazghul/GAME_RULES
/usr/share/doc/nazghul/GHULSCRIPT
/usr/share/doc/nazghul/MAP_HACKERS_GUIDE
/usr/share/doc/nazghul/NEWS
/usr/share/doc/nazghul/engine_extension_and_design
/usr/share/doc/nazghul/engine_extension_and_design/ENGINE_CLEANUP
/usr/share/doc/nazghul/engine_extension_and_design/ENGINE_DESIGN_NOTES
/usr/share/doc/nazghul/engine_extension_and_design/README
/usr/share/doc/nazghul/engine_extension_and_design/my_TODO.2004.05.05.txt
/usr/share/doc/nazghul/world_building
/usr/share/doc/nazghul/world_building/advancement.rogue.txt
/usr/share/doc/nazghul/world_building/advancement.warrior.txt
/usr/share/doc/nazghul/world_building/advancement.wizard.txt
/usr/share/doc/nazghul/world_building/advancement.wright.txt
/usr/share/doc/nazghul/world_building/being_tile_media.txt
/usr/share/doc/nazghul/world_building/music_loop_media.txt
/usr/share/doc/nazghul/world_building/sound_sample_media.txt
/usr/share/doc/nazghul/world_building/town_scale_tile_media.txt
/usr/share/doc/nazghul/world_building/wilderness_scale_tile_media.txt
/usr/share/nazghul
References
Summary
In this tutorial we learn how to install nazghul
on Fedora 34 using yum and dnf.