How To Install lzma-dev on Debian 9
Introduction
In this tutorial we learn how to install lzma-dev on Debian 9.
What is lzma-dev
lzma-dev is:
The Lempel-Ziv Markov-chain Algorithm is a compression method based on the famous LZ77 algorithm, and was first introduced by 7-Zip for use in 7z archives.
Its main characteristics are a very high compression ratio, with high RAM usage, and fast decompression, with low RAM usage. These properties make it well suited to embedded uses, such as for ROM (firmware) compression.
This package contains the headers and libraries of lzma. It is experimental and will be replaced by the library as soon as it is available.
There are three methods to install lzma-dev 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 lzma-dev Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install lzma-dev using apt-get by running the following command:
sudo apt-get -y install lzma-dev
Install lzma-dev Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install lzma-dev using apt by running the following command:
sudo apt -y install lzma-dev
Install lzma-dev 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 lzma-dev using aptitude by running the following command:
sudo aptitude -y install lzma-dev
How To Uninstall lzma-dev on Debian 9
To uninstall only the lzma-dev package we can use the following command:
sudo apt-get remove lzma-dev
Uninstall lzma-dev And Its Dependencies
To uninstall lzma-dev and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove lzma-dev
Remove lzma-dev Configurations and Data
To remove lzma-dev configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge lzma-dev
Remove lzma-dev configuration, data, and all of its dependencies
We can use the following command to remove lzma-dev configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge lzma-dev
Dependencies
lzma-dev have the following dependencies:
References
Summary
In this tutorial we learn how to install lzma-dev package on Debian 9 using different package management tools: apt, apt-get and aptitude.