Skip to content

Instantly share code, notes, and snippets.

@packmad
Created August 5, 2021 08:45
Show Gist options
  • Save packmad/cd5e0884ec66d977df7259706f4f31c6 to your computer and use it in GitHub Desktop.
Save packmad/cd5e0884ec66d977df7259706f4f31c6 to your computer and use it in GitHub Desktop.
Install ImHex on Ubuntu
#!/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