How To Install libvpb-dbg on Ubuntu 20.04

In this tutorial we learn how to install libvpb-dbg on Ubuntu 20.04. libvpb-dbg is debugging symbols for libvpb and vpb-utils

Introduction

In this tutorial we learn how to install libvpb-dbg on Ubuntu 20.04.

What is libvpb-dbg

libvpb-dbg is:

This package provides the detached debug symbols for the vpb-driver userspace library and utilities. Build-Ids: 2e37b16999a61bb2de20a9f00a05b19e56f2cb28 3156ba54ece31df219248b7acb728a6bda81ccc6 339f802195be7d27ba6468fa40b3d7b0ad541c30 3fbcd3625e792c38c90b3fed010e4175b6deb728 53d4635e9b85717e699e34942698451b4aeaa044 5b5e493c2b805438e72dd8097a467d11eb1811ec 80118a828ca3619575fd9aba22d058b7c7375238 836495204cd01e8806f42deea576a21deaf2fb43 932d49e92e7285eccb7bbd778d9ea9ee55bd3e9d b76e012315a88784d6f26d2d15f8be1a7589ccf5 c099fc5f38114e7d13c8f4a0b1c287e6adea9ef2 c49bc72c8c2e5579950c979806fc9f14af221381 cfc040d49102cd5c7806504302f6129c89515409 d02836925845fd7173f704b22cb4a320d24e5a97 d4a80b6b98fb4a50cccdca5c4d1f443d15ead56e d513bc8fb7c06bfd3ba1fddad88b5d63b20152b0

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

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

sudo apt-get update

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

sudo apt-get -y install libvpb-dbg

Install libvpb-dbg Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libvpb-dbg

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

sudo aptitude -y install libvpb-dbg

How To Uninstall libvpb-dbg on Ubuntu 20.04

To uninstall only the libvpb-dbg package we can use the following command:

sudo apt-get remove libvpb-dbg

Uninstall libvpb-dbg And Its Dependencies

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

sudo apt-get -y autoremove libvpb-dbg

Remove libvpb-dbg Configurations and Data

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

sudo apt-get -y purge libvpb-dbg

Remove libvpb-dbg configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libvpb-dbg

References

Summary

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