How To Install funguloids on Kali Linux
Introduction
In this tutorial we learn how to install funguloids on Kali Linux.
What is funguloids
funguloids is:
“Those Funny Funguloids!” is actually a nice little piece of entertainment. You collect mushrooms, bring them back to your home base and profit! That’s the basic idea in a nutshell. It has smooth, appealing 3d graphics and nice atmospheric sound effects. Go ahead and try it out - it has sounds too!
There are three methods to install funguloids on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install funguloids Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install funguloids using apt-get by running the following command:
sudo apt-get -y install funguloidsInstall funguloids Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install funguloids using apt by running the following command:
sudo apt -y install funguloidsInstall funguloids Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.
sudo aptitude updateAfter updating apt database, We can install funguloids using aptitude by running the following command:
sudo aptitude -y install funguloidsHow To Uninstall funguloids on Kali Linux
To uninstall only the funguloids package we can use the following command:
sudo apt-get remove funguloidsUninstall funguloids And Its Dependencies
To uninstall funguloids and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove funguloidsRemove funguloids Configurations and Data
To remove funguloids configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge funguloidsRemove funguloids configuration, data, and all of its dependencies
We can use the following command to remove funguloids configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge funguloidsDependencies
funguloids have the following dependencies:
- dpkg
- funguloids-data
- libalut0
- libc6
- libgcc-s1
- liblua5.1-0
- libmad0
- libogre-1.9.0v5
- libois-1.3.0v5
- libopenal1
- libstdc++6
- libvorbisfile3
References
Summary
In this tutorial we learn how to install funguloids package on Kali Linux using different package management tools: apt, apt-get and aptitude.