プログラマーの調べ物

プログラマーが調べ物をするときに役に立つサイトを作ります。

CentOS7にVagrantをインストール

まずはVirtualBoxをインストー

標準リポジトリにはVirtualBoxは含まれていないため、VirtualBoxコミュニティが公式に提供しているリポジトリからインストールする。

# yum install epel-release

# cd /etc/yum.repos.d
# wget http://download.virtualbox.org/virtualbox/rpm/rhel/virtualbox.repo
# yum --enablerepo=epel install dkms
# yum -y groupinstall "Development Tools"
# yum -y install kernel-devel
# yum -y install VirtualBox-5.1

DKMSはLinuxカーネルがアップデートされた場合にカーネルモジュールをリビルドして実行してくれるフレームワーク

Vagrantをインストー

以下のコマンドでvagrantをインストー

# yum install https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1_x86_64.rpm

無事にインストール完了。

# vagrant -v
Vagrant 1.8.1