How To Install atomix on Debian 11

In this tutorial we learn how to install atomix on Debian 11. atomix is puzzle game for building molecules out of separate atoms

Introduction

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

What is atomix

atomix is:

Atomix is an educational game designed for GNOME in which one has to build molecules, ranging from simple inorganic ones to some extremely complex organic ones, out of separate atoms.

The first levels can be rather easy, but added complexity always comes with the next level, so that several minutes (or much longer than that) can be spent on each single level.

There are three methods to install atomix 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 atomix Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

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

sudo apt-get -y install atomix

Install atomix Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install atomix

Install atomix 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 atomix using aptitude by running the following command:

sudo aptitude -y install atomix

How To Uninstall atomix on Debian 11

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

sudo apt-get remove atomix

Uninstall atomix And Its Dependencies

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

sudo apt-get -y autoremove atomix

Remove atomix Configurations and Data

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

sudo apt-get -y purge atomix

Remove atomix configuration, data, and all of its dependencies

We can use the following command to remove atomix configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge atomix

Dependencies

atomix have the following dependencies:

References

Summary

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