How to Install ExBin on Kali Linux
ExBin is a minimalist binary viewer and editor that allows you to work with binary files quickly and efficiently. In this tutorial, we will guide you through the installation process of ExBin on Kali Linux latest.
Prerequisites
- Kali Linux installed on your system
- Internet connectivity
- Basic knowledge of Linux commands
Installation Process
First, open the terminal on Kali Linux by pressing
Ctrl+Alt+Tor searching for it in the applications menu.Next, clone the ExBin repository by typing the following command in the terminal:
git clone https://github.com/m1dnight/exbin.gitNavigate to the ExBin directory by typing the following command in the terminal:
cd exbinInstall the necessary dependencies by typing the following command in the terminal:
sudo apt-get install qtbase5-dev libqt5svg5-dev qttools5-dev qttools5-dev-toolsBuild the ExBin application by typing the following command in the terminal:
qmake makeOnce the build process is complete, you can run ExBin by typing the following command in the terminal:
./exbinAlternatively, you can create a desktop shortcut for ExBin by typing the following command in the terminal:
sudo nano /usr/share/applications/exbin.desktopAdd the following lines to this file:
[Desktop Entry] Name=ExBin Exec=/path/to/exbin/executable Terminal=false StartupNotify=true Type=Application Icon=/path/to/exbin/iconRemember to replace
/path/to/exbin/executableand/path/to/exbin/iconwith the actual paths of the ExBin executable and icon files, respectively.Save and close the file.
You should now be able to launch ExBin from the applications menu or the desktop shortcut.
Congratulations, you have successfully installed ExBin on Kali Linux latest!