GitHub Issue

busybox sh support

Discovered On May 18, 2026
Primary Metric open
It seems that `bash` is the only supported shell. Is there any plan to support other shells? I have this running inside a busybox based kvm guest on linux/x64 and would like to be able to use busybox sh instead of bash. Am happy to work on a patch to support this if you think it would be desirable.
View Raw Thread

Developer & User Discourse

hiAndrewQuinn • May 18, 2026
Not the OP, but I think that would be a quite valuable patch. One of the big selling points of this project is that, since it's so tiny and easy to compile statically, you can stick it in a whole host of places where ordinary systems may not tread.
gdv • May 18, 2026
In this case, it makes sense to support also [dash](https://git.kernel.org/pub/scm/utils/dash/dash.git), which is the default and very lean shell on debian and ubuntu.
qznc • May 18, 2026
It should simply be a configurable value instead of a hardcoded string, I guess.

https://github.com/gi-dellav/zerostack/blob/69a4cb0c20f3b2598d65210adf882f119baffd70/src/sandbox.rs#L19
gi-dellav • May 18, 2026
Thanks, will add as configurable in v1.2.0 (later today, together with some TUI improvements)