I configured Vagrant to use Rsync shared folders instead of the (incredibly slow) vboxsf file system provided by VirtualBox by default:
Vagrant.configure("2") do |config| config.vm.synced_folder ".", "/vagrant", type: "rsync", rsync__args: ["--verbose", "--archive", "-z"] end
Obviously there are more settings, but I found these instructions here and they usually work in sync from host to guest.
However, I need the guest to be able to synchronize with the host, as some of my build tools are only installed on the guest computer. How can I synchronize bidirectional transfer in a shared folder?
vagrant virtualbox rsync
Naftuli Kay
source share