I am trying to get the estate to work after following the instructions here
I have Virtualbox 5.0.6 and Vagrant 1.7.4 on Windows 8. The machine boots fine (ish), the only problem is that my mapped folder is missing in vm, that is, when I vagrant ssh
, the directory is /home/vagrant/
empty, there is no directory inside it Code
. This is a screenshot of the computer boot (it should continue to go and talk, matching folders and stuff):

And this is the contents of my file Homestead.yaml
---
ip: "192.168.10.10"
memory: 2048
cpus: 1
provider: virtualbox
authorize: C:\Users\Khalid\.ssh\id_rsa.pub
keys:
- C:\Users\Khalid\.ssh\id_rsa
folders:
- map: D:\work
to: /home/vagrant/Code
sites:
- map: homestead.app
to: /home/vagrant/Code/Laravel/public
databases:
- homestead
variables:
- key: APP_ENV
value: local
Did anyone help, thanks
EDIT: full output vagrant up --debug
can be found here