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 update
After updating apt database, We can install cpu-x
using apt-get
by running the following command:
sudo apt-get -y install cpu-x
Install cpu-x Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install cpu-x
using apt
by running the following command:
sudo apt -y install cpu-x
Install 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 update
After updating apt database, We can install cpu-x
using aptitude
by running the following command:
sudo aptitude -y install cpu-x
How 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-x
Uninstall 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-x
Remove 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-x
Remove 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-x
Dependencies
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
.