Who run grafana in visionfive v2:
I can’t think of a reason for it not to run.
Only support for arm, x86, x64… not suppor for risc-v
There is always emulation assuming your kernel has binfmt support enabled.
If you use ubuntu and have docker installed enable qemu support and use the x86_64 or arm container.
docker run --name binfmt --privileged tonistiigi/binfmt:qemu-v6.1.0 --install all
docker run -d -p 3000:3000 --platform linux/amd64 --name=grafana grafana/grafana-enterprise
1 Like