Recurring Vagrant error: operation not permitted on action `create` on an NFS resource
问题 I have a vagrant box with chef provisioner. Everything works fine except when there are operation on NFS resources. For example, I have the following synced folders: "host_path": "/Users/User/devbox/vdd/data", "guest_path": "/var/www", "type": "nfs" And in the vagrant file: # Synced Folders. config_json["vm"]["synced_folders"].each do |folder| case folder["type"] when "nfs" config.vm.synced_folder folder["host_path"], folder["guest_path"], type: "nfs" # This uses uid and gid of the user that