How To Install gtkpod-dbg on Ubuntu 20.04

In this tutorial we learn how to install gtkpod-dbg on Ubuntu 20.04. gtkpod-dbg is debugging symbols for gtkpod

Introduction

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

What is gtkpod-dbg

gtkpod-dbg is:

gtkpod is a platform independent GUI for Apple’s iPod using GTK3. It allows you to upload songs and playlists to your iPod. It supports ID3 tag editing, multiple charsets for ID3 tags, detects duplicate songs, allows offline modification of the database with later synchronisation, and more.

This package contains the debugging symbols for gtkpod. Build-Ids: 0370934e6a7dbaf1145c29e935ffc24e39606db9 1528c452d872f920f4f0de822a785be89e05f8ed 1ce085b478dc552dc889125d8480124f63d1650b 26fb92e6967fed1701086e1b6478bc1f3e6f6c8b 289ea0eaafd5225dd9288744ac2897bd8894b2da 28d919af0258dfcc8512934e3751fa2a23312cfd 311e788e295b0dcb197c741fd2da3248d49c3441 48daba563250708783249d4dc599d3c242d2d9de 53503ef6ac5061b4191ef7e0bdc8a0d2ab9d348e 53567d967ce3a2c0b2a7c5c962832f8c2dc7dbfc 547ae5b2abf24c6a702841e863d442d57b759c7e 5ccbeb8478f9f6f5a02351825c98addf3b13236c 63f6a16eed38ea083cf19dae0d3e32bceef20614 6fe16474397303603fcface8f1d6fc7b1cbc9fa2 787942dc728c906cc6ca383e6cdd74b314bf95de 7e5e7cf2dd8d2173225695e9560a7fbfa74231a7 88ebd6956aa2b610720d4f4ec9d25212c1131334 a7930372930bff1a301489641d9c5fbfdfc97cd9 b49041b30193eb6b33c0bbdd1994f5cbd4970112 bc8cfd15e2d39a214c85d07d50eb34549d47f5a2 c9eb7bc64137a9c8af1fc24842b58072e448137f d13f4b386e275daabaa22018b69abad31be28bc3 d3b8a1bfe44bfde55221db12ceeab9c76bb4627b fdd3405c8624b556d813f04c6b4850c2b798c634

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

sudo apt-get -y install gtkpod-dbg

Install gtkpod-dbg Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install gtkpod-dbg

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

sudo aptitude -y install gtkpod-dbg

How To Uninstall gtkpod-dbg on Ubuntu 20.04

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

sudo apt-get remove gtkpod-dbg

Uninstall gtkpod-dbg And Its Dependencies

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

sudo apt-get -y autoremove gtkpod-dbg

Remove gtkpod-dbg Configurations and Data

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

sudo apt-get -y purge gtkpod-dbg

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

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

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

References

Summary

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