如何在全新安装的 Ubuntu 17.04 上恢复主路径上丢失的基本文件夹?

如何在全新安装的 Ubuntu 17.04 上恢复主路径上丢失的基本文件夹?

我尝试在安装了 Virtual Box 和 Vagrant 的新安装的 Ubuntu 17.04 上运行vagrant initvagrant up但输出vagrant up是:

Bringing machine 'default' up with 'virtualbox' provider...
==> default: Box 'base' could not be found. Attempting to find and install...
default: Box Provider: virtualbox
default: Box Version: >= 0
==> default: Box file was not detected as metadata. Adding it directly...
==> default: Adding box 'base' (v0) for provider: virtualbox
default: Downloading: base
An error occurred while downloading the remote file. The error
message, if any, is reproduced below. Please fix this error and try
again.

Couldn't open file /home/james/base

答案1

不要做vagrant,但从这里它表明你的命令应该是这样的:

vagrant init hashicorp/precise32

不是

vagrant init

因此,您缺少一个box名称,请将其更改为您想要设置的名称。

答案2

啊,我知道为什么它不起作用。我没有为 指定任何内容vagrant init

这似乎有效:

vagrant init ubuntu/zesty64
vagrant up

是的,乔治也认识到了这个错误。

相关内容