diff options
| author | Jan Tuomi <jan@jantuomi.fi> | 2026-08-11 09:42:08 +0300 |
|---|---|---|
| committer | Jan Tuomi <jan@jantuomi.fi> | 2026-08-11 09:42:08 +0300 |
| commit | 8e6245d20d6008191707468757afa491480f93ed (patch) | |
| tree | c859461f02c4f1ab2460a0d7ff4e2caf1df4ff6e | |
| parent | 63a351417b719b68737c01bba2682054f739eb7a (diff) | |
Skip mounting linux fs on host
| -rw-r--r-- | content/posts/linux-oci-containers-as-jails/index.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/content/posts/linux-oci-containers-as-jails/index.md b/content/posts/linux-oci-containers-as-jails/index.md index 2712edf..4aad785 100644 --- a/content/posts/linux-oci-containers-as-jails/index.md +++ b/content/posts/linux-oci-containers-as-jails/index.md @@ -69,10 +69,11 @@ Through some trial and error, I got a setup working. I'll walk you through the m ### Preparing the host and starting an interim jail -First things first: Enable Linux compatibility on the host. +First things first: Enable Linux compatibility on the host. You don't want to mount any special filesystems on the host, so disable those separately: ```sh -[host]$ sysrc linux_enable="YES" +[host]$ sysrc linux_enable=YES +[host]$ sysrc linux_mounts_enable=NO [host]$ service linux start ``` |
