Gvisor on Raspbian
_ananos_
67 points
17 comments
March 13, 2026
Related Discussions
Found 5 related stories in 50.3ms across 3,471 title embeddings via pgvector HNSW
- Fedora 44 on the Raspberry Pi 5 jandeboevrie · 81 pts · March 14, 2026 · 54% similar
- Velxio 2.0 – Emulate Arduino, ESP32, and Raspberry Pi 3 in the Browser dmcrespo · 113 pts · March 27, 2026 · 46% similar
- Using FireWire on a Raspberry Pi jandeboevrie · 72 pts · March 26, 2026 · 44% similar
- Show HN: Ripl – A unified 2D/3D engine for Canvas, SVG, WebGPU, and the Terminal andrewcourtice · 15 pts · March 19, 2026 · 42% similar
- Daily Driving GrapheneOS zdw · 140 pts · March 03, 2026 · 41% similar
Discussion Highlights (5 comments)
geerlingguy
> Fair warning: compiling a kernel on the Pi itself takes several hours. One nit: this should only take about 40 minutes on a Pi 5, assuming you're compiling with -j6 to use all the cores. (Still faster to cross-compile)
pelcg
What use-cases are there for gVisor on Raspbian, given that the target is a Raspberry Pi?
Lliora
Ran gVisor on a Pi 4 cluster for home IoT sandboxing. Memory overhead is real—about 120MB per sandbox vs 15MB for raw containers. On 4GB boards that limits you to ~25 isolated services before OOM kicks in. Also, syscall拦截 adds 30-40% CPU overhead on ARM. Works fine for untrusted Python scripts, but I wouldn’t run anything compute-heavy.
bitwize
gVisor's architecture is fascinating. Years ago I wrote an essay that was kind of a response to all the cracks about "systemd-kerneld" that have been made over the years. Written in character as "Fake Lennart Poettering", it proposed a strategy, using techniques inspired by NetBSD's rump kernel libraries, to turn systemd into a kernel, which would then load a Linux image and "pass through" all system calls to it except those systemd wanted to intercept. Which is kinda the opposite of what gVisor does! Some guy on a German Linux forum thought my idea was an actual plan by the systemd team, and another poster had to correct him that the author was "FAKE Lennart Poettering", so the joke either didn't land or landed all too well, depending on your perspective...
tetris11
Is proot related to Gvisor?