Created
August 5, 2021 08:45
-
-
Save packmad/cd5e0884ec66d977df7259706f4f31c6 to your computer and use it in GitHub Desktop.
Install ImHex on Ubuntu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Installer for https://github.com/WerWolv/ImHex | |
sudo apt install wget libcapstone3 libglfw3 libmbedcrypto3 libmbedtls12 | |
cd /tmp | |
wget https://nightly.link/WerWolv/ImHex/workflows/build/master/Linux%20ELF.zip | |
unzip Linux\ ELF.zip -d tmpimhex | |
cd tmpimhex | |
sudo cp bin/imhex /usr/bin | |
sudo cp lib/libimhex.so /usr/lib/ | |
sudo cp -r imhex/ /usr/share/ | |
sudo cp -r share/imhex /usr/share/ | |
sudo mkdir /usr/share/imhex/plugins | |
sudo mv lib/builtin.hexplug /usr/share/imhex/plugins | |
sudo chmod +x /usr/bin/imhex |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment