How To Install doc-linux-pl on Ubuntu 18.04

In this tutorial we learn how to install doc-linux-pl on Ubuntu 18.04. doc-linux-pl is Linux docs in Polish

Introduction

In this tutorial we learn how to install doc-linux-pl on Ubuntu 18.04.

What is doc-linux-pl

doc-linux-pl is:

This package installs the Polish versions of Linux HOWTO and mini-HOWTO documents (JTZ project) on your Debian system. The version number reflects the packaging date.

All files are available at ftp://ftp.jtz.org.pl/JTZ/ (with versions in ascii, html, dvi, ps and sgml formats).

There are three methods to install doc-linux-pl on Ubuntu 18.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install doc-linux-pl Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install doc-linux-pl using apt-get by running the following command:

sudo apt-get -y install doc-linux-pl

Install doc-linux-pl Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install doc-linux-pl using apt by running the following command:

sudo apt -y install doc-linux-pl

Install doc-linux-pl 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 Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install doc-linux-pl using aptitude by running the following command:

sudo aptitude -y install doc-linux-pl

How To Uninstall doc-linux-pl on Ubuntu 18.04

To uninstall only the doc-linux-pl package we can use the following command:

sudo apt-get remove doc-linux-pl

Uninstall doc-linux-pl And Its Dependencies

To uninstall doc-linux-pl and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove doc-linux-pl

Remove doc-linux-pl Configurations and Data

To remove doc-linux-pl configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge doc-linux-pl

Remove doc-linux-pl configuration, data, and all of its dependencies

We can use the following command to remove doc-linux-pl configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge doc-linux-pl

References

Summary

In this tutorial we learn how to install doc-linux-pl package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.