Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using vagrant to run a lucid32 install. I have installed LAMP and got that working. What do I need to do in order to mount a windows share on the host machine inside the lucid32 install?

I tried adding A windows path to the vagrant file but get:

C:/Users/myuser/Sites/Vagrantfile:37: invalid Unicode escape config.vm.share_folder "vagwin","/windows", "c:\users\lukem\Sites"

share|improve this question
Could you put the full line, the documentation is not clear about how to put addionnal parameters. "Additional options may be passed in as an options hash for a 4th parameter" – renoirb Apr 5 at 16:49

2 Answers

up vote 5 down vote accepted

You need to double-escape the slashes, atleast I had to on Windows 7, ie, each \ should be \\

share|improve this answer

You need to escape like this C:\users\lukem\Sites

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.