How To Install cups-server-common on Ubuntu 20.04

In this tutorial we learn how to install cups-server-common on Ubuntu 20.04. cups-server-common is Common UNIX Printing System(tm) - server common files Common UNIX Printing System(tm) - server common files

Introduction

In this tutorial we learn how to install cups-server-common on Ubuntu 20.04.

What is cups-server-common

cups-server-common is:

The Common UNIX Printing System (or CUPS(tm)) is a printing system and general replacement for lpd and the like. It supports the Internet Printing Protocol (IPP), and has its own filtering driver model for handling various document types.

This package provides common files for CUPS server. Task: print-server, ubuntu-desktop-minimal, ubuntu-desktop, kubuntu-desktop, xubuntu-core, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop-core, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop

Package: cups-server-common Architecture: all Version: 2.3.1-9ubuntu1 Multi-Arch: foreign Priority: optional Section: net Source: cups Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Debian Printing Team [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 2398 Filename: pool/main/c/cups/cups-server-common_2.3.1-9ubuntu1_all.deb Size: 402860 MD5sum: 13ef14fe34c1f6b5370844ddc7a728e8 SHA1: 1117c7ecbc10a1c38d4fb6aaa5149677ebb43f40 SHA256: a193500b8bdc7a979fd3426b859e402db0c611f81fe5d3201fac6de47e7f6914 Homepage: https://www.cups.org/ Description-en: Common UNIX Printing System(tm) - server common files The Common UNIX Printing System (or CUPS(tm)) is a printing system and general replacement for lpd and the like. It supports the Internet Printing Protocol (IPP), and has its own filtering driver model for handling various document types.

This package provides common files for CUPS server. Task: print-server, ubuntu-desktop-minimal, ubuntu-desktop, kubuntu-desktop, xubuntu-core, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop-core, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop

There are three methods to install cups-server-common 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 cups-server-common Using apt-get

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

sudo apt-get update

After updating apt database, We can install cups-server-common using apt-get by running the following command:

sudo apt-get -y install cups-server-common

Install cups-server-common Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install cups-server-common using apt by running the following command:

sudo apt -y install cups-server-common

Install cups-server-common 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 cups-server-common using aptitude by running the following command:

sudo aptitude -y install cups-server-common

How To Uninstall cups-server-common on Ubuntu 20.04

To uninstall only the cups-server-common package we can use the following command:

sudo apt-get remove cups-server-common

Uninstall cups-server-common And Its Dependencies

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

sudo apt-get -y autoremove cups-server-common

Remove cups-server-common Configurations and Data

To remove cups-server-common configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge cups-server-common

Remove cups-server-common configuration, data, and all of its dependencies

We can use the following command to remove cups-server-common configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge cups-server-common

References

Summary

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