+++ title = "FAQ" weight = 1000 +++ ### What operating systems are supported? gVisor requires Linux {{< required_linux >}} ([older Linux][old-linux]). ### What CPU architectures are supported? gVisor currently supports [x86_64/AMD64](https://en.wikipedia.org/wiki/X86-64) compatible processors. ### Do I need to modify my Linux application to use gVisor? No. gVisor is capable of running unmodified Linux binaries. ### What binary formats does gVisor support? gVisor supports Linux [ELF](https://en.wikipedia.org/wiki/Executable_and_Linkable_Format) binaries. Binaries run in gVisor should be built for the [AMD64](https://en.wikipedia.org/wiki/X86-64) CPU architecture. ### Can I run Docker images using gVisor. Yes. Please see the [Docker Quick Start][docker]. ### Can I run Kubernetes pods using gVisor. Yes. Please see the [Docker Quick Start][k8s]. ### What's the security model? See the [Security Model][security-model]. ## Troubleshooting ### My container runs fine with `runc` but fails with `runsc` If you’re having problems running a container with `runsc` it’s most likely due to a compatibility issue or a missing feature in gVisor. See [Debugging][debugging]. ### When I run my container, docker fails with: `open /run/containerd/...//log.json: no such file or directory` You are using an older version of Linux which doesn't support `memfd_create`. gVisor requires Linux {{< required_linux >}} ([older Linux][old-linux]). This is tracked in [bug #268](https://gvisor.dev/issue/268). ### When I run my container, docker fails with: `flag provided but not defined: -console` You're using an old version of Docker. See [Docker Quick Start][docker]. ### I can’t see a file copied with: `docker cp` For performance reasons, gVisor caches directory contents, and therefore it may not realize a new file was copied to a given directory. To invalidate the cache and force a refresh, create a file under the directory in question and list the contents again. As a workaround, shared root filesystem can be enabled. See [Filesystem][filesystem]. This bug is tracked in [bug #4](https://gvisor.dev/issue/4). Note that `kubectl cp` works because it does the copy by exec'ing inside the sandbox, and thus gVisor's internal cache is made aware of the new files and directories. ### I'm getting an error like: `panic: unable to attach: operation not permitted` Make sure that permissions and the owner is correct on the `runsc` binary. ```bash sudo chown root:root /usr/local/bin/runsc sudo chmod 0755 /usr/local/bin/runsc ``` ### 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 trying to communicate to another container in the same network. Docker user defined bridge uses an embedded DNS server bound to the loopback interface on address 127.0.0.10. This requires access to the host network in order to communicate to the DNS server. runsc network is isolated from the host and cannot access the DNS server on the host network without breaking the sandbox isolation. There are a few different workarounds you can try: * Use default bridge network with `--link` to connect containers. Default bridge doesn't use embedded DNS. * Use [`--network=host`][host-net] option in runsc, however beware that it will use the host network stack and is less secure. * Use IPs instead of container names. * Use [Kubernetes][k8s]. Container name lookup works fine in Kubernetes. [security-model]: /docs/architecture_guide/security/ [old-linux]: /docs/user_guide/networking/#gso [host-net]: /docs/user_guide/networking/#network-passthrough [debugging]: /docs/user_guide/debugging/ [filesystem]: /docs/user_guide/filesystem/ [docker]: /docs/user_guide/quick_start/docker/ [k8s]: /docs/user_guide/quick_start/kubernetes/