How To Install liblzma-doc on Ubuntu 20.04

In this tutorial we learn how to install liblzma-doc on Ubuntu 20.04. liblzma-doc is XZ-format compression library - API documentation XZ-format compression library - API documentation

Introduction

In this tutorial we learn how to install liblzma-doc on Ubuntu 20.04.

What is liblzma-doc

liblzma-doc is:

This package contains a reference manual for the liblzma data compression library, in Doxygen-generated HTML files. The purpose of each struct, macro, and function in the public interface is explained.

Package: liblzma-doc Architecture: all Version: 5.2.4-1 Priority: extra Section: doc Source: xz-utils Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Jonathan Nieder [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 3862 Suggests: liblzma-dev Filename: pool/main/x/xz-utils/liblzma-doc_5.2.4-1_all.deb Size: 293688 MD5sum: 028521249a39a6dd9163523e5c9b00b3 SHA1: 5e1c3f8a77b7f17649a549e0f991bc8756f1dd44 SHA256: 103df4e0338e4a4d02458ca5fa7f2a3fab0694ab1be453ca3bd993facb4a5e03 Homepage: https://tukaani.org/xz/ Description-en: XZ-format compression library - API documentation This package contains a reference manual for the liblzma data compression library, in Doxygen-generated HTML files. The purpose of each struct, macro, and function in the public interface is explained.

There are three methods to install liblzma-doc on Ubuntu 20.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 liblzma-doc Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install liblzma-doc

Install liblzma-doc Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install liblzma-doc

Install liblzma-doc 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 liblzma-doc using aptitude by running the following command:

sudo aptitude -y install liblzma-doc

How To Uninstall liblzma-doc on Ubuntu 20.04

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

sudo apt-get remove liblzma-doc

Uninstall liblzma-doc And Its Dependencies

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

sudo apt-get -y autoremove liblzma-doc

Remove liblzma-doc Configurations and Data

To remove liblzma-doc configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge liblzma-doc

Remove liblzma-doc configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge liblzma-doc

References

Summary

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