How To Install londonlaw on Debian 10
Introduction
In this tutorial we learn how to install londonlaw
on Debian 10.
What is londonlaw
londonlaw is:
London Law is an online multiplayer adaptation of the classic Scotland Yard board game (also see Wikipedia), first published by Ravensburger in 1983. The game is unusually asymmetric; one player controls the movements of the criminal Mr. X as he tries to evade Scotland Yard, while another one to five players control five detectives trying to track him down. Mr. X has an advantage in access to transportation routes, and his precise location remains hidden for most of the game. The detectives have only the advantage of superior numbers, so they must work in concert to limit the criminal’s options. London Law features an attractive map overlaid on high-resolution satellite imagery.
There are three methods to install londonlaw
on Debian 10. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install londonlaw Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install londonlaw
using apt-get
by running the following command:
sudo apt-get -y install londonlaw
Install londonlaw Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install londonlaw
using apt
by running the following command:
sudo apt -y install londonlaw
Install londonlaw 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 londonlaw
using aptitude
by running the following command:
sudo aptitude -y install londonlaw
How To Uninstall londonlaw on Debian 10
To uninstall only the londonlaw
package we can use the following command:
sudo apt-get remove londonlaw
Uninstall londonlaw And Its Dependencies
To uninstall londonlaw
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove londonlaw
Remove londonlaw Configurations and Data
To remove londonlaw
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge londonlaw
Remove londonlaw configuration, data, and all of its dependencies
We can use the following command to remove londonlaw
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge londonlaw
Dependencies
londonlaw have the following dependencies:
References
Summary
In this tutorial we learn how to install londonlaw
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.