How To Install s51dude on Kali Linux

In this tutorial we learn how to install s51dude on Kali Linux. s51dude is In-System Programmer for 8051 MCUs using usbtiny

Introduction

In this tutorial we learn how to install s51dude on Kali Linux.

What is s51dude

s51dude is:

In-System programmer for Atmel’s 8051 MCUs like the AT89S8252 and AT89S53. It needs the usbtinyisp board with a modified firmware.

There are three methods to install s51dude 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 s51dude Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install s51dude using apt-get by running the following command:

sudo apt-get -y install s51dude

Install s51dude Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install s51dude using apt by running the following command:

sudo apt -y install s51dude

Install s51dude 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 s51dude using aptitude by running the following command:

sudo aptitude -y install s51dude

How To Uninstall s51dude on Kali Linux

To uninstall only the s51dude package we can use the following command:

sudo apt-get remove s51dude

Uninstall s51dude And Its Dependencies

To uninstall s51dude and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove s51dude

Remove s51dude Configurations and Data

To remove s51dude configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge s51dude

Remove s51dude configuration, data, and all of its dependencies

We can use the following command to remove s51dude configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge s51dude

Dependencies

s51dude have the following dependencies:

References

Summary

In this tutorial we learn how to install s51dude package on Kali Linux using different package management tools: apt, apt-get and aptitude.