How To Install pokerth-server on Debian 9
Introduction
In this tutorial we learn how to install pokerth-server
on Debian 9.
What is pokerth-server
pokerth-server is:
pokerth is a free implementation of the Texas hold’em poker game which is mostly played in casinos and has a growing popularity worldwide. Texas hold’em is easy to learn but needs a good strategy to win and a lot of luck. This package helps you when practicing or just playing for fun.
This package contains the server, which is needed for hosting an own multi- player, multigame server. You don’t need this package if you want to play a multiplayer game with one table over LAN or Internet.
There are three methods to install pokerth-server
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 pokerth-server Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install pokerth-server
using apt-get
by running the following command:
sudo apt-get -y install pokerth-server
Install pokerth-server Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install pokerth-server
using apt
by running the following command:
sudo apt -y install pokerth-server
Install pokerth-server 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 pokerth-server
using aptitude
by running the following command:
sudo aptitude -y install pokerth-server
How To Uninstall pokerth-server on Debian 9
To uninstall only the pokerth-server
package we can use the following command:
sudo apt-get remove pokerth-server
Uninstall pokerth-server And Its Dependencies
To uninstall pokerth-server
and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove pokerth-server
Remove pokerth-server Configurations and Data
To remove pokerth-server
configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge pokerth-server
Remove pokerth-server configuration, data, and all of its dependencies
We can use the following command to remove pokerth-server
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge pokerth-server
Dependencies
pokerth-server have the following dependencies:
- adduser
- pokerth-data
- init-system-helpers
- libboost-filesystem1.62.0
- libboost-iostreams1.62.0
- libboost-program-options1.62.0
- libboost-random1.62.0
- libboost-regex1.62.0
- libboost-system1.62.0
- libboost-thread1.62.0
- libc6
- libcurl3-gnutls
- libgcc1
References
Summary
In this tutorial we learn how to install pokerth-server
package on Debian 9 using different package management tools: apt
, apt-get
and aptitude
.