How To Install libbluetooth3-dbg on Ubuntu 20.04

In this tutorial we learn how to install libbluetooth3-dbg on Ubuntu 20.04. libbluetooth3-dbg is Library to use the BlueZ Linux Bluetooth stack with debugging symbols Library to use the BlueZ Linux Bluetooth stack with debugging symbols Library to use the BlueZ Linux Bluetooth stack with debugging symbols

Introduction

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

What is libbluetooth3-dbg

libbluetooth3-dbg is:

BlueZ is the official Linux Bluetooth protocol stack. It is an Open Source project distributed under GNU General Public License (GPL).

This package contains the debugging symbols.

Package: libbluetooth3-dbg Architecture: amd64 Version: 5.53-0ubuntu3.2 Priority: extra Section: debug Source: bluez Origin: Ubuntu Maintainer: Ubuntu Bluetooth team [email protected] Original-Maintainer: Debian Bluetooth Maintainers [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 31 Depends: libbluetooth3 (= 5.53-0ubuntu3.2) Filename: pool/main/b/bluez/libbluetooth3-dbg_5.53-0ubuntu3.2_amd64.deb Size: 3056 MD5sum: 7882eb34f77a50cb674de215f5bec844 SHA1: 81e83177ebcb3eca668133fadc1d93980911143f SHA256: f74fb674cda418a5cb819eb306062d5dd1aed07a0502d8ded0ba3e236deeeb70 SHA512: b55a7677ed2135843d81a6da98f8d0ce901fedc0c3e1f8218d8dc507d2f86a476236a13c933d923c7b3a63b2360b8a92ec1ed8314349d0c3d4be55526f8a57c8 Homepage: http://www.bluez.org Description-en: Library to use the BlueZ Linux Bluetooth stack with debugging symbols BlueZ is the official Linux Bluetooth protocol stack. It is an Open Source project distributed under GNU General Public License (GPL).

This package contains the debugging symbols.

Package: libbluetooth3-dbg Architecture: amd64 Version: 5.53-0ubuntu3 Priority: extra Section: debug Source: bluez Origin: Ubuntu Maintainer: Ubuntu Bluetooth team [email protected] Original-Maintainer: Debian Bluetooth Maintainers [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 31 Depends: libbluetooth3 (= 5.53-0ubuntu3) Filename: pool/main/b/bluez/libbluetooth3-dbg_5.53-0ubuntu3_amd64.deb Size: 3052 MD5sum: f9e27ed8d46b8bd0710f2f01930ef6c5 SHA1: 73535a62338cd4c22bbd1e177c591673abf84643 SHA256: d7a42e0f645711507785523fffa45ea151775de8178cf08ca203359503bb90b7 Homepage: http://www.bluez.org Description-en: Library to use the BlueZ Linux Bluetooth stack with debugging symbols BlueZ is the official Linux Bluetooth protocol stack. It is an Open Source project distributed under GNU General Public License (GPL).

This package contains the debugging symbols.

There are three methods to install libbluetooth3-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 libbluetooth3-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 libbluetooth3-dbg using apt-get by running the following command:

sudo apt-get -y install libbluetooth3-dbg

Install libbluetooth3-dbg Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libbluetooth3-dbg

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

sudo aptitude -y install libbluetooth3-dbg

How To Uninstall libbluetooth3-dbg on Ubuntu 20.04

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

sudo apt-get remove libbluetooth3-dbg

Uninstall libbluetooth3-dbg And Its Dependencies

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

sudo apt-get -y autoremove libbluetooth3-dbg

Remove libbluetooth3-dbg Configurations and Data

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

sudo apt-get -y purge libbluetooth3-dbg

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

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

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

References

Summary

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