Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,22 @@ Download the latest version from the [release page](https://github.com/ThatOther
mv hexecute-1.2.3-blah hexecute
chmod +x hexecute
```
### Fix for Non-Nix Systems
#### Arch Linux
```
sudo pacman -S patchelf
patchelf --set-interpreter /lib64/ld-linux-x86-64.so.2 hexecute
```
#### Fedora
```
sudo dnf install patchelf
patchelf --set-interpreter /lib64/ld-linux-x86-64.so.2 hexecute
```
#### Ubuntu / Debian
```
sudo apt install patchelf
patchelf --set-interpreter /lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 hexecute
```

### Build from Source

Expand Down