How To Install tome on Debian 12
Introduction
In this tutorial we learn how to install tome
on Debian 12.
What is tome
tome is:
Tome, short for Troubles of Middle Earth, is a single-player, text-based, dungeon simulation derived from the game angband, which in turn is derived from the older game Moria, which was in turn based on Rogue. It is often described as a “roguelike” game because the look and feel of the game is still quite similar to Rogue.
In tome, the player may choose from a number of races and classes when creating a character, and then “run” that character over a period of days, weeks, even months, attempting to win the game by defeating Morgoth, who lurks somewhere in the depths of the dungeon.
The ultimate goal of the game is to develop a character strong enough to defeat Morgoth, who resides on dungeon level 100. Upon doing so, you will receive the exalted status of “winner” and your character may retire.
The first main difference from Angband a new player to ToME will need to be aware of is that it has implemented a skills based system where instead of the adventurer automatically improving in their abilities as they become more experienced, they get 5 skill points to spend on their character’s abilities and can therefore customise what type of character they play. See the skills help file for details
The second major difference is that the main dungeon from Angband has been split into 4 “dungeons”, each of which cover a different portion of the dungeon’s levels. Note that not all of the places are actually “dungeons” - some are caves, forests, etc.
The third main difference between Vanilla Angband and ToME is the difference in character classes and races, as well as a very different magic system. ToME also offers the player the ability to undertake a series of quests. It is not required for any adventurer to undertake the fixed quests, but they can result in some nice rewards.
Morgoth was ’the Dark Enemy of Middle-Earth’ during its First Age. He was banished by the Valar (offspring of Eru, “god” of J.R.R. Tolkien’s world) at the end of the First Age and thus never appears in The Lord of the Rings, set during the Third Age. Sauron, who does figure into those tales, was the most powerful of his servants. Read Tolkien’s ‘The Silmarillion’ for more on the legends of Middle-Earth. Angband is a reference to Morgoth’s “prison of iron.”
There are three methods to install tome
on Debian 12. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install tome Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install tome
using apt-get
by running the following command:
sudo apt-get -y install tome
Install tome Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install tome
using apt
by running the following command:
sudo apt -y install tome
Install tome 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 tome
using aptitude
by running the following command:
sudo aptitude -y install tome
How To Uninstall tome on Debian 12
To uninstall only the tome
package we can use the following command:
sudo apt-get remove tome
Uninstall tome And Its Dependencies
To uninstall tome
and its dependencies that are no longer needed by Debian 12, we can use the command below:
sudo apt-get -y autoremove tome
Remove tome Configurations and Data
To remove tome
configuration and data from Debian 12 we can use the following command:
sudo apt-get -y purge tome
Remove tome configuration, data, and all of its dependencies
We can use the following command to remove tome
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge tome
Dependencies
tome have the following dependencies:
- libboost-filesystem1.74.0
- libc6
- libgcc-s1
- libglib2.0-0
- libgtk2.0-0
- libncurses6
- libstdc++6
- libtinfo6
- libx11-6
References
Summary
In this tutorial we learn how to install tome
package on Debian 12 using different package management tools: apt
, apt-get
and aptitude
.