summaryrefslogtreecommitdiffhomepage
path: root/g3doc/user_guide/FAQ.md
diff options
context:
space:
mode:
authorFabricio Voznika <fvoznika@google.com>2020-09-18 11:19:04 -0700
committergVisor bot <gvisor-bot@google.com>2020-09-18 11:21:06 -0700
commitddf37cb19f373ae47836db97349013081cc857b4 (patch)
tree4d9c498e239b8c6597e14661c9f1b1b246effd96 /g3doc/user_guide/FAQ.md
parentbd69afdcd1c9303602aadce9e59aecff3eb7b9c8 (diff)
Reduce the number of steps to get started with gVisor
Streamline instruction for the common case. PiperOrigin-RevId: 332488910
Diffstat (limited to 'g3doc/user_guide/FAQ.md')
-rw-r--r--g3doc/user_guide/FAQ.md5
1 files changed, 2 insertions, 3 deletions
diff --git a/g3doc/user_guide/FAQ.md b/g3doc/user_guide/FAQ.md
index 8b5cff0ab..514fe3918 100644
--- a/g3doc/user_guide/FAQ.md
+++ b/g3doc/user_guide/FAQ.md
@@ -74,11 +74,10 @@ directories.
### I'm getting an error like: `panic: unable to attach: operation not permitted` or `fork/exec /proc/self/exe: invalid argument: unknown` {#runsc-perms}
-Make sure that permissions and the owner is correct on the `runsc` binary.
+Make sure that permissions is correct on the `runsc` binary.
```bash
-sudo chown root:root /usr/local/bin/runsc
-sudo chmod 0755 /usr/local/bin/runsc
+sudo chmod a+rx /usr/local/bin/runsc
```
### I'm getting an error like `mount submount "/etc/hostname": creating mount with source ".../hostname": input/output error: unknown.` {#memlock}