Skip to content
This repository has been archived by the owner on Mar 17, 2022. It is now read-only.

Add FAQ to website for Kernel bug issue. #151

Merged
merged 2 commits into from
Mar 15, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions content/docs/user_guide/FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,18 @@ sudo chown root:root /usr/local/bin/runsc
sudo chmod 0755 /usr/local/bin/runsc
```

### I'm getting an error like `mount submount "/etc/hostname": creating mount with source ".../hostname": input/output error: unknown.`

There is a bug in Linux kernel versions 5.1 to 5.3.15, 5.4.2, and 5.5. Upgrade to a newer kernel or add the following to `/lib/systemd/system/containerd.service` as a workaround.

```
LimitMEMLOCK=infinity
```

And run `systemctl daemon-reload && systemctl restart containerd` to restart containerd.

See [issue #1765](https://gvisor.dev/issue/1765) for more details.

### My container cannot resolve another container's name when using Docker user defined bridge

This is normally indicated by errors like `bad address 'container-name'` when
Expand Down