How To Install cpu-x on Kali Linux
Introduction
In this tutorial we learn how to install cpu-x on Kali Linux.
What is cpu-x
cpu-x is:
CPU-X is similar to CPU-Z (for MS Windows). It can be used in graphical mode by using GTK or in text-based mode by using NCurses. A dump mode is present from the command line.
There are three methods to install cpu-x 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 cpu-x Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install cpu-x using apt-get by running the following command:
sudo apt-get -y install cpu-xInstall cpu-x Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install cpu-x using apt by running the following command:
sudo apt -y install cpu-xInstall cpu-x 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 cpu-x using aptitude by running the following command:
sudo aptitude -y install cpu-xHow To Uninstall cpu-x on Kali Linux
To uninstall only the cpu-x package we can use the following command:
sudo apt-get remove cpu-xUninstall cpu-x And Its Dependencies
To uninstall cpu-x and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove cpu-xRemove cpu-x Configurations and Data
To remove cpu-x configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge cpu-xRemove cpu-x configuration, data, and all of its dependencies
We can use the following command to remove cpu-x configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge cpu-xDependencies
cpu-x have the following dependencies:
- libc6
- libcairo2
- libcpuid15
- libgdk-pixbuf-2.0-0
- libglib2.0-0
- libgtk-3-0
- libncursesw6
- libpango-1.0-0
- libpangocairo-1.0-0
- libpci3
References
Summary
In this tutorial we learn how to install cpu-x package on Kali Linux using different package management tools: apt, apt-get and aptitude.