我已经开始使用 Vagrant。我在重新启动虚拟机时遇到了一些问题。我的流浪文件是:
Vagrant.configure("2") do |config
config.vm.box = "precise32"
config.vm.box_url = "http://files.vagrantup.com/precise32.box"
我通过 Vagrant SSH 打开 SSH。现在,如果我"sudo reboot"
关闭与 VM 的连接。我得到以下信息:
vagrant@precise32:~$ sudo reboot
vagrant@precise32:~$
Broadcast message from vagrant@precise32
(/dev/pts/0) at 9:43 ...
The system is going down for reboot NOW!
Connection to 127.0.0.1 closed by remote host.
Connection to 127.0.0.1 closed.
如何解决这个问题?为什么会这样?