だいぶ前にUbuntu 12.04でVagrantを入れてたのですが
久しぶりに動かすとエラー発生
# vagrant status
Vagrant has detected that you have a version of VirtualBox installed
that is not supported. Please install one of the supported versions
listed below to use Vagrant:
4.0, 4.1, 4.2
バージョンみると
# vagrant -v
1.0.2
古そうです
VirtualBoxとVagrantを最新にしてみます
VirtualBoxをapt-getで入れたようなので、消します
# sudo apt-get remove virtualbox
インストールはこちらを参考に
参考) UbuntuにVirtualBoxをインストールする
Vagrantを一旦消します
# rm /usr/bin/vagrant
# rm -rf /opt/vagrant
Vagrantをダウンロードします
http://www.vagrantup.com/downloads.html
UbuntuなのでLINUX(DEB)32bitを選択
インストールします
# dpkg -i vagrant_1.6.3_i686.deb
バージョン確認
# vagrant -v
Vagrant 1.6.3
# vagrant status
current machine status:
default not created
問題無いですね