Trying to use the NFS plugin with a synchronized folder in Vagrant also works, except that in the guest (VM) permissions are incorrect:
-rw-r--r-- 1 501 dialout 0 Jan 20 00:51 a -rw-r--r-- 1 501 dialout 0 Jan 20 00:51 foo
I tried to configure uid and gid according to Vagrant documentation in Vagrantfile :
config.nfs.map_uid = 1001 config.nfs.map_gid = 1001
I was hoping to use the correct user / group in the guest system, but it still uses 501 and dialout .
Any ideas?
source share