crashes on startup, "No usable sanbox!" #168
voidwalter
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
BrowserOS installed via the official .deb package fails to launch on Ubuntu 24.04 64-bit with a fatal Chromium sandbox error.
FATAL:content/browser/zygote_host/zygote_host_impl_linux.cc:132] No usable sandbox!browseros --no-sandboxthis is disabling security sanbox(don't do it)If you are running on Ubuntu 23.10+ or another Linux distro that has disabled unprivileged user namespaces with AppArmor, see
https://chromium.googlesource.com/chromium/src/+/main/docs/security/apparmor-userns-restrictions.md
Solve it:
sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0It will temporarily disable this restrictionpermanent:
echo 'kernel.apparmor_restrict_unprivileged_userns=0' | sudo tee /etc/sysctl.d/60-allow-userns.conf sudo sysctl -p /etc/sysctl.d/60-allow-userns.confBeta Was this translation helpful? Give feedback.
All reactions