summaryrefslogtreecommitdiffstats
path: root/content/posts/linux-oci-containers-as-jails/index.md
diff options
context:
space:
mode:
authorJan Tuomi <jan@jantuomi.fi>2026-08-11 09:42:08 +0300
committerJan Tuomi <jan@jantuomi.fi>2026-08-11 09:42:08 +0300
commit8e6245d20d6008191707468757afa491480f93ed (patch)
treec859461f02c4f1ab2460a0d7ff4e2caf1df4ff6e /content/posts/linux-oci-containers-as-jails/index.md
parent63a351417b719b68737c01bba2682054f739eb7a (diff)
Skip mounting linux fs on host
Diffstat (limited to 'content/posts/linux-oci-containers-as-jails/index.md')
-rw-r--r--content/posts/linux-oci-containers-as-jails/index.md5
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
```