-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
kernel-modules: update devcontainer docs #390
Conversation
Tested the new instructions on x86-64 (qemu) and arm64 (Azure instance). |
Azure Static Web Apps: Your stage site is ready! Visit it here: https://lemon-wave-085522403-390.westeurope.1.azurestaticapps.net |
The devcontainer docs were using /usr/lib64/modules instead of /usr/lib/modules. However, the former is a symlink to the latter, leading to the mount unit failing. The symlink was introduced by release 3200.0.0. Also, systemd-nspawn required --capability=CAP_NET_ADMIN in order to prevent "loopback permission denied" error messages. Signed-off-by: Thilo Fromm <[email protected]>
8232b06
to
5feaef2
Compare
Azure Static Web Apps: Your stage site is ready! Visit it here: https://lemon-wave-085522403-390.westeurope.1.azurestaticapps.net |
content/docs/latest/reference/developer-guides/kernel-modules.md
Outdated
Show resolved
Hide resolved
content/docs/latest/reference/developer-guides/kernel-modules.md
Outdated
Show resolved
Hide resolved
Co-authored-by: Krzesimir Nowak <[email protected]>
Azure Static Web Apps: Your stage site is ready! Visit it here: https://lemon-wave-085522403-390.westeurope.1.azurestaticapps.net |
The devcontainer docs were using
/usr/lib64/modules
instead of/usr/lib/modules
. However, the former is a symlink to the latter, leading to the mount unit failing. The symlink was introduced by release 3200.0.0.Also, systemd-nspawn required
--capability=CAP_NET_ADMIN
in order to prevent "loopback permission denied" error messages.