Hello, The way the shared folder is implemented,is not a real filesystem, so some languages have problems with the code in there. I know python fail on some operations, so maybe your is hitting that.
The first troubleshooting you can do is a root user copy the whole folder rsync -PavzHl /source /test and try in test.. as root the permissions will remain the same and with those parameters links will be copied as links, etc. If that works, blame virtualbox shared folder, and try to use vagrant to rsync the files to the vm. If the copy also fails, then the issue is not on the filesystem, try to do chown -R kevin: /test and try, if that work, then is permissions.. on Vagrantfile you can setup owner and permissions of the shared folder. Give a try let's see where it fails/work.. Alvaro. -- You received this message because you are subscribed to the Google Groups "Vagrant" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
