Introduction
In this tutorial we learn how to install printer-driver-all-enforce
on Kali Linux.
What is printer-driver-all-enforce
printer-driver-all-enforce is:
This package depends on all printer driver packages.
It does not provide any printer driver itself and mostly exists for the
purpose of ensuring sane transitions.
There are three methods to install printer-driver-all-enforce
on Kali Linux. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install printer-driver-all-enforce Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install printer-driver-all-enforce
using apt-get
by running the following command:
sudo apt-get -y install printer-driver-all-enforce
Install printer-driver-all-enforce Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install printer-driver-all-enforce
using apt
by running the following command:
sudo apt -y install printer-driver-all-enforce
Install printer-driver-all-enforce Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install printer-driver-all-enforce
using aptitude
by running the following command:
sudo aptitude -y install printer-driver-all-enforce
How To Uninstall printer-driver-all-enforce on Kali Linux
To uninstall only the printer-driver-all-enforce
package we can use the following command:
sudo apt-get remove printer-driver-all-enforce
Uninstall printer-driver-all-enforce And Its Dependencies
To uninstall printer-driver-all-enforce
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove printer-driver-all-enforce
Remove printer-driver-all-enforce Configurations and Data
To remove printer-driver-all-enforce
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge printer-driver-all-enforce
Remove printer-driver-all-enforce configuration, data, and all of its dependencies
We can use the following command to remove printer-driver-all-enforce
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge printer-driver-all-enforce
Dependencies
printer-driver-all-enforce have the following dependencies:
- printer-driver-brlaser
- printer-driver-c2050
- printer-driver-c2esp
- printer-driver-cjet
- printer-driver-dymo
- printer-driver-escpr
- printer-driver-foo2zjs
- printer-driver-fujixerox
- printer-driver-gutenprint
- printer-driver-hpcups
- printer-driver-indexbraille
- printer-driver-m2300w
- printer-driver-min12xxw
- printer-driver-oki
- printer-driver-pnm2ppa
- printer-driver-postscript-hp
- printer-driver-ptouch
- printer-driver-pxljr
- printer-driver-sag-gdi
- printer-driver-splix
References
Summary
In this tutorial we learn how to install printer-driver-all-enforce
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.