How To Install system-config-printer on Ubuntu 20.04

In this tutorial we learn how to install system-config-printer on Ubuntu 20.04. system-config-printer is graphical interface to configure the printing system graphical interface to configure the printing system

Introduction

In this tutorial we learn how to install system-config-printer on Ubuntu 20.04.

What is system-config-printer

system-config-printer is:

System-config-printer is a GUI written in Python using GTK+ to configure a CUPS server. Its primary use is to configure the printing system on the local host, but can also be used to setup a remote printer.

In terms of features, it aims to be as complete as the CUPS web administration tool, while being integrated to the desktop. Task: ubuntu-desktop-minimal, ubuntu-desktop, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop

Package: system-config-printer Architecture: all Version: 1.5.12-0ubuntu1 Priority: optional Section: gnome Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Debian GNOME Maintainers [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 917 Depends: gir1.2-gdkpixbuf-2.0, gir1.2-glib-2.0, gir1.2-gtk-3.0, gir1.2-notify-0.7, gir1.2-packagekitglib-1.0, gir1.2-pango-1.0, gir1.2-polkit-1.0, python3-cups (>= 1.9.60), python3-cupshelpers (= 1.5.12-0ubuntu1), python3-dbus, python3-gi, system-config-printer-common (= 1.5.12-0ubuntu1), python3:any Recommends: system-config-printer-udev, avahi-utils Suggests: gnome-software (>= 3.16.5-2) Breaks: system-config-printer-gnome (« 1.5.7+20160812-0ubuntu3~) Replaces: system-config-printer-gnome (« 1.5.7+20160812-0ubuntu3~) Filename: pool/main/s/system-config-printer/system-config-printer_1.5.12-0ubuntu1_all.deb Size: 74428 MD5sum: 37a30e6e20def3d3fa8a9474bc09ac01 SHA1: e91d270c819056dd82433f73dd34cbcbc7759fcd SHA256: 7d047efe50c4790a7323c06f5c554d4fc696c3f76da8c3af257706bca95128e2 Homepage: https://github.com/zdohnal/system-config-printer Description-en: graphical interface to configure the printing system System-config-printer is a GUI written in Python using GTK+ to configure a CUPS server. Its primary use is to configure the printing system on the local host, but can also be used to setup a remote printer.

In terms of features, it aims to be as complete as the CUPS web administration tool, while being integrated to the desktop. Task: ubuntu-desktop-minimal, ubuntu-desktop, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntukylin-desktop, ubuntu-mate-core, ubuntu-mate-desktop, ubuntu-budgie-desktop

There are three methods to install system-config-printer 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 system-config-printer Using apt-get

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

sudo apt-get update

After updating apt database, We can install system-config-printer using apt-get by running the following command:

sudo apt-get -y install system-config-printer

Install system-config-printer Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install system-config-printer using apt by running the following command:

sudo apt -y install system-config-printer

Install system-config-printer 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 system-config-printer using aptitude by running the following command:

sudo aptitude -y install system-config-printer

How To Uninstall system-config-printer on Ubuntu 20.04

To uninstall only the system-config-printer package we can use the following command:

sudo apt-get remove system-config-printer

Uninstall system-config-printer And Its Dependencies

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

sudo apt-get -y autoremove system-config-printer

Remove system-config-printer Configurations and Data

To remove system-config-printer configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge system-config-printer

Remove system-config-printer configuration, data, and all of its dependencies

We can use the following command to remove system-config-printer configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge system-config-printer

References

Summary

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