How To Install funguloids on Debian 11

In this tutorial we learn how to install funguloids on Debian 11. funguloids is space-flying-mushroom-picking-simulator game

Introduction

In this tutorial we learn how to install funguloids on Debian 11.

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 Debian 11. 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 update

After updating apt database, We can install funguloids using apt-get by running the following command:

sudo apt-get -y install funguloids

Install funguloids Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install funguloids using apt by running the following command:

sudo apt -y install funguloids

Install funguloids Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install funguloids using aptitude by running the following command:

sudo aptitude -y install funguloids

How To Uninstall funguloids on Debian 11

To uninstall only the funguloids package we can use the following command:

sudo apt-get remove funguloids

Uninstall funguloids And Its Dependencies

To uninstall funguloids and its dependencies that are no longer needed by Debian 11, we can use the command below:

sudo apt-get -y autoremove funguloids

Remove funguloids Configurations and Data

To remove funguloids configuration and data from Debian 11 we can use the following command:

sudo apt-get -y purge funguloids

Remove 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 funguloids

Dependencies

funguloids have the following dependencies:

References

Summary

In this tutorial we learn how to install funguloids package on Debian 11 using different package management tools: apt, apt-get and aptitude.