💾 Archived View for gemi.dev › gemini-mailing-list › 000661.gmi captured on 2024-06-16 at 14:05:37. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2023-12-28)
-=-=-=-=-=-=-
Has anyone gotten amfora to work on a Raspberry Pi 4? I tried: amfora_1.7.2_linux_arm64 from here: https://github.com/makeworld-the-better-one/amfora/releases and it returned: bash: /usr/local/bin/amfora: cannot execute binary file: Exec format error
On 06/02/2021 20:32, seglar92 at michig.email wrote: > Has anyone gotten amfora to work on a Raspberry Pi 4? > > I tried: > > amfora_1.7.2_linux_arm64 > > from here: https://github.com/makeworld-the-better-one/amfora/releases > > and it returned: > > bash: /usr/local/bin/amfora: cannot execute binary file: Exec format error > > The builds are for x86, raspberry pis are ARM. you'll have to clone the source and build it yourself. There are instructions in the repo: https://github.com/makeworld-the-better-one/amfora#from-source
Hi there, Am 06.02.21 um 21:32 schrieb seglar92 at michig.email: > Has anyone gotten amfora to work on a Raspberry Pi 4? > ... > bash: /usr/local/bin/amfora: cannot execute binary file: Exec format error Are you sgure you took the armv7 release?
I forgot to hit Reply-All so here's the gist of what I said, for anyone else who has this problem: That is indeed an ARM64 build, which is the architecture of the Raspberry Pi 4. However the Raspberry Pi OS (which I assume you're running) is still only a 32-bit OS. This means it won't run ARM64 binaries. Instead you should download the binary called linux_armv7, which is 32-bit and compatible with RPi4 I believe. seglar92 replied and said that worked. makeworld
On Sat, Feb 06, 2021 at 09:26:32PM +0000, colecmac at protonmail.com wrote: Hi! [...] > That is indeed an ARM64 build, which is the architecture of the Raspberry Pi 4. > However the Raspberry Pi OS (which I assume you're running) is still only a > 32-bit OS. This means it won't run ARM64 binaries. Instead you should download > the binary called linux_armv7, which is 32-bit and compatible with RPi4 I believe. > > seglar92 replied and said that worked. Just for the record: an alternative solution would be install Debian images available here: https://raspi.debian.net/ Bye! C.
---