1

zulip のセットアップには、Vagrant のセットアップが必要です。 https://github.com/zulip/zulip しかし、Ubuntu 14.04 では失敗します

$vagrant plugin install vagrant-lxc
Installing the 'vagrant-lxc' plugin. This can take a few minutes...
Installed the plugin 'vagrant-lxc (1.2.1)'!


$vagrant up
Failed to load the "vagrant-lxc" plugin. View logs for more details.
Bringing machine 'default' up with 'virtualbox' provider...
There are errors in the configuration of this machine. Please fix
the following errors and try again:
vm:
* The box 'ubuntu/trusty64' could not be found.

何がうまくいかないのでしょうか?

4

1 に答える 1

1

問題はプラグインからではなく、ボックスから発生しているようです。

を使用してボックスをダウンロードできますかvagrant box add ubuntu/trusty64 https://atlas.hashicorp.com/ubuntu/boxes/trusty64

ボックスがインストールされると、実行できるはずですvagrant up

vagrant-lxcまた、通常のubuntuボックスで実行している場合、なぜプラグインが必要なのですか?別のボックスを使用するつもりでしたか?

于 2015-09-30T06:22:27.393 に答える