Chapter 8. VBoxManage
vboxmanage-modifyvm-other
Source: Chapter 8. VBoxManage
vboxmanage-modifyvm-other
Source: Chapter 8. VBoxManage
Describes how to resize a linux virtualbox vdi drive under windows host
Source: How to resize a virtualbox VDI disk under windows | derekmolloy.ie
In most cases to utilise your vm-disk it needs to be dynamic. So if you have preallocated space for your disk then convert it to a dynamic one.
[bash]# make the vm-disk from pre-alloc. to dynamic (-t 0 = dynam. single file)
vmware-vdiskmanager -r sourceDisk.vmdk -t 0 targetDisk.vmdk
# expand the size of a vm-disk
vmware-vdiskmanager -x 40GB myDisk.vmdk
# shrink a vm-disk
vmware-vdiskmanager -k myDisk.vmdk
#You can also rename a vm-disk once you have removed from VMware library
vmware-vdiskmanager -n myDisk.vmdk myNewDisk.vmdk[/bash]
In some cases you might not be able to shrink it, then it is best to use VMware Converter which does the job fine by selecting the partition/volume holding the system and ommit the secondary “larger” partition wich you should have previously repartitioned i.e. PartitionMagic and left only the useful part of the drive.
After QEMU Manager 7.0 installation:
[text]-hda //./PhysicalDrive2[/text]
Note: If the USB doesn’t boot, then you may have something wrong with the MBR. Try deleting
the whole drive and reformat it (make sure the drive is partitioned as “Primary” volume,
because a “Logical” volume will not boot!
Comments