魔法使いの卵

WEBエンジニアの卵の成長記録

vagrantで共通ファイルがマウントされなかったw

共通ファイルがマウントされていない

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

The error output from the last command was:

/sbin/mount.vboxsf: mounting failed with the error: No such device
  • 共通フォルダーがマウントできねーよっていうエラー
  • 対策としては以下のプラグインを入れてバージョンを調整する
  • 自動的にGuest Additionsを更新してくれるプラグインを導入。
  • vagrant plugin install vagrant-vbguest

正常に動いているか確認

  • vagrant環境にて動作確認
  • sudo /etc/init.d/vboxadd setup

動かない場合は以下で対応

最後にマウントされているか確認

$ cd /vagrant
$ ls
vagrantfaile
があればおk