Vagrant 无法调出添加了参数--name的漫游框图像

Vagrant 无法调出添加了参数--name的漫游框图像,vagrant,Vagrant,我直接使用URL下载了Vagrant box图像,然后使用--name选项添加它们,如下所示 C:\Users\vnathan>vagrant box add --name monasca c:\Users\vnathan\.vagrant\machines\monasca\devstack\virtualbox\devstack-0.1.3.box 我可以看到包含vmdk文件、manifest.json文件、Vagrantfile、OVA文件的目录。 在目录C:\Users\v

我直接使用URL下载了Vagrant box图像,然后使用--name选项添加它们,如下所示

    C:\Users\vnathan>vagrant box add --name monasca c:\Users\vnathan\.vagrant\machines\monasca\devstack\virtualbox\devstack-0.1.3.box
我可以看到包含vmdk文件、manifest.json文件、Vagrantfile、OVA文件的目录。 在目录C:\Users\vnathan.vagrant.d\box\monasca\0\virtualbox下

我能够在跑步时查看添加框的列表

       C:\Users\vnathan>vagrant box list
       monasca (virtualbox, 0)
但在运行“流浪者上升”命令时,我无法打开“流浪者”框

      C:\Users\vnathan>vagrant up monasca
      The machine with the name 'monasca' was not found configured for this Vagrant environment.
我更新了主文件中的
config.vm.box=“monasca”
,但仍然无法启动该实例


请让我知道我应该做些什么来启动这个盒子。提前感谢。

谢谢宝马;我在浏览一些网站时尝试了以下步骤,最终我能够在vagrant中添加monasca box,但VirtualBox无法导入图像;我现在需要深入研究来解决这个问题

C:\Users\vnathan>vagrant status
Current machine states:

     default                   not created (virtualbox)

     The environment has not yet been created. Run `vagrant up` to
     create the environment. If a machine is not created, only the
     default provider will be shown. So if a provider is not listed,
     then the machine is not created for that environment.
论流浪汉的崛起

C:\Users\vnathan>vagrant up
Bringing machine 'default' up with 'virtualbox' provider...
==> default: Importing base box 'monasca'...
There was an error while executing `VBoxManage`, a CLI used by Vagrant
for controlling VirtualBox. The command and stderr is shown below.

Command: ["import", "C:/Users/vnathan/.vagrant.d/boxes/monasca/0/virtualbox/box.
ovf", "--vsys", "0", "--vmname", "ds-build_devstack_1412364613065_73348_14187919
33520_71376", "--vsys", "0", "--unit", "7", "--disk", "C:\\Users\\vnathan\\Virtu
alBox VMs\\ds-build_devstack_1412364613065_73348_1418791933520_71376\\box-disk1.
vmdk"]

Stderr: 0%...10%...20%...30%...40%...50%...60%...70%...80%...90%...100%
Interpreting C:\Users\vnathan\.vagrant.d\boxes\monasca\0\virtualbox\box.ovf...
OK.
0%...
Progress state: VBOX_E_FILE_ERROR
VBoxManage.exe: error: Appliance import failed
VBoxManage.exe: error: Could not create the clone medium 'C:\Users\vnathan\Virtu
alBox VMs\ds-build_devstack_1412364613065_73348_1418791933520_71376\box-disk1.vm
dk'.
VBoxManage.exe: error: VMDK: Compressed image is corrupted 'C:\Users\vnathan\.va
grant.d\boxes\monasca\0\virtualbox\box-disk1.vmdk' (VERR_ZIP_CORRUPTED)
VBoxManage.exe: error: Details: code VBOX_E_FILE_ERROR (0x80bb0004), component A
ppliance, interface IAppliance
VBoxManage.exe: error: Context: "int __cdecl handleImportAppliance(struct Handle
rArg *)" at line 779 of file VBoxManageAppliance.cpp

框设置正确,请给我看
vagrant文件
,我想里面有问题。