How to Install ExBin on POP! OS Latest
ExBin is a tool for debugging and analyzing binary files. In this tutorial, we will cover how to install ExBin on POP! OS Latest via GitHub.
Prerequisites
- A running installation of POP! OS Latest
- Access to the terminal
Installation Steps
Open the Terminal from the Apps Drawer or press
CTRL + ALT + Tto launch it.First, we need to install some dependencies:
sudo apt install openjdk-11-jdk-headless libcanberra-gtk-module libcanberra-gtk3-moduleNext, we need to clone the ExBin repository from Github. Open the terminal and enter the following command:
$ git clone https://github.com/m1dnight/exbin.git
- Move to the ExBin root directory:
$ cd exbin/
- Now, we need to compile the source code. Enter the following command:
$ ./gradlew build
- After compilation, ExBin will be located in the
/exbin-client/build/libs/directory. Open the terminal and navigate to theexbin-clientdirectory.
$ cd exbin-client/build/libs/
- Now, we can run the ExBin executable. Enter the following command:
$ java -jar exbin-client-<version>-all.jar
- ExBin should now be running.
Conclusion
Congratulations, you have successfully installed ExBin on POP! OS Latest using the GitHub repository. You can use ExBin to debug and analyze binary files.