Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

I use virtualBox version 4.2.6 and I install windows server 2008. the issue is when I was working with this windows a message is displayed said that the capacity of disk is limited. so I want to know if there is a method to increase the disk size. thank

share|improve this question
i try this method : VBoxManage modifyhd YOUR_HARD_DISK.vdi --resize SIZE_IN_MB but it doesn't work – Ellouze Anis Jan 31 at 14:18
2  
please provide the error message you get when you attempt to resize the disk – Steve Jan 31 at 14:21
0%... Progress state: VBOX_E_NOT_SUPPORTED VBoxManage.exe: error: Resize hard disk operation for this format is not implemented yet! – Ellouze Anis Jan 31 at 14:59
I guess VM guest OS is not running – jet Jan 31 at 17:05

2 Answers

It looks like what ever type of file format the disk is stored in does not support resizing using the tool

Resize hard disk operation for this format is not implemented yet!

If the disk was set to Fixed and not dynamic that is probably the issue.

share|improve this answer
the disk is set to dynamic – Ellouze Anis Jan 31 at 15:37
can you paste the full command you are running. – Steve Jan 31 at 15:49
VBoxManage.exe modifyhd "C:\Documents and Settings\user\VirtualBo x VMs\windows\windows.vdi" --resize 40 0%... Progress state: VBOX_E_NOT_SUPPORTED VBoxManage.exe: error: Resize hard disk operation for this format is not implemented yet! – Ellouze Anis Jan 31 at 16:11

Your vdi format does not support resizing. Maybe you could try cloning it to a new, larger vdi, possibly with a format that does support resizing. Have a look at the clonehd option of VBoxManage here http://www.virtualbox.org/manual/ch08.html#vboxmanage-clonevdi

Then you can use the new, larger vdi in your virtual machine.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.