How to resize virtualbox guest storage which is splited
My host is windows 10 and guest is Mint 19 cinnamon 64 bit. When I made this guest I selected my storage size 100 GB, formate VMDK, and split the file in 2 GB. So now I have many .vmdk files such as mint19.vmdk, mint19-s001.vmdk, mint19-s002.vmdk ...... mint19-s0051.vmdk.
Now I would like to resize this to 150 GB. I found many links online. But no link about the split vmdk. Perhaps according to online forum vmdk needs to be converted to vdi format. By the following command:-
vboxmanage clonehd mint19.vmdk "new-virtualdisk.vdi" --format vdi
I tired. It failed by the following output:
0%...10%...20%...30%...
Progress state: VBOX_E_FILE_ERROR
VBoxManage.exe: error: Failed to clone medium
VBoxManage.exe: error: Could not create the clone medium 'C:UserseluihsmVirtualBox VMsmint19new-virtualdisk.vdi' (VERR_DISK_FULL)
VBoxManage.exe: error: Details: code VBOX_E_FILE_ERROR (0x80bb0004), component MediumWrap, interface IMedium
VBoxManage.exe: error: Context: "enum RTEXITCODE __cdecl handleCloneMedium(struct HandlerArg *)" at line 990 of file VBoxManageDisk.cpp
For another try, I try to use one first split file as:
vboxmanage clonehd mint19-s001.vmdk "new-virtualdisk.vdi" --format vdi
It failed immediately. With the following error:
VBoxManage.exe: error: Could not get the storage format of the medium 'C:UserseluihsmVirtualBox VMsmint19mint19-s001.vmdk' (VERR_NOT_SUPPORTED)
VBoxManage.exe: error: Details: code VBOX_E_IPRT_ERROR (0x80bb0005), 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
Also, I tried as admin console and nonadmin console. The same result. Of course, my guest was shut down while trying this process.
So how to resize my storage from 100 GB to 150GB?
virtualbox virtual-machine resizing
add a comment |
My host is windows 10 and guest is Mint 19 cinnamon 64 bit. When I made this guest I selected my storage size 100 GB, formate VMDK, and split the file in 2 GB. So now I have many .vmdk files such as mint19.vmdk, mint19-s001.vmdk, mint19-s002.vmdk ...... mint19-s0051.vmdk.
Now I would like to resize this to 150 GB. I found many links online. But no link about the split vmdk. Perhaps according to online forum vmdk needs to be converted to vdi format. By the following command:-
vboxmanage clonehd mint19.vmdk "new-virtualdisk.vdi" --format vdi
I tired. It failed by the following output:
0%...10%...20%...30%...
Progress state: VBOX_E_FILE_ERROR
VBoxManage.exe: error: Failed to clone medium
VBoxManage.exe: error: Could not create the clone medium 'C:UserseluihsmVirtualBox VMsmint19new-virtualdisk.vdi' (VERR_DISK_FULL)
VBoxManage.exe: error: Details: code VBOX_E_FILE_ERROR (0x80bb0004), component MediumWrap, interface IMedium
VBoxManage.exe: error: Context: "enum RTEXITCODE __cdecl handleCloneMedium(struct HandlerArg *)" at line 990 of file VBoxManageDisk.cpp
For another try, I try to use one first split file as:
vboxmanage clonehd mint19-s001.vmdk "new-virtualdisk.vdi" --format vdi
It failed immediately. With the following error:
VBoxManage.exe: error: Could not get the storage format of the medium 'C:UserseluihsmVirtualBox VMsmint19mint19-s001.vmdk' (VERR_NOT_SUPPORTED)
VBoxManage.exe: error: Details: code VBOX_E_IPRT_ERROR (0x80bb0005), 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
Also, I tried as admin console and nonadmin console. The same result. Of course, my guest was shut down while trying this process.
So how to resize my storage from 100 GB to 150GB?
virtualbox virtual-machine resizing
Possible duplicate of What causes the "Failed to create the hard disk storage" error when creating a new virtual machine?
– Ramhound
Jan 21 at 8:05
You understand this process creates a clone, so not only do you need the space for the original copy, but you need space for the new copy.VERR_DISK_FULL
indicates the physical disk you are trying to create the virtual HDD is full. Any command you perform must be done onmint19.vmdk
– Ramhound
Jan 21 at 8:07
After you make room for the new clone on your disk, you should also use--format VMDK
instead of--format vdi
, no reason to use--format vdi
in a case like this
– Ramhound
Jan 21 at 8:20
add a comment |
My host is windows 10 and guest is Mint 19 cinnamon 64 bit. When I made this guest I selected my storage size 100 GB, formate VMDK, and split the file in 2 GB. So now I have many .vmdk files such as mint19.vmdk, mint19-s001.vmdk, mint19-s002.vmdk ...... mint19-s0051.vmdk.
Now I would like to resize this to 150 GB. I found many links online. But no link about the split vmdk. Perhaps according to online forum vmdk needs to be converted to vdi format. By the following command:-
vboxmanage clonehd mint19.vmdk "new-virtualdisk.vdi" --format vdi
I tired. It failed by the following output:
0%...10%...20%...30%...
Progress state: VBOX_E_FILE_ERROR
VBoxManage.exe: error: Failed to clone medium
VBoxManage.exe: error: Could not create the clone medium 'C:UserseluihsmVirtualBox VMsmint19new-virtualdisk.vdi' (VERR_DISK_FULL)
VBoxManage.exe: error: Details: code VBOX_E_FILE_ERROR (0x80bb0004), component MediumWrap, interface IMedium
VBoxManage.exe: error: Context: "enum RTEXITCODE __cdecl handleCloneMedium(struct HandlerArg *)" at line 990 of file VBoxManageDisk.cpp
For another try, I try to use one first split file as:
vboxmanage clonehd mint19-s001.vmdk "new-virtualdisk.vdi" --format vdi
It failed immediately. With the following error:
VBoxManage.exe: error: Could not get the storage format of the medium 'C:UserseluihsmVirtualBox VMsmint19mint19-s001.vmdk' (VERR_NOT_SUPPORTED)
VBoxManage.exe: error: Details: code VBOX_E_IPRT_ERROR (0x80bb0005), 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
Also, I tried as admin console and nonadmin console. The same result. Of course, my guest was shut down while trying this process.
So how to resize my storage from 100 GB to 150GB?
virtualbox virtual-machine resizing
My host is windows 10 and guest is Mint 19 cinnamon 64 bit. When I made this guest I selected my storage size 100 GB, formate VMDK, and split the file in 2 GB. So now I have many .vmdk files such as mint19.vmdk, mint19-s001.vmdk, mint19-s002.vmdk ...... mint19-s0051.vmdk.
Now I would like to resize this to 150 GB. I found many links online. But no link about the split vmdk. Perhaps according to online forum vmdk needs to be converted to vdi format. By the following command:-
vboxmanage clonehd mint19.vmdk "new-virtualdisk.vdi" --format vdi
I tired. It failed by the following output:
0%...10%...20%...30%...
Progress state: VBOX_E_FILE_ERROR
VBoxManage.exe: error: Failed to clone medium
VBoxManage.exe: error: Could not create the clone medium 'C:UserseluihsmVirtualBox VMsmint19new-virtualdisk.vdi' (VERR_DISK_FULL)
VBoxManage.exe: error: Details: code VBOX_E_FILE_ERROR (0x80bb0004), component MediumWrap, interface IMedium
VBoxManage.exe: error: Context: "enum RTEXITCODE __cdecl handleCloneMedium(struct HandlerArg *)" at line 990 of file VBoxManageDisk.cpp
For another try, I try to use one first split file as:
vboxmanage clonehd mint19-s001.vmdk "new-virtualdisk.vdi" --format vdi
It failed immediately. With the following error:
VBoxManage.exe: error: Could not get the storage format of the medium 'C:UserseluihsmVirtualBox VMsmint19mint19-s001.vmdk' (VERR_NOT_SUPPORTED)
VBoxManage.exe: error: Details: code VBOX_E_IPRT_ERROR (0x80bb0005), 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
Also, I tried as admin console and nonadmin console. The same result. Of course, my guest was shut down while trying this process.
So how to resize my storage from 100 GB to 150GB?
virtualbox virtual-machine resizing
virtualbox virtual-machine resizing
edited Jan 21 at 7:58
Ahmed Ashour
1,3251715
1,3251715
asked Jan 21 at 7:56
masiboomasiboo
1156
1156
Possible duplicate of What causes the "Failed to create the hard disk storage" error when creating a new virtual machine?
– Ramhound
Jan 21 at 8:05
You understand this process creates a clone, so not only do you need the space for the original copy, but you need space for the new copy.VERR_DISK_FULL
indicates the physical disk you are trying to create the virtual HDD is full. Any command you perform must be done onmint19.vmdk
– Ramhound
Jan 21 at 8:07
After you make room for the new clone on your disk, you should also use--format VMDK
instead of--format vdi
, no reason to use--format vdi
in a case like this
– Ramhound
Jan 21 at 8:20
add a comment |
Possible duplicate of What causes the "Failed to create the hard disk storage" error when creating a new virtual machine?
– Ramhound
Jan 21 at 8:05
You understand this process creates a clone, so not only do you need the space for the original copy, but you need space for the new copy.VERR_DISK_FULL
indicates the physical disk you are trying to create the virtual HDD is full. Any command you perform must be done onmint19.vmdk
– Ramhound
Jan 21 at 8:07
After you make room for the new clone on your disk, you should also use--format VMDK
instead of--format vdi
, no reason to use--format vdi
in a case like this
– Ramhound
Jan 21 at 8:20
Possible duplicate of What causes the "Failed to create the hard disk storage" error when creating a new virtual machine?
– Ramhound
Jan 21 at 8:05
Possible duplicate of What causes the "Failed to create the hard disk storage" error when creating a new virtual machine?
– Ramhound
Jan 21 at 8:05
You understand this process creates a clone, so not only do you need the space for the original copy, but you need space for the new copy.
VERR_DISK_FULL
indicates the physical disk you are trying to create the virtual HDD is full. Any command you perform must be done on mint19.vmdk
– Ramhound
Jan 21 at 8:07
You understand this process creates a clone, so not only do you need the space for the original copy, but you need space for the new copy.
VERR_DISK_FULL
indicates the physical disk you are trying to create the virtual HDD is full. Any command you perform must be done on mint19.vmdk
– Ramhound
Jan 21 at 8:07
After you make room for the new clone on your disk, you should also use
--format VMDK
instead of --format vdi
, no reason to use --format vdi
in a case like this– Ramhound
Jan 21 at 8:20
After you make room for the new clone on your disk, you should also use
--format VMDK
instead of --format vdi
, no reason to use --format vdi
in a case like this– Ramhound
Jan 21 at 8:20
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1396509%2fhow-to-resize-virtualbox-guest-storage-which-is-splited%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1396509%2fhow-to-resize-virtualbox-guest-storage-which-is-splited%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Possible duplicate of What causes the "Failed to create the hard disk storage" error when creating a new virtual machine?
– Ramhound
Jan 21 at 8:05
You understand this process creates a clone, so not only do you need the space for the original copy, but you need space for the new copy.
VERR_DISK_FULL
indicates the physical disk you are trying to create the virtual HDD is full. Any command you perform must be done onmint19.vmdk
– Ramhound
Jan 21 at 8:07
After you make room for the new clone on your disk, you should also use
--format VMDK
instead of--format vdi
, no reason to use--format vdi
in a case like this– Ramhound
Jan 21 at 8:20