How To Install libx32z1 on Ubuntu 20.04

In this tutorial we learn how to install libx32z1 on Ubuntu 20.04. libx32z1 is compression library - x32 runtime compression library - x32 runtime

Introduction

In this tutorial we learn how to install libx32z1 on Ubuntu 20.04.

What is libx32z1

libx32z1 is:

zlib is a library implementing the deflate compression method found in gzip and PKZIP. This package includes a n32 version of the shared library.

Package: libx32z1 Architecture: amd64 Version: 1:1.2.11.dfsg-2ubuntu1 Priority: optional Section: libs Source: zlib Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Mark Brown [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 161 Depends: libc6-x32 (>= 2.16) Filename: pool/main/z/zlib/libx32z1_1.2.11.dfsg-2ubuntu1_amd64.deb Size: 53144 MD5sum: f6f55cbe8d5df6e855366c19d5a9ea0b SHA1: 6d9812064ebb3af8fb2b8de4c1c50fe1a68fa0c2 SHA256: 4c70e3ce497ef4236e81fc817971c3e2fc12e0cc7bd4fcb379d94b3d33340d03 Homepage: http://zlib.net/ Description-en: compression library - x32 runtime zlib is a library implementing the deflate compression method found in gzip and PKZIP. This package includes a n32 version of the shared library.

There are three methods to install libx32z1 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 libx32z1 Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install libx32z1

Install libx32z1 Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libx32z1 using apt by running the following command:

sudo apt -y install libx32z1

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

sudo aptitude -y install libx32z1

How To Uninstall libx32z1 on Ubuntu 20.04

To uninstall only the libx32z1 package we can use the following command:

sudo apt-get remove libx32z1

Uninstall libx32z1 And Its Dependencies

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

sudo apt-get -y autoremove libx32z1

Remove libx32z1 Configurations and Data

To remove libx32z1 configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge libx32z1

Remove libx32z1 configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libx32z1

References

Summary

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