How To Install funguloids on Ubuntu 22.04

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

Introduction

In this tutorial we learn how to install funguloids on Ubuntu 22.04.

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 Ubuntu 22.04. 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 Ubuntu. 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 Ubuntu 22.04

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 Ubuntu 22.04, we can use the command below:

sudo apt-get -y autoremove funguloids

Remove funguloids Configurations and Data

To remove funguloids configuration and data from Ubuntu 22.04 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

References

Summary

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