How To Install libc6-x32 on Ubuntu 20.04
Introduction
In this tutorial we learn how to install libc6-x32 on Ubuntu 20.04.
What is libc6-x32
libc6-x32 is:
This package includes shared versions of the standard C library and the standard math library, as well as many others. This is the X32 ABI version of the library, meant for AMD64 systems. Original-Vcs-Browser: https://salsa.debian.org/glibc-team/glibc Original-Vcs-Git: https://salsa.debian.org/glibc-team/glibc.git
Package: libc6-x32 Architecture: amd64 Version: 2.31-0ubuntu9 Priority: optional Section: libs Source: glibc Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: GNU Libc Maintainers [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 14158 Depends: libc6 (= 2.31-0ubuntu9) Conflicts: libc0.1-i386, libc6-amd64, libc6-i386:x32, libc6-mips32, libc6-mips64, libc6-mipsn32, libc6-powerpc, libc6-ppc64, libc6-s390, libc6-sparc, libc6-sparc64, libc6-x32:i386 Filename: pool/main/g/glibc/libc6-x32_2.31-0ubuntu9_amd64.deb Size: 2777488 MD5sum: c2ebbc6e09946cb963b1e29b6bfc8b7b SHA1: d273eaa64ce1deddd4e9957ddffd622faa9e9ac8 SHA256: d167165ed806346d45bfb3e84fead3c04dfe5f6f72d3d88f529ee226d40cb14b Homepage: https://www.gnu.org/software/libc/libc.html Description-en: GNU C Library: X32 ABI Shared libraries for AMD64 This package includes shared versions of the standard C library and the standard math library, as well as many others. This is the X32 ABI version of the library, meant for AMD64 systems.
There are three methods to install libc6-x32 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 libc6-x32 Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install libc6-x32 using apt-get by running the following command:
sudo apt-get -y install libc6-x32
Install libc6-x32 Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install libc6-x32 using apt by running the following command:
sudo apt -y install libc6-x32
Install libc6-x32 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 libc6-x32 using aptitude by running the following command:
sudo aptitude -y install libc6-x32
How To Uninstall libc6-x32 on Ubuntu 20.04
To uninstall only the libc6-x32 package we can use the following command:
sudo apt-get remove libc6-x32
Uninstall libc6-x32 And Its Dependencies
To uninstall libc6-x32 and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:
sudo apt-get -y autoremove libc6-x32
Remove libc6-x32 Configurations and Data
To remove libc6-x32 configuration and data from Ubuntu 20.04 we can use the following command:
sudo apt-get -y purge libc6-x32
Remove libc6-x32 configuration, data, and all of its dependencies
We can use the following command to remove libc6-x32 configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libc6-x32
References
Summary
In this tutorial we learn how to install libc6-x32 package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.