我想增加虚拟机的大小。读完这些
https://stackoverflow.com/questions/11659005/how-to-resize-a-virtualbox-vmdk-file
如何在 Windows 中使用 modifyhd 命令更改固定大小的 VDI?
我将 vmdk 文件克隆到了 vdi 中。但是,在使用
VBoxManage.exe modifyhd cloned.vdi --resize 102400
我收到了错误消息
VBoxManage.exe: error: Could not find file for the medium 'C:\Program Files\Oracle\VirtualBox\cloned.vdi' (VERR_FILE_NOT_FOUND)
VBoxManage.exe: error: Details: code VBOX_E_FILE_ERROR (0x80bb0004), component MediumWrap, interface IMedium, callee IUnknown
VBoxManage.exe: error: Context: "OpenMedium(Bstr(pszFilenameOrUuid).raw(), enmDevType, enmAccessMode, fForceNewUuidOnOpen, pMedium.asOutParam())" at line 179 of file VBoxManageDisk.cpp
我该如何继续?
答案1
您应该执行以下操作:
VBoxManage.exe modifyhd "%UserProfile%\VirtualBox VMs\<VM name>\<VM name>.vdi" --resize 102400
%UserProfile%
是C:\Users\<name>
- 替换
<VM name>
为您的虚拟机的名称。