How To Install disc-cover on Ubuntu 18.04

In this tutorial we learn how to install disc-cover on Ubuntu 18.04. disc-cover is produces covers for audio CDs

Introduction

In this tutorial we learn how to install disc-cover on Ubuntu 18.04.

What is disc-cover

disc-cover is:

Disc-cover queries FreeDB for track information for a given CD and creates a jewel-case insert in one of many available formats. PostScript, PDF, Dvi, LaTeX, Plain Text, HTML, CDlabelgen and CDDB are available.

There are three methods to install disc-cover on Ubuntu 18.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 disc-cover Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install disc-cover

Install disc-cover Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install disc-cover

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

sudo aptitude -y install disc-cover

How To Uninstall disc-cover on Ubuntu 18.04

To uninstall only the disc-cover package we can use the following command:

sudo apt-get remove disc-cover

Uninstall disc-cover And Its Dependencies

To uninstall disc-cover and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove disc-cover

Remove disc-cover Configurations and Data

To remove disc-cover configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge disc-cover

Remove disc-cover configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge disc-cover

References

Summary

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