How To Install avarice on Kali Linux
Introduction
In this tutorial we learn how to install avarice on Kali Linux.
What is avarice
avarice is:
AVaRICE is a program which interfaces the GNU Debugger with the AVR JTAG ICE, and other debuggers, available from Atmel. It connects to gdb via a TCP socket and communicates via gdb’s “serial debug protocol”.
This protocol allows gdb to send commands like “set/remove breakpoint” and “read/write memory”. AVaRICE translates this commands into the Atmel protocol used to control the JTAG ICE (or other) debugger.
Because the GDB-AVaRICE connection is via a TCP socket, the two programs do not need to run on the same machine.
The currently supported debuggers are:
- JTAG ICE mkI
- JTAG ICE mkII
- AVR Dragon
There are three methods to install avarice 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 avarice Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install avarice using apt-get by running the following command:
sudo apt-get -y install avariceInstall avarice Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install avarice using apt by running the following command:
sudo apt -y install avariceInstall avarice 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 avarice using aptitude by running the following command:
sudo aptitude -y install avariceHow To Uninstall avarice on Kali Linux
To uninstall only the avarice package we can use the following command:
sudo apt-get remove avariceUninstall avarice And Its Dependencies
To uninstall avarice and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove avariceRemove avarice Configurations and Data
To remove avarice configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge avariceRemove avarice configuration, data, and all of its dependencies
We can use the following command to remove avarice configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge avariceDependencies
avarice have the following dependencies:
References
Summary
In this tutorial we learn how to install avarice package on Kali Linux using different package management tools: apt, apt-get and aptitude.