Skip to content

Instantly share code, notes, and snippets.

@samcrosoft
Last active August 29, 2015 14:14
Show Gist options
  • Save samcrosoft/72a0adea2a17817eaafd to your computer and use it in GitHub Desktop.
Save samcrosoft/72a0adea2a17817eaafd to your computer and use it in GitHub Desktop.
  1. This works on Linux guests only
  2. Amend your Vagrantfile accordingly
  3. Run vagrant plugin install vagrant-winnfsd
  4. Say thanks to @GM-Alex for his amazing work.
Vagrant.configure("2") do |config|
# WinNFSD G/UID settings
config.vm.synced_folder ".", "/vagrant", type: "nfs"
config.winnfsd.uid = 1
config.winnfsd.gid = 1
# A private dhcp network is required for NFS to work (on Windows hosts, at least)
config.vm.network "private_network", type: "dhcp"
# The rest of your config here...
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment