How To Install moon-buggy on CentOS 8
Introduction
In this tutorial we learn how to install moon-buggy on CentOS 8.
What is moon-buggy
Moon-buggy is a simple character graphics game where you drive some kind of car across the moon’s surface. Unfortunately there are dangerous craters there. Fortunately your car can jump over them! The game has some resemblance of the classic arcade game moon-patrol which was released in 1982. A clone of this game was relased for the Commodore C64 in 1983. The present, ASCII art version of moon-buggy was written many years later by Jochen Voss.
We can use yum or dnf to install moon-buggy on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install moon-buggy.
Install moon-buggy on CentOS 8 Using yum
Update yum database with yum using the following command.
sudo yum makecache
After updating yum database, We can install moon-buggy using yum by running the following command:
sudo yum -y install moon-buggy
Install moon-buggy on CentOS 8 Using dnf
If you don’t have dnf installed you can install DNF on CentOS 7 first.
Update yum database with dnf using the following command.
sudo dnf makecache
After updating yum database, We can install moon-buggy using dnf by running the following command:
sudo dnf -y install moon-buggy
How To Uninstall moon-buggy on CentOS 8
To uninstall only the moon-buggy package we can use the following command:
sudo dnf remove moon-buggy
References
Summary
In this tutorial we learn how to install moon-buggy on CentOS 8 using yum and dnf.