How To Install lpc21isp on Kali Linux
Introduction
In this tutorial we learn how to install lpc21isp on Kali Linux.
What is lpc21isp
lpc21isp is:
In-circuit programming (ISP) tool for the NXP(Philips) LPC1100/LPC1300/LPC1700/LPC2000 series ARM7/Cortex-M0/ Cortex-M3 microcontrollers.
There are three methods to install lpc21isp 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 lpc21isp Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install lpc21isp using apt-get by running the following command:
sudo apt-get -y install lpc21ispInstall lpc21isp Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install lpc21isp using apt by running the following command:
sudo apt -y install lpc21ispInstall lpc21isp 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 lpc21isp using aptitude by running the following command:
sudo aptitude -y install lpc21ispHow To Uninstall lpc21isp on Kali Linux
To uninstall only the lpc21isp package we can use the following command:
sudo apt-get remove lpc21ispUninstall lpc21isp And Its Dependencies
To uninstall lpc21isp and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove lpc21ispRemove lpc21isp Configurations and Data
To remove lpc21isp configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge lpc21ispRemove lpc21isp configuration, data, and all of its dependencies
We can use the following command to remove lpc21isp configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge lpc21ispDependencies
lpc21isp have the following dependencies:
References
Summary
In this tutorial we learn how to install lpc21isp package on Kali Linux using different package management tools: apt, apt-get and aptitude.