How To Install omega-rpg on Debian 9
Introduction
In this tutorial we learn how to install omega-rpg
on Debian 9.
What is omega-rpg
omega-rpg is:
Omega is a complex rogue-style game of dungeon exploration. Unlike other such games, there are a number of ways to “win”, depending on various actions taken during play. The ways you can get your name on the high score board include becoming the highest ranked head of a guild, sect, college, etc., as well as gaining the most points figured from possessions and experience. The game (via the oracle) may impose some structure on your exploration, but you need not follow all of the oracle’s advice. There is a “total winner” status, by the way.
There are three methods to install omega-rpg
on Debian 9. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install omega-rpg Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install omega-rpg
using apt-get
by running the following command:
sudo apt-get -y install omega-rpg
Install omega-rpg Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install omega-rpg
using apt
by running the following command:
sudo apt -y install omega-rpg
Install omega-rpg 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 omega-rpg
using aptitude
by running the following command:
sudo aptitude -y install omega-rpg
How To Uninstall omega-rpg on Debian 9
To uninstall only the omega-rpg
package we can use the following command:
sudo apt-get remove omega-rpg
Uninstall omega-rpg And Its Dependencies
To uninstall omega-rpg
and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove omega-rpg
Remove omega-rpg Configurations and Data
To remove omega-rpg
configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge omega-rpg
Remove omega-rpg configuration, data, and all of its dependencies
We can use the following command to remove omega-rpg
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge omega-rpg
Dependencies
omega-rpg have the following dependencies:
References
Summary
In this tutorial we learn how to install omega-rpg
package on Debian 9 using different package management tools: apt
, apt-get
and aptitude
.