tizen.moe

tizen.moe

OpenSuSEでvagrant + CoreOS (1)

CoreOS入れてみた。

$ wget https://www.vagrantup.com/downloads/https://dl.bintray.com/mitchellh/vagrant/vagrant_1.6.3_x86_64.rpm
$ sudo rpm -ivh vagrant_1.6.3_x86_64.rpm

取り敢えず公式のrpmを入れたら問題なくインスコ出来ました。

$ git clone https://github.com/coreos/coreos-vagrant/
Cloning into 'coreos-vagrant'...
remote: Counting objects: 288, done.
remote: Total 288 (delta 0), reused 0 (delta 0)
Receiving objects: 100% (288/288), 61.89 KiB, done.
Resolving deltas: 100% (126/126), done.
$ cd coreos-vagrant/
$ vagrant up
The provider 'virtualbox' that was requested to back the machine
'core-01' is reporting that it isn't usable on this system. The
reason is shown below:

Vagrant could not detect VirtualBox! Make sure VirtualBox is properly installed.
Vagrant uses the `VBoxManage` binary that ships with VirtualBox, and requires
this to be available on the PATH. If VirtualBox is installed, please find the
`VBoxManage` binary and add it to the PATH environmental variable.

怒られた。。。VirtualBox入れろとのこと。

$ sudo zypper in virtualbox
moguriso@balthazar:~/work/vagrant/coreos-vagrant$ vagrant up
Bringing machine 'core-01' up with 'virtualbox' provider...
==> core-01: Box 'coreos-alpha' could not be found. Attempting to find and install...
    core-01: Box Provider: virtualbox
    core-01: Box Version: >= 308.0.1

無事進んでるみたい。あ、NGになった。再起動してみる。

再起動してもNG。どうも vboxadd.service がfailしているっぽいが、まあそれはいいや。個人的にmd.serviceがfailしてるほうが気にならなくもない。。。

git cloneしなおして見たら終わりそうにないので一旦帰ろう・・・

via CoreOS を使って docker を体験した - ようへいの日々精進 XP