2017-08-10 9 views
1

私は私がすべてインストールされている次のエラーメッセージTessel 2仮想マシンの作成エラー

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) 

を取得しています次のコマンドを使用して、Ubuntuの14.04でtessel 2仮想マシンを作成し、エラー

t2-vm create 

を取得していますnodejs、tessel-cli、tessel usbルール、バーチャルボックス、およびその拡張パックを含む前提条件。

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

答えて

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署名をチェックすることもできます。

+0

VBoxを5.1.26にアップデートしましたが、同じエラーが発生します。私はどのファイルのMD5署名をチェックする必要がありますか? – akkas

+0

vm.vdiファイルのMD5を 'md5sum/home/haider/.tessel/vm.vdi'でチェックする必要があります。 しかし、あなたはハッシュリファレンスを知っている必要があり、私はあなたがそれを持っているかわからない。 – Guillaume

関連する問題