How To Install liblsan0 on Ubuntu 20.04

In this tutorial we learn how to install liblsan0 on Ubuntu 20.04. liblsan0 is LeakSanitizer – a memory leak detector (runtime) LeakSanitizer – a memory leak detector (runtime)

Introduction

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

What is liblsan0

liblsan0 is:

LeakSanitizer (Lsan) is a memory leak detector which is integrated into AddressSanitizer. Task: ubuntustudio-video, ubuntu-mate-core, ubuntu-mate-desktop Build-Essential: yes

Package: liblsan0 Architecture: amd64 Version: 10-20200411-0ubuntu1 Multi-Arch: same Priority: optional Section: libs Source: gcc-10 Origin: Ubuntu Maintainer: Ubuntu Core developers [email protected] Original-Maintainer: Debian GCC Maintainers [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 390 Depends: gcc-10-base (= 10-20200411-0ubuntu1), libc6 (>= 2.17), libgcc-s1 (>= 3.3) Filename: pool/main/g/gcc-10/liblsan0_10-20200411-0ubuntu1_amd64.deb Size: 143996 MD5sum: 9b0581e319cdb072357d1ea21b2107c0 SHA1: 947d86a63ec687bf1716eab4e4fe1957420b9b72 SHA256: e96c77a7bfe8f92f26c498032c3da951f34d92dc6324d5d5f0fcc36535dfa58c Homepage: http://gcc.gnu.org/ Description-en: LeakSanitizer – a memory leak detector (runtime) LeakSanitizer (Lsan) is a memory leak detector which is integrated into AddressSanitizer. Task: ubuntustudio-video, ubuntu-mate-core, ubuntu-mate-desktop Build-Essential: yes

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

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

sudo apt-get update

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

sudo apt-get -y install liblsan0

Install liblsan0 Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install liblsan0

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

sudo aptitude -y install liblsan0

How To Uninstall liblsan0 on Ubuntu 20.04

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

sudo apt-get remove liblsan0

Uninstall liblsan0 And Its Dependencies

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

sudo apt-get -y autoremove liblsan0

Remove liblsan0 Configurations and Data

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

sudo apt-get -y purge liblsan0

Remove liblsan0 configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge liblsan0

References

Summary

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