-
Notifications
You must be signed in to change notification settings - Fork 829
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cloudflared won't launch on Raspberry Pi 3 running on Ubuntu 18.04 #115
Comments
I was able to build this on WSL (or any linux distro with Go). I used On WSL# Get the source
go get -v github.com/cloudflare/cloudflared/cmd/cloudflared
# Build for arm64
GOOS=linux GOARCH=arm64 go build -v -x github.com/cloudflare/cloudflared/cmd/cloudflared
# Copy to Raspberry Pi
scp cloudflared <user>@<Raspberry Pi IP>:~/cloudflared On the Raspberry Pi# Verify the binary works
./cloudflared -v
cloudflared version DEV (built unknown)
# Copy the bin to system executable dir
sudo mv cloudflared /usr/bin/
# Verify Again
$ cloudflared -v
cloudflared version DEV (built unknown) hope this helps |
it will be nicer if we could have an official arm64/armhf build, since ubuntu official support Raspberry Pi
the build command works for me. thanks for the comment |
Can confirm that this issue still persists on alpine Linux today. But this time with the tar file. I had the following in my
Execution yields:
But I can confirm that it exists in the same directory:
|
edc6969 was merged in time for the 2020.8.0 release, please see https://github.com/cloudflare/cloudflared/releases for recent releases with an arm64 build. |
I downloaded the ARM version of
cloudflared
, added thearm
architecture, and tried launching it, but it wouldn't work.I tried installing the .deb file and the tarball file from the PiHole's documentation.
The text was updated successfully, but these errors were encountered: