ls /vagrantから返ってこなくて、今日はずっと調べてました。。。
BoxはUbuntu Officialのやつ
http://cloud-images.ubuntu.com/vagrant/saucy/current/saucy-server-cloudimg-amd64-vagrant-disk1.box 結論から言うと、vagrant-vbguest pluginをインストールし、vagrantを起
動、vagrantの中で/usr/lib/VBoxGuestAdditionsを見えるようにしてあげ
ればOK。道は長かった。
$ vagrant plugin install vagrant-vbguest
$ vagrant up
Vagrant起動の途中でvbguest pluginによって
/Applications/VirtualBox.app/Contents/MacOS/VBoxGuestAdditions.iso
がvagrantにインストールされます。
この時点ではマウントに失敗します。
default: /vagrant => /Users/masutaka/projects/example.com Failed to mount folders in Linux guest. This is usually because the "vboxsf" file system is not available. Please verify that the guest additions are properly installed in the guest and can work properly. The command attempted was: mount -t vboxsf -o uid=`id -u vagrant`,gid=`getent group vagrant | cut -d: -f3` /vagrant /vagrant mount -t vboxsf -o uid=`id -u vagrant`,gid=`id -g vagrant` /vagrant /vagrant sshログインして、/usr/lib/VBoxGuestAdditionsを見えるようにしてあげます。...