解包流浪盒失败(Unpackaging vagrant box failed)

我将一个流浪的VM打包成一个盒子,我试图在另一台计算机上解压缩所述机器。

它给我以下错误:

盒子无法正确拆包。 请确认您要添加的文件夹没有损坏,然后重试。 尝试解包的输出(如果有):

x ./vagrant_private_key

x ./box-disk1.vmdk:截断的gzip输入

bsdtar:从先前错误延迟的错误退出。

我将盒子打包在Ubuntu系统上,并在尝试在另一个Ubuntu系统以及Windows系统上解包时遇到同样的错误。 有人知道这里的问题吗?

I packaged a vagrant VM into a box and am attempting to unpackage said machine on a different computer.

It gives me the following error:

The box failed to unpackage properly. Please verifty that the box file youŕe tring to add is not corrupted and try again. The output from attempting to unpackage (if any):

x ./vagrant_private_key

x ./box-disk1.vmdk: truncated gzip input

bsdtar: Error exit delayed from previous errors.

I packaged the box on an Ubuntu system and get the same error when trying to unpackage on another Ubuntu system as well as on a Windows system. Does anyone know the problem here?

最满意答案

打包时你可能遇到错误 - 如果你在初始的ubuntu上用完了空间,你就不会有明确的错误信息,但是并没有将所有内容添加到zip中,你在解包时得到这个错误信息

Its possible that you had an error during packaging the box - if you run out of space on the initial ubuntu, you would not have a clear error message but not everything is added to the zip and you get this error message during unpackaging

更多推荐