How To Install voltron on Kali Linux
Introduction
In this tutorial we learn how to install voltron on Kali Linux.
What is voltron
voltron is:
Voltron is an extensible debugger UI toolkit written in Python. It aims to improve the user experience of various debuggers (LLDB, GDB, VDB and WinDbg) by enabling the attachment of utility views that can retrieve and display data from the debugger host. By running these views in other TTYs, you can build a customised debugger user interface to suit your needs.
There are three methods to install voltron 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 voltron Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install voltron using apt-get by running the following command:
sudo apt-get -y install voltronInstall voltron Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install voltron using apt by running the following command:
sudo apt -y install voltronInstall voltron 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 voltron using aptitude by running the following command:
sudo aptitude -y install voltronHow To Uninstall voltron on Kali Linux
To uninstall only the voltron package we can use the following command:
sudo apt-get remove voltronUninstall voltron And Its Dependencies
To uninstall voltron and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove voltronRemove voltron Configurations and Data
To remove voltron configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge voltronRemove voltron configuration, data, and all of its dependencies
We can use the following command to remove voltron configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge voltronDependencies
voltron have the following dependencies:
- python3-blessed
- python3-flask
- python3-flask-restful
- python3-pygments
- python3-requests
- python3-requests-unixsocket
- python3-scruffy
- python3-six
- python3
References
Summary
In this tutorial we learn how to install voltron package on Kali Linux using different package management tools: apt, apt-get and aptitude.