目的
virtual box の バージョン 5.1.20 r114628 にアップデートした際に、
マウントがうまくいかなくなった件ではまったのでメモ。
vagrant up 時の エラー内容
Vagrant was unable to mount VirtualBox shared folders. This is usually
because the filesystem "vboxsf" is not available. This filesystem is
made available via the VirtualBox Guest Additions and kernel module.
Please verify that these guest additions are properly installed in the
guest. This is not a bug in Vagrant and is usually caused by a faulty
Vagrant box. For context, the command attempted was:
mount -t vboxsf -o uid=1000,gid=1000 vagrant /vagrant
The error output from the command was:
mount: wrong fs type, bad option, bad superblock on vagrant,
missing codepage or helper program, or other error
In some cases useful info is found in syslog - try
dmesg | tail or so.
対応方法(ゲストOS)
確認方法
ls -lh /sbin/mount.vboxsf
シンボリックリンクの張り直し。
ln -sf /opt/VBoxGuestAdditions-5.1.20/lib/VBoxGuestAdditions/mount.vboxsf /sbin/mount.vboxsf
参考
書いてて気づいたけど、これと同じ現状だった。
反省。こうゆうのがあるから virtual box のアップデートは様子みてからやる。