vagrant+vitrulbox配置问题

原文网址:https://github.com/mitchellh/vagrant/issues/5933

重点注意:window系统下,环境变量中不要过多的配置一些无用的程序,会引发一些不必要的奇葩错误。

window 7 操作系统:

昨天安装了make、cmake软件后,vagrant无法正常启动(错误忘了)最初的错误是由于环境变量中,cmake的配置在vagrant前面,vagrant中有一些指令貌似与cmake的重名,导致无法正常执行vagrant。发现vagrant与virtualbox之前大多数问题,都是由两者之间版本不兼容所引发的的。

处理到最后,执行vagrant up出现以下错误

The following SSH command responded with a non-zero exit status.
Vagrant assumes that this means the command failed!

chown `id -u vagrant`:`id -g vagrant` /vagrant

Stdout from the command:



Stderr from the command:

stdin: is not a tty
chown: changing ownership of ���/vagrant���: Not a directory

本地正常使用版本    vagrant: 1.9.1 virtualbox5.1.0(5.2以上版本会出现)

你可能感兴趣的:(虚拟机相关)