Does anyone know where I can find the home folder for vagrant on windows? I've tried typing /home/vagrant
in windows file explorer but it still doesn't pop up.
I've also tried using vagrant's synced folders option by reconfiguring the vagrant file and that doesn't work either. Here is the code from the vagrantfile:
Vagrant.configure("2") do |config|
config.vm.synced_folder "c:/Users/Vanessa", "/home/vagrant"
config.vm.box = "mrgcastle/ubuntu-lucid32"
config.vm.box_version = "1.0.0.0"
end
Does anyone have any suggestions? Thanks for all your help in advance