How To Install radare2-cutter on Kali Linux

In this tutorial we learn how to install radare2-cutter on Kali Linux. radare2-cutter is GUI for radare2 reverse engineering framework

Introduction

In this tutorial we learn how to install radare2-cutter on Kali Linux.

What is radare2-cutter

radare2-cutter is:

Cutter is a Qt based GUI for reverse engineering binaries, which makes use of the radare2 framework. Advanced users are expected to use the radare2 CLI tools instead, which are much more powerful.

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

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

sudo apt-get update

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

sudo apt-get -y install radare2-cutter

Install radare2-cutter Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install radare2-cutter

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

sudo aptitude -y install radare2-cutter

How To Uninstall radare2-cutter on Kali Linux

To uninstall only the radare2-cutter package we can use the following command:

sudo apt-get remove radare2-cutter

Uninstall radare2-cutter And Its Dependencies

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

sudo apt-get -y autoremove radare2-cutter

Remove radare2-cutter Configurations and Data

To remove radare2-cutter configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge radare2-cutter

Remove radare2-cutter configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge radare2-cutter

Dependencies

radare2-cutter have the following dependencies:

References

Summary

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