How To Install manpages-tr on Debian 9
Introduction
In this tutorial we learn how to install manpages-tr
on Debian 9.
What is manpages-tr
manpages-tr is:
This package contains the Linux manual pages translated into Turkish. The following sections are included:
- 1 = User programs (e.g. ls, ln)
- 2 = Linux system calls (e.g. exit, fork, open)
- 3 = Library functions (e.g. malloc, printf)
- 4 = Devices (e.g. hd, sd).
- 5 = File formats and protocols, syntaxes of several system files (e.g. wtmp, /etc/passwd, nfs).
- 6 = Games etc.
- 7 = Conventions and standards, macro packages, etc. (e.g. nroff, ascii).
- 8 = System administration commands.
There are three methods to install manpages-tr
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 manpages-tr Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install manpages-tr
using apt-get
by running the following command:
sudo apt-get -y install manpages-tr
Install manpages-tr Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install manpages-tr
using apt
by running the following command:
sudo apt -y install manpages-tr
Install manpages-tr 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 manpages-tr
using aptitude
by running the following command:
sudo aptitude -y install manpages-tr
How To Uninstall manpages-tr on Debian 9
To uninstall only the manpages-tr
package we can use the following command:
sudo apt-get remove manpages-tr
Uninstall manpages-tr And Its Dependencies
To uninstall manpages-tr
and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove manpages-tr
Remove manpages-tr Configurations and Data
To remove manpages-tr
configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge manpages-tr
Remove manpages-tr configuration, data, and all of its dependencies
We can use the following command to remove manpages-tr
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge manpages-tr
Dependencies
manpages-tr have the following dependencies:
References
Summary
In this tutorial we learn how to install manpages-tr
package on Debian 9 using different package management tools: apt
, apt-get
and aptitude
.