1

我正在使用以下命令在 ubuntu 14.04 上创建 tessel 2 虚拟机并出现错误

t2-vm create

我收到以下错误消息

Downloading image...
downloaded ...
Creating VM...
VBoxManage: error: Could not get the storage format of the medium '/home/haider/.tessel/vm.vdi' (VERR_NOT_SUPPORTED)
VBoxManage: error: Details: code VBOX_E_IPRT_ERROR (0x80bb0005), component MediumWrap, interface IMedium, callee nsISupports
VBoxManage: error: Context: "OpenMedium(Bstr(pszFilenameOrUuid).raw(), enmDevType, enmAccessMode, fForceNewUuidOnOpen, pMedium.asOutParam())" at line 178 of file VBoxManageDisk.cpp
VBoxManage: error: Invalid UUID or filename "/home/haider/.tessel/vm.vdi"
Unhandled rejection Error: 1
    at Object.ensureErrorObject (/home/haider/.npm-global/lib/node_modules/t2-vm/node_modules/bluebird/js/main/util.js:261:20)
    at Promise._rejectCallback (/home/haider/.npm-global/lib/node_modules/t2-vm/node_modules/bluebird/js/main/promise.js:472:22)
    at /home/haider/.npm-global/lib/node_modules/t2-vm/node_modules/bluebird/js/main/promise.js:489:17
    at ChildProcess.<anonymous> (/home/haider/.npm-global/lib/node_modules/t2-vm/etc.js:47:14)
    at emitTwo (events.js:87:13)
    at ChildProcess.emit (events.js:172:7)
    at Process.ChildProcess._handle.onexit (internal/child_process.js:211:12)

我已经安装了所有先决条件,包括 nodejs、tessel-cli、tessel usb 规则、虚拟盒及其扩展包。版本如下

$ nodejs -v
v4.8.4
$ vboxmanage -v
5.0.40r115130
4

1 回答 1

0

该行表示不支持该版本:

VBoxManage: error: Could not get the storage format of the medium '/home/haider/.tessel/vm.vdi' (VERR_NOT_SUPPORTED)

事实上你的 VBox 版本是 5.0.40r115130 而实际版本是 5.1.26,在安装 Tessel 之前尝试更新你的版本。

如果您有文件,您也可以尝试检查文件的 MD5 签名。

于 2017-08-11T08:35:10.817 回答