Installing Go on Plan 9
amd64
mkdir -p /sys/lib/go cd /sys/lib/go hget https://go.dev/dl/go1.23.0.plan9-amd64.tar.gz | tar xz mv go amd64-1.23.0
GOROOT=/sys/lib/go/amd64-1.23.0 bind -b GOROOT/bin /bin
arm64
Installing go on arm64 plan 9 is unsupported by the go language and team but a fork of golang is avaliable which supports it. You will need a non-arm64 system with go running on it to cross-compile for plan9 arm64. These instructions will assume you are on a linux machine with a Go toolchain already installed. On linux:
git clone https://github.com/psilva261/go-arm64.plan9.git cd go-arm64.plan9/src export GOOS=plan9 export GOARCH=arm64 export GOROOT_FINAL=/sys/lib/go/arm64.plan9 bash ./make.bash cd ../bin mv plan9_arm64/* . cd ../.. tar xzvf go9.tgz go-arm64.plan9/**/*
Now you need to transfer the go9.tgz archive to your Plan 9 machine. You can do this with 9P. On Plan 9:
mkdir share aux/listen1 -tv tcp!*!9999 /bin/exportfs -r share
mkdir ~/share 9pfuse tcp!9serverip!9999 ~/share cp go9.tgz ~/share/
mkdir -p /sys/lib/go cd /sys/lib/go tar xvf /usr/glenda/share/go9.tgz mv go-arm64.plan9 arm64.plan9
GOROOT=/sys/lib/go/arm64.plan9 bind -b GOROOT/bin /bin