How To Install out-of-order on Ubuntu 20.04
Introduction
In this tutorial we learn how to install out-of-order on Ubuntu 20.04.
What is out-of-order
out-of-order is:
Ever woken up in the middle of the night to find you’ve been kidnapped… and so’s your bedroom? Ever had to fend for yourself in the face of strangely hypnotic music, alien doctors, talking computers a-plenty and half-finished bathrooms? Ever found something unpleasant in a burger?
If so, Out Of Order should play like any other day in your life.
Otherwise, it’s an experience not to be missed.
There are three methods to install out-of-order on Ubuntu 20.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 out-of-order Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install out-of-order using apt-get by running the following command:
sudo apt-get -y install out-of-order
Install out-of-order Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install out-of-order using apt by running the following command:
sudo apt -y install out-of-order
Install out-of-order 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 out-of-order using aptitude by running the following command:
sudo aptitude -y install out-of-order
How To Uninstall out-of-order on Ubuntu 20.04
To uninstall only the out-of-order package we can use the following command:
sudo apt-get remove out-of-order
Uninstall out-of-order And Its Dependencies
To uninstall out-of-order and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:
sudo apt-get -y autoremove out-of-order
Remove out-of-order Configurations and Data
To remove out-of-order configuration and data from Ubuntu 20.04 we can use the following command:
sudo apt-get -y purge out-of-order
Remove out-of-order configuration, data, and all of its dependencies
We can use the following command to remove out-of-order configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge out-of-order
References
Summary
In this tutorial we learn how to install out-of-order package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.