How To Install pioneers-meta-server on Debian 9

In this tutorial we learn how to install pioneers-meta-server on Debian 9. pioneers-meta-server is Transitional dummy package to pioneers-metaserver

Introduction

In this tutorial we learn how to install pioneers-meta-server on Debian 9.

What is pioneers-meta-server

pioneers-meta-server is:

Pioneers is a computer implementation of the Settlers of Catan board game. It can be played over the internet.

This package is the transitional dummy package for pioneers-metaserver. It can safely be removed.

There are three methods to install pioneers-meta-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 pioneers-meta-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 pioneers-meta-server using apt-get by running the following command:

sudo apt-get -y install pioneers-meta-server

Install pioneers-meta-server Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install pioneers-meta-server using apt by running the following command:

sudo apt -y install pioneers-meta-server

Install pioneers-meta-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 pioneers-meta-server using aptitude by running the following command:

sudo aptitude -y install pioneers-meta-server

How To Uninstall pioneers-meta-server on Debian 9

To uninstall only the pioneers-meta-server package we can use the following command:

sudo apt-get remove pioneers-meta-server

Uninstall pioneers-meta-server And Its Dependencies

To uninstall pioneers-meta-server and its dependencies that are no longer needed by Debian 9, we can use the command below:

sudo apt-get -y autoremove pioneers-meta-server

Remove pioneers-meta-server Configurations and Data

To remove pioneers-meta-server configuration and data from Debian 9 we can use the following command:

sudo apt-get -y purge pioneers-meta-server

Remove pioneers-meta-server configuration, data, and all of its dependencies

We can use the following command to remove pioneers-meta-server configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge pioneers-meta-server

Dependencies

pioneers-meta-server have the following dependencies:

References

Summary

In this tutorial we learn how to install pioneers-meta-server package on Debian 9 using different package management tools: apt, apt-get and aptitude.