Update 9p docs; fixes #503

This commit is contained in:
Gerben Meijer
2016-10-07 18:53:29 +02:00
parent 7d2c600a40
commit 6b2d5ef650

View File

@@ -842,7 +842,7 @@ config.vm.synced_folder './', '/vagrant', type: 'rsync'
or or
```shell ```shell
config.vm.synced_folder './', '/vagrant', type: '9p', disabled: false, accessmode: "squash", owner: "vagrant" config.vm.synced_folder './', '/vagrant', type: '9p', disabled: false, accessmode: "squash", owner: "1000"
``` ```
or or
@@ -854,6 +854,8 @@ config.vm.synced_folder './', '/vagrant', type: '9p', disabled: false, accessmod
For 9p shares, a `mount: false` option allows to define synced folders without For 9p shares, a `mount: false` option allows to define synced folders without
mounting them at boot. mounting them at boot.
Further documentation on using 9p can be found [here](https://www.kernel.org/doc/Documentation/filesystems/9p.txt). Please do note that 9p depends on support in the guest and not all distros come with the 9p module by default.
**SECURITY NOTE:** for remote libvirt, nfs synced folders requires a bridged **SECURITY NOTE:** for remote libvirt, nfs synced folders requires a bridged
public network interface and you must connect to libvirt via ssh. public network interface and you must connect to libvirt via ssh.