How To Install lcdproc-extra-drivers on Kali Linux
Introduction
In this tutorial we learn how to install lcdproc-extra-drivers on Kali Linux.
What is lcdproc-extra-drivers
lcdproc-extra-drivers is:
Lcdproc is a client/server suite including drivers for all kinds of nifty LCD displays. The server supports several serial devices: Matrix Orbital, Crystal Fontz, Bayrad, LB216, LCDM001 (kernelconcepts.de), Wirz-SLI and PIC-an-LCD; and some devices connected to the LPT port: HD44780, STV5730, T6963, SED1520 and SED1330. As of 0.4.4 some USB displays are also supported by the drivers CFonz633, CwLnx, and USBLCD.
This package contains the LCD drivers which need extra libraries to run such as USB, LIRC, SVGA, and the X Window System.
There are three methods to install lcdproc-extra-drivers 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 lcdproc-extra-drivers Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install lcdproc-extra-drivers using apt-get by running the following command:
sudo apt-get -y install lcdproc-extra-driversInstall lcdproc-extra-drivers Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install lcdproc-extra-drivers using apt by running the following command:
sudo apt -y install lcdproc-extra-driversInstall lcdproc-extra-drivers 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 updateAfter updating apt database, We can install lcdproc-extra-drivers using aptitude by running the following command:
sudo aptitude -y install lcdproc-extra-driversHow To Uninstall lcdproc-extra-drivers on Kali Linux
To uninstall only the lcdproc-extra-drivers package we can use the following command:
sudo apt-get remove lcdproc-extra-driversUninstall lcdproc-extra-drivers And Its Dependencies
To uninstall lcdproc-extra-drivers and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove lcdproc-extra-driversRemove lcdproc-extra-drivers Configurations and Data
To remove lcdproc-extra-drivers configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge lcdproc-extra-driversRemove lcdproc-extra-drivers configuration, data, and all of its dependencies
We can use the following command to remove lcdproc-extra-drivers configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge lcdproc-extra-driversDependencies
lcdproc-extra-drivers have the following dependencies:
References
Summary
In this tutorial we learn how to install lcdproc-extra-drivers package on Kali Linux using different package management tools: apt, apt-get and aptitude.