mirror of
https://github.com/electerm/electerm-web-docker.git
synced 2026-04-25 13:45:55 +03:00
[GH-ISSUE #19] /usr/local/bin/fixuid: 2: Syntax error: Unterminated quoted string #18
Labels
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/electerm-web-docker#18
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @cookie050 on GitHub (Jul 11, 2025).
Original GitHub issue: https://github.com/electerm/electerm-web-docker/issues/19
2025-07-11T13:59:43.588437996Z /usr/local/bin/fixuid: 2: Syntax error: Unterminated quoted string
@zxdong262 commented on GitHub (Jul 12, 2025):
should not be empty
@cookie050 commented on GitHub (Jul 12, 2025):
Edit:
changed the values in the original post
I know, but it's not like i will post it with those values
@zxdong262 commented on GitHub (Jul 12, 2025):
No idea why this happens, can try the config in readme, to confirm if it is related to other settings in your config?
@cookie050 commented on GitHub (Jul 12, 2025):
Tried running it on other rpi4 and 5 same results. On amd64 no problem, clean and with config. So i think it's missing something in the arm64 image.
@cookie050 commented on GitHub (Jul 12, 2025):
Find in the Dockerfile.ubuntu that fixuid is downloaded for amd64 and not arm64 so it ain't executable for arm64
@cookie050 commented on GitHub (Jul 12, 2025):
Got it running with the arm64 binair on the rpi, so problem found :)
architecture=""
case $(uname -m) in
x86_64) architecture="amd64" ;;
arm) dpkg --print-architecture | grep -q "arm64" && architecture="arm64" || architecture="arm" ;;
esac
curl -SsL https://github.com/boxboat/fixuid/releases/download/v0.5.1/fixuid-0.5.1-linux-$(architecture).tar.gz | tar -C /usr/local/bin -xzf -
@zxdong262 commented on GitHub (Jul 12, 2025):
fixed now, please pull latest release
@cookie050 commented on GitHub (Jul 12, 2025):
Thanks and all ready running :)
@cookie050 commented on GitHub (Jul 12, 2025):
I close the issue, love the software <3