How To Install libkrb5-dbg on Ubuntu 20.04

In this tutorial we learn how to install libkrb5-dbg on Ubuntu 20.04. libkrb5-dbg is debugging files for MIT Kerberos debugging files for MIT Kerberos

Introduction

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

What is libkrb5-dbg

libkrb5-dbg is:

Kerberos is a system for authenticating users and services on a network. Kerberos is a trusted third-party service. That means that there is a third party (the Kerberos server) that is trusted by all the entities on the network (users and services, usually called “principals”).

This is the MIT reference implementation of Kerberos V5.

This package contains the debugging information for the MIT Kerberos libraries. Install this package if you need to trace problems inside the MIT Kerberos libraries with a debugger. Build-Ids: db42cb34964f265489c66db4b1743728db0ac122 e8b232f14f09509c2137cb5db486fd46b5ddcae5 1fc13d38c905aabc30c41328658acd119fb1f67e ab6271090e332c43be8659607c9bf8accf4c6d72 ae050e7fedf611e65c7a621d0357fabfdf8a1d3c 1798b94a706e93ecc752e4614b950d1a2b86d0ba 09089dc5a633758ed182828fa4d2695685232e0c 9e8acda5feb092c47f128aec0b222a205f049a7c cd5951fa5806b5dbf9f5cfc7bcf5647bed6d59c1 4385ce8c52d3935ff274d1a816d560fc9e4a1552

Package: libkrb5-dbg Architecture: amd64 Version: 1.17-6ubuntu4 Multi-Arch: same Priority: extra Section: debug Source: krb5 Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Sam Hartman [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 3521 Depends: libkrb5-3 (= 1.17-6ubuntu4) | libk5crypto3 (= 1.17-6ubuntu4) | libkrb5support0 (= 1.17-6ubuntu4) Filename: pool/main/k/krb5/libkrb5-dbg_1.17-6ubuntu4_amd64.deb Size: 3074404 MD5sum: 54431f8d4abca509fd0d65e2462e79d3 SHA1: 00d9bde09a9e74f51285543f96ecd727eec01442 SHA256: 03af69d148cad8fa51c7956c2ffdf2429dda966632347f7c858d75c8618a601d Homepage: http://web.mit.edu/kerberos/ Description-en: debugging files for MIT Kerberos Kerberos is a system for authenticating users and services on a network. Kerberos is a trusted third-party service. That means that there is a third party (the Kerberos server) that is trusted by all the entities on the network (users and services, usually called “principals”).

This is the MIT reference implementation of Kerberos V5.

This package contains the debugging information for the MIT Kerberos libraries. Install this package if you need to trace problems inside the MIT Kerberos libraries with a debugger. Build-Ids: 7526e1936f0723a4db231e2670be414c2eb2635e 82c2a7d912441c9c44b6fc87713c16476b657638 840d3fb1d5cd40c5a9e041552c67976081a0d736 d2548a55b4fc45c54bd091f5fbd8ba1b5647e193 a52d635a27c0477e73d11b41a4ad2bfca0ef94ac 952938f57b44aaabb901905ea659550610f16561 e51658bbf3b025b5b621de651222d47ac3dc7331 19498342db866ea8fac714ed806dba9cfdb4d1bc a64b5ede6c767e0cc9caaaa413c9229305c6bbb9 f43b56b3610ff0dce3e966a8d34493a0ab503d9a

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

sudo apt-get -y install libkrb5-dbg

Install libkrb5-dbg Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libkrb5-dbg

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

sudo aptitude -y install libkrb5-dbg

How To Uninstall libkrb5-dbg on Ubuntu 20.04

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

sudo apt-get remove libkrb5-dbg

Uninstall libkrb5-dbg And Its Dependencies

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

sudo apt-get -y autoremove libkrb5-dbg

Remove libkrb5-dbg Configurations and Data

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

sudo apt-get -y purge libkrb5-dbg

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

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

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

References

Summary

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