How To Install opencity on Fedora 34
Introduction
In this tutorial we learn how to install opencity on Fedora 34.
What is opencity
This is just another city simulation. The idea is simple Residential, Commercial and Industrial. They depend on each other during their development. Try to give them what they need and watch your city growing up.
We can use yum or dnf to install opencity on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install opencity.
Install opencity 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 opencity using dnf by running the following command:
sudo dnf -y install opencity
Install opencity 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 opencity using yum by running the following command:
sudo yum -y install opencity
How To Uninstall opencity on Fedora 34
To uninstall only the opencity package we can use the following command:
sudo dnf remove opencity
opencity Package Contents on Fedora 34
/etc/opencity
/etc/opencity/config
/etc/opencity/config/graphism.conf
/etc/opencity/config/graphism.xml
/etc/opencity/config/opencity.xml
/usr/bin/opencity
/usr/lib/.build-id
/usr/lib/.build-id/45
/usr/lib/.build-id/45/e857b2e5596356ef68eedb3afd12550bbdc2bd
/usr/share/appdata/opencity.appdata.xml
/usr/share/applications/opencity.desktop
/usr/share/doc/opencity
/usr/share/doc/opencity/AUTHORS
/usr/share/doc/opencity/FAQ.txt
/usr/share/doc/opencity/FAQ_it.txt
/usr/share/doc/opencity/README
/usr/share/doc/opencity/README_es.txt
/usr/share/doc/opencity/README_it.txt
/usr/share/man/man6/opencity.6.gz
/usr/share/pixmaps/opencity.png
References
Summary
In this tutorial we learn how to install opencity on Fedora 34 using yum and dnf.