Raspberry Pi (arm) file extension missing direct install #5374
-
Beta Was this translation helpful? Give feedback.
Answered by
feederbox826
Oct 13, 2024
Replies: 1 comment 1 reply
-
It's not a dynamic executable, it should be statically linked, meaning you likely are just running it incorrectly. Here are the steps I took to get up and running on pi(like) wget https://github.com/stashapp/stash/releases/download/v0.27.1/stash-linux-arm32v6
chmod +x stash-linux-arm32v6
./stash-linux-arm32v6 maybe you're just missing the |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
2024OCT13
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It's not a dynamic executable, it should be statically linked, meaning you likely are just running it incorrectly. Here are the steps I took to get up and running on pi(like)
maybe you're just missing the
./
?