How to resize partition via command line?
I have Ubuntu installed on a VirtualBox VM.
How can I resize the Linux partition (not the virtual drive)?
I already performed the VM resize using VBoxManage modifyhd to resize the virtual drive, but I need to resize the Linux partition. I do not have a GUI to gparted, so I need to resize the partition from the command line.
command-line partitioning resize
add a comment |
I have Ubuntu installed on a VirtualBox VM.
How can I resize the Linux partition (not the virtual drive)?
I already performed the VM resize using VBoxManage modifyhd to resize the virtual drive, but I need to resize the Linux partition. I do not have a GUI to gparted, so I need to resize the partition from the command line.
command-line partitioning resize
add a comment |
I have Ubuntu installed on a VirtualBox VM.
How can I resize the Linux partition (not the virtual drive)?
I already performed the VM resize using VBoxManage modifyhd to resize the virtual drive, but I need to resize the Linux partition. I do not have a GUI to gparted, so I need to resize the partition from the command line.
command-line partitioning resize
I have Ubuntu installed on a VirtualBox VM.
How can I resize the Linux partition (not the virtual drive)?
I already performed the VM resize using VBoxManage modifyhd to resize the virtual drive, but I need to resize the Linux partition. I do not have a GUI to gparted, so I need to resize the partition from the command line.
command-line partitioning resize
command-line partitioning resize
asked Jun 17 '18 at 2:11
JakeJake
1113
1113
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
If you use LVM:
1) Expand physical volume (sda3 replace by your partition name):
sudo pvresize /dev/sda3
2) Check free space:
sudo vgdisplay
3) Add space to logical volume (VG00/share replace by your LV name):
sudo lvresize –L -r 100G VG00/share
4) Check changes:
sudo lvdisplay
If you don't use LVM:
All below commands work for unmounted partition, so you should boot from another source, for example, from iso (liveCD image).
1) Change partition size: sudo fdisk /dev/sda3
:
- remove old partition (
d
) - create new one, bigger (
n
) - write changes (
w
)
2) Expand file system:
sudo e2fsck -f /dev/sda3
sudo resize2fs /dev/sda3
3) Reboot system, boot as usual.
4) Check partitions:
df
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
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%2faskubuntu.com%2fquestions%2f1047249%2fhow-to-resize-partition-via-command-line%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
If you use LVM:
1) Expand physical volume (sda3 replace by your partition name):
sudo pvresize /dev/sda3
2) Check free space:
sudo vgdisplay
3) Add space to logical volume (VG00/share replace by your LV name):
sudo lvresize –L -r 100G VG00/share
4) Check changes:
sudo lvdisplay
If you don't use LVM:
All below commands work for unmounted partition, so you should boot from another source, for example, from iso (liveCD image).
1) Change partition size: sudo fdisk /dev/sda3
:
- remove old partition (
d
) - create new one, bigger (
n
) - write changes (
w
)
2) Expand file system:
sudo e2fsck -f /dev/sda3
sudo resize2fs /dev/sda3
3) Reboot system, boot as usual.
4) Check partitions:
df
add a comment |
If you use LVM:
1) Expand physical volume (sda3 replace by your partition name):
sudo pvresize /dev/sda3
2) Check free space:
sudo vgdisplay
3) Add space to logical volume (VG00/share replace by your LV name):
sudo lvresize –L -r 100G VG00/share
4) Check changes:
sudo lvdisplay
If you don't use LVM:
All below commands work for unmounted partition, so you should boot from another source, for example, from iso (liveCD image).
1) Change partition size: sudo fdisk /dev/sda3
:
- remove old partition (
d
) - create new one, bigger (
n
) - write changes (
w
)
2) Expand file system:
sudo e2fsck -f /dev/sda3
sudo resize2fs /dev/sda3
3) Reboot system, boot as usual.
4) Check partitions:
df
add a comment |
If you use LVM:
1) Expand physical volume (sda3 replace by your partition name):
sudo pvresize /dev/sda3
2) Check free space:
sudo vgdisplay
3) Add space to logical volume (VG00/share replace by your LV name):
sudo lvresize –L -r 100G VG00/share
4) Check changes:
sudo lvdisplay
If you don't use LVM:
All below commands work for unmounted partition, so you should boot from another source, for example, from iso (liveCD image).
1) Change partition size: sudo fdisk /dev/sda3
:
- remove old partition (
d
) - create new one, bigger (
n
) - write changes (
w
)
2) Expand file system:
sudo e2fsck -f /dev/sda3
sudo resize2fs /dev/sda3
3) Reboot system, boot as usual.
4) Check partitions:
df
If you use LVM:
1) Expand physical volume (sda3 replace by your partition name):
sudo pvresize /dev/sda3
2) Check free space:
sudo vgdisplay
3) Add space to logical volume (VG00/share replace by your LV name):
sudo lvresize –L -r 100G VG00/share
4) Check changes:
sudo lvdisplay
If you don't use LVM:
All below commands work for unmounted partition, so you should boot from another source, for example, from iso (liveCD image).
1) Change partition size: sudo fdisk /dev/sda3
:
- remove old partition (
d
) - create new one, bigger (
n
) - write changes (
w
)
2) Expand file system:
sudo e2fsck -f /dev/sda3
sudo resize2fs /dev/sda3
3) Reboot system, boot as usual.
4) Check partitions:
df
answered Jun 18 '18 at 6:52
NadiaNadia
11
11
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- 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%2faskubuntu.com%2fquestions%2f1047249%2fhow-to-resize-partition-via-command-line%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