How do I expand the root's volume size?





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







4















I have Ubuntu Server 18.04 LTS running off a 16GB SanDisk USB pendrive in my server. From what I can remember, when I installed Ubuntu on there I had enabled LVM support. For some reason, when I ssh into my server, it says / is using 99.6% of 3.87GB, but doing sudo fdisk -l /dev/sdm says:



Disk /dev/sdm: 14.6 GiB, 15664676864 bytes, 30595072 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: 7DF91AEG-9DE1-43B2-A7C7-EB564B51FEB2

Device Start End Sectors Size Type
/dev/sdm1 2048 4095 2048 1M BIOS boot
/dev/sdm2 4096 2101247 2097152 1G Linux filesystem
/dev/sdm3 2101248 30593023 28491776 13.6G Linux filesystem


And output from (parted) print with /dev/sdm selected gives me:



Model: SanDisk Cruzer Glide (scsi)
Disk /dev/sdm: 15.7GB
Sector size (logical/physical): 512B/512B
Partition Table: gpt
Disk Flags:

Number Start End Size File system Name Flags
1 1049kB 2097kB 1049kB bios_grub
2 2097kB 1076MB 1074MB ext4
3 1076MB 15.7GB 14.6GB


Running sudo df -h gives me:



Filesystem                         Size  Used Avail Use% Mounted on
udev 12G 0 12G 0% /dev
tmpfs 2.4G 241M 2.2G 10% /run
/dev/mapper/ubuntu--vg-ubuntu--lv 3.9G 3.9G 0 100% /
tmpfs 12G 0 12G 0% /dev/shm
tmpfs 5.0M 0 5.0M 0% /run/lock
tmpfs 12G 0 12G 0% /sys/fs/cgroup
/dev/loop0 90M 90M 0 100% /snap/core/6034
/dev/loop1 90M 90M 0 100% /snap/core/6130
/dev/sdm2 976M 155M 755M 17% /boot
tmpfs 2.4G 0 2.4G 0% /run/user/1000
/dev/loop3 92M 92M 0 100% /snap/core/6259


I have left out my ZFS volume above, as it's unnecessary to include it.



Running sudo vgs gives me:



  VG        #PV #LV #SN Attr   VSize  VFree
ubuntu-vg 1 1 0 wz--n- 13.58g 9.58g


And, lastly, running sudo lvs gives me:



  LV        VG        Attr       LSize Pool Origin Data%  Meta%  Move Log Cpy%Sync Convert
ubuntu-lv ubuntu-vg -wi-ao---- 4.00g


/dev/sdm is my root drive by the way. Any insight to this would be helpful. I do have ZFS installed managing other disks, but / is ext3 or 4.



One other thing to note is that I have LVM enabled because if my USB drive were to ever go bad I wanted to be able to restore the data to a new drive, whether it is smaller or larger than 16GB, and utilize the whole disk.










share|improve this question

























  • Found out that the journal logs were taking up about ~290MB. purging them using sudo journalctl --vacuum-time=2d gave me enough free space to perform the actions Michael suggested.

    – leetbacoon
    Feb 10 at 3:19




















4















I have Ubuntu Server 18.04 LTS running off a 16GB SanDisk USB pendrive in my server. From what I can remember, when I installed Ubuntu on there I had enabled LVM support. For some reason, when I ssh into my server, it says / is using 99.6% of 3.87GB, but doing sudo fdisk -l /dev/sdm says:



Disk /dev/sdm: 14.6 GiB, 15664676864 bytes, 30595072 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: 7DF91AEG-9DE1-43B2-A7C7-EB564B51FEB2

Device Start End Sectors Size Type
/dev/sdm1 2048 4095 2048 1M BIOS boot
/dev/sdm2 4096 2101247 2097152 1G Linux filesystem
/dev/sdm3 2101248 30593023 28491776 13.6G Linux filesystem


And output from (parted) print with /dev/sdm selected gives me:



Model: SanDisk Cruzer Glide (scsi)
Disk /dev/sdm: 15.7GB
Sector size (logical/physical): 512B/512B
Partition Table: gpt
Disk Flags:

Number Start End Size File system Name Flags
1 1049kB 2097kB 1049kB bios_grub
2 2097kB 1076MB 1074MB ext4
3 1076MB 15.7GB 14.6GB


Running sudo df -h gives me:



Filesystem                         Size  Used Avail Use% Mounted on
udev 12G 0 12G 0% /dev
tmpfs 2.4G 241M 2.2G 10% /run
/dev/mapper/ubuntu--vg-ubuntu--lv 3.9G 3.9G 0 100% /
tmpfs 12G 0 12G 0% /dev/shm
tmpfs 5.0M 0 5.0M 0% /run/lock
tmpfs 12G 0 12G 0% /sys/fs/cgroup
/dev/loop0 90M 90M 0 100% /snap/core/6034
/dev/loop1 90M 90M 0 100% /snap/core/6130
/dev/sdm2 976M 155M 755M 17% /boot
tmpfs 2.4G 0 2.4G 0% /run/user/1000
/dev/loop3 92M 92M 0 100% /snap/core/6259


I have left out my ZFS volume above, as it's unnecessary to include it.



Running sudo vgs gives me:



  VG        #PV #LV #SN Attr   VSize  VFree
ubuntu-vg 1 1 0 wz--n- 13.58g 9.58g


And, lastly, running sudo lvs gives me:



  LV        VG        Attr       LSize Pool Origin Data%  Meta%  Move Log Cpy%Sync Convert
ubuntu-lv ubuntu-vg -wi-ao---- 4.00g


/dev/sdm is my root drive by the way. Any insight to this would be helpful. I do have ZFS installed managing other disks, but / is ext3 or 4.



One other thing to note is that I have LVM enabled because if my USB drive were to ever go bad I wanted to be able to restore the data to a new drive, whether it is smaller or larger than 16GB, and utilize the whole disk.










share|improve this question

























  • Found out that the journal logs were taking up about ~290MB. purging them using sudo journalctl --vacuum-time=2d gave me enough free space to perform the actions Michael suggested.

    – leetbacoon
    Feb 10 at 3:19
















4












4








4


1






I have Ubuntu Server 18.04 LTS running off a 16GB SanDisk USB pendrive in my server. From what I can remember, when I installed Ubuntu on there I had enabled LVM support. For some reason, when I ssh into my server, it says / is using 99.6% of 3.87GB, but doing sudo fdisk -l /dev/sdm says:



Disk /dev/sdm: 14.6 GiB, 15664676864 bytes, 30595072 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: 7DF91AEG-9DE1-43B2-A7C7-EB564B51FEB2

Device Start End Sectors Size Type
/dev/sdm1 2048 4095 2048 1M BIOS boot
/dev/sdm2 4096 2101247 2097152 1G Linux filesystem
/dev/sdm3 2101248 30593023 28491776 13.6G Linux filesystem


And output from (parted) print with /dev/sdm selected gives me:



Model: SanDisk Cruzer Glide (scsi)
Disk /dev/sdm: 15.7GB
Sector size (logical/physical): 512B/512B
Partition Table: gpt
Disk Flags:

Number Start End Size File system Name Flags
1 1049kB 2097kB 1049kB bios_grub
2 2097kB 1076MB 1074MB ext4
3 1076MB 15.7GB 14.6GB


Running sudo df -h gives me:



Filesystem                         Size  Used Avail Use% Mounted on
udev 12G 0 12G 0% /dev
tmpfs 2.4G 241M 2.2G 10% /run
/dev/mapper/ubuntu--vg-ubuntu--lv 3.9G 3.9G 0 100% /
tmpfs 12G 0 12G 0% /dev/shm
tmpfs 5.0M 0 5.0M 0% /run/lock
tmpfs 12G 0 12G 0% /sys/fs/cgroup
/dev/loop0 90M 90M 0 100% /snap/core/6034
/dev/loop1 90M 90M 0 100% /snap/core/6130
/dev/sdm2 976M 155M 755M 17% /boot
tmpfs 2.4G 0 2.4G 0% /run/user/1000
/dev/loop3 92M 92M 0 100% /snap/core/6259


I have left out my ZFS volume above, as it's unnecessary to include it.



Running sudo vgs gives me:



  VG        #PV #LV #SN Attr   VSize  VFree
ubuntu-vg 1 1 0 wz--n- 13.58g 9.58g


And, lastly, running sudo lvs gives me:



  LV        VG        Attr       LSize Pool Origin Data%  Meta%  Move Log Cpy%Sync Convert
ubuntu-lv ubuntu-vg -wi-ao---- 4.00g


/dev/sdm is my root drive by the way. Any insight to this would be helpful. I do have ZFS installed managing other disks, but / is ext3 or 4.



One other thing to note is that I have LVM enabled because if my USB drive were to ever go bad I wanted to be able to restore the data to a new drive, whether it is smaller or larger than 16GB, and utilize the whole disk.










share|improve this question
















I have Ubuntu Server 18.04 LTS running off a 16GB SanDisk USB pendrive in my server. From what I can remember, when I installed Ubuntu on there I had enabled LVM support. For some reason, when I ssh into my server, it says / is using 99.6% of 3.87GB, but doing sudo fdisk -l /dev/sdm says:



Disk /dev/sdm: 14.6 GiB, 15664676864 bytes, 30595072 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: 7DF91AEG-9DE1-43B2-A7C7-EB564B51FEB2

Device Start End Sectors Size Type
/dev/sdm1 2048 4095 2048 1M BIOS boot
/dev/sdm2 4096 2101247 2097152 1G Linux filesystem
/dev/sdm3 2101248 30593023 28491776 13.6G Linux filesystem


And output from (parted) print with /dev/sdm selected gives me:



Model: SanDisk Cruzer Glide (scsi)
Disk /dev/sdm: 15.7GB
Sector size (logical/physical): 512B/512B
Partition Table: gpt
Disk Flags:

Number Start End Size File system Name Flags
1 1049kB 2097kB 1049kB bios_grub
2 2097kB 1076MB 1074MB ext4
3 1076MB 15.7GB 14.6GB


Running sudo df -h gives me:



Filesystem                         Size  Used Avail Use% Mounted on
udev 12G 0 12G 0% /dev
tmpfs 2.4G 241M 2.2G 10% /run
/dev/mapper/ubuntu--vg-ubuntu--lv 3.9G 3.9G 0 100% /
tmpfs 12G 0 12G 0% /dev/shm
tmpfs 5.0M 0 5.0M 0% /run/lock
tmpfs 12G 0 12G 0% /sys/fs/cgroup
/dev/loop0 90M 90M 0 100% /snap/core/6034
/dev/loop1 90M 90M 0 100% /snap/core/6130
/dev/sdm2 976M 155M 755M 17% /boot
tmpfs 2.4G 0 2.4G 0% /run/user/1000
/dev/loop3 92M 92M 0 100% /snap/core/6259


I have left out my ZFS volume above, as it's unnecessary to include it.



Running sudo vgs gives me:



  VG        #PV #LV #SN Attr   VSize  VFree
ubuntu-vg 1 1 0 wz--n- 13.58g 9.58g


And, lastly, running sudo lvs gives me:



  LV        VG        Attr       LSize Pool Origin Data%  Meta%  Move Log Cpy%Sync Convert
ubuntu-lv ubuntu-vg -wi-ao---- 4.00g


/dev/sdm is my root drive by the way. Any insight to this would be helpful. I do have ZFS installed managing other disks, but / is ext3 or 4.



One other thing to note is that I have LVM enabled because if my USB drive were to ever go bad I wanted to be able to restore the data to a new drive, whether it is smaller or larger than 16GB, and utilize the whole disk.







ubuntu filesystems lvm zfs ubuntu-18.04






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Feb 10 at 2:48







leetbacoon

















asked Feb 10 at 1:04









leetbacoonleetbacoon

235




235













  • Found out that the journal logs were taking up about ~290MB. purging them using sudo journalctl --vacuum-time=2d gave me enough free space to perform the actions Michael suggested.

    – leetbacoon
    Feb 10 at 3:19





















  • Found out that the journal logs were taking up about ~290MB. purging them using sudo journalctl --vacuum-time=2d gave me enough free space to perform the actions Michael suggested.

    – leetbacoon
    Feb 10 at 3:19



















Found out that the journal logs were taking up about ~290MB. purging them using sudo journalctl --vacuum-time=2d gave me enough free space to perform the actions Michael suggested.

– leetbacoon
Feb 10 at 3:19







Found out that the journal logs were taking up about ~290MB. purging them using sudo journalctl --vacuum-time=2d gave me enough free space to perform the actions Michael suggested.

– leetbacoon
Feb 10 at 3:19












1 Answer
1






active

oldest

votes


















5














As you can see, there's about 9.58 GiB free in your volume group, so that's how much space you can add to the logical volume.



First, you can use lvextend to extend the size of the logical volume, to fill up the remaining space:



sudo lvextend --extents +100%FREE /dev/mapper/ubuntu--vg-ubuntu--lv


Now, you can resize the filesystem in that logical volume.



sudo resize2fs /dev/mapper/ubuntu--vg-ubuntu--lv


Finally, you can see the end result:



sudo df -h /





share|improve this answer
























  • Thank you, but I tried sudo lvextend --extents +100%FREE /dev/mapper/ubuntu--vg-ubuntu--lv and it says: /etc/lvm/archive/.lvm_ubuntu-server_21283_417376161: write error failed: No space left on device

    – leetbacoon
    Feb 10 at 3:01













  • @leetbacoon Yes, you do need at least a tiny bit of free space available to complete this. You should delete some files you don't need, such as old logs or whatever.

    – Michael Hampton
    Feb 10 at 3:02












Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "2"
};
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
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f953174%2fhow-do-i-expand-the-roots-volume-size%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









5














As you can see, there's about 9.58 GiB free in your volume group, so that's how much space you can add to the logical volume.



First, you can use lvextend to extend the size of the logical volume, to fill up the remaining space:



sudo lvextend --extents +100%FREE /dev/mapper/ubuntu--vg-ubuntu--lv


Now, you can resize the filesystem in that logical volume.



sudo resize2fs /dev/mapper/ubuntu--vg-ubuntu--lv


Finally, you can see the end result:



sudo df -h /





share|improve this answer
























  • Thank you, but I tried sudo lvextend --extents +100%FREE /dev/mapper/ubuntu--vg-ubuntu--lv and it says: /etc/lvm/archive/.lvm_ubuntu-server_21283_417376161: write error failed: No space left on device

    – leetbacoon
    Feb 10 at 3:01













  • @leetbacoon Yes, you do need at least a tiny bit of free space available to complete this. You should delete some files you don't need, such as old logs or whatever.

    – Michael Hampton
    Feb 10 at 3:02
















5














As you can see, there's about 9.58 GiB free in your volume group, so that's how much space you can add to the logical volume.



First, you can use lvextend to extend the size of the logical volume, to fill up the remaining space:



sudo lvextend --extents +100%FREE /dev/mapper/ubuntu--vg-ubuntu--lv


Now, you can resize the filesystem in that logical volume.



sudo resize2fs /dev/mapper/ubuntu--vg-ubuntu--lv


Finally, you can see the end result:



sudo df -h /





share|improve this answer
























  • Thank you, but I tried sudo lvextend --extents +100%FREE /dev/mapper/ubuntu--vg-ubuntu--lv and it says: /etc/lvm/archive/.lvm_ubuntu-server_21283_417376161: write error failed: No space left on device

    – leetbacoon
    Feb 10 at 3:01













  • @leetbacoon Yes, you do need at least a tiny bit of free space available to complete this. You should delete some files you don't need, such as old logs or whatever.

    – Michael Hampton
    Feb 10 at 3:02














5












5








5







As you can see, there's about 9.58 GiB free in your volume group, so that's how much space you can add to the logical volume.



First, you can use lvextend to extend the size of the logical volume, to fill up the remaining space:



sudo lvextend --extents +100%FREE /dev/mapper/ubuntu--vg-ubuntu--lv


Now, you can resize the filesystem in that logical volume.



sudo resize2fs /dev/mapper/ubuntu--vg-ubuntu--lv


Finally, you can see the end result:



sudo df -h /





share|improve this answer













As you can see, there's about 9.58 GiB free in your volume group, so that's how much space you can add to the logical volume.



First, you can use lvextend to extend the size of the logical volume, to fill up the remaining space:



sudo lvextend --extents +100%FREE /dev/mapper/ubuntu--vg-ubuntu--lv


Now, you can resize the filesystem in that logical volume.



sudo resize2fs /dev/mapper/ubuntu--vg-ubuntu--lv


Finally, you can see the end result:



sudo df -h /






share|improve this answer












share|improve this answer



share|improve this answer










answered Feb 10 at 2:56









Michael HamptonMichael Hampton

174k27319644




174k27319644













  • Thank you, but I tried sudo lvextend --extents +100%FREE /dev/mapper/ubuntu--vg-ubuntu--lv and it says: /etc/lvm/archive/.lvm_ubuntu-server_21283_417376161: write error failed: No space left on device

    – leetbacoon
    Feb 10 at 3:01













  • @leetbacoon Yes, you do need at least a tiny bit of free space available to complete this. You should delete some files you don't need, such as old logs or whatever.

    – Michael Hampton
    Feb 10 at 3:02



















  • Thank you, but I tried sudo lvextend --extents +100%FREE /dev/mapper/ubuntu--vg-ubuntu--lv and it says: /etc/lvm/archive/.lvm_ubuntu-server_21283_417376161: write error failed: No space left on device

    – leetbacoon
    Feb 10 at 3:01













  • @leetbacoon Yes, you do need at least a tiny bit of free space available to complete this. You should delete some files you don't need, such as old logs or whatever.

    – Michael Hampton
    Feb 10 at 3:02

















Thank you, but I tried sudo lvextend --extents +100%FREE /dev/mapper/ubuntu--vg-ubuntu--lv and it says: /etc/lvm/archive/.lvm_ubuntu-server_21283_417376161: write error failed: No space left on device

– leetbacoon
Feb 10 at 3:01







Thank you, but I tried sudo lvextend --extents +100%FREE /dev/mapper/ubuntu--vg-ubuntu--lv and it says: /etc/lvm/archive/.lvm_ubuntu-server_21283_417376161: write error failed: No space left on device

– leetbacoon
Feb 10 at 3:01















@leetbacoon Yes, you do need at least a tiny bit of free space available to complete this. You should delete some files you don't need, such as old logs or whatever.

– Michael Hampton
Feb 10 at 3:02





@leetbacoon Yes, you do need at least a tiny bit of free space available to complete this. You should delete some files you don't need, such as old logs or whatever.

– Michael Hampton
Feb 10 at 3:02


















draft saved

draft discarded




















































Thanks for contributing an answer to Server Fault!


  • 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.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f953174%2fhow-do-i-expand-the-roots-volume-size%23new-answer', 'question_page');
}
);

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







Popular posts from this blog

Human spaceflight

Can not write log (Is /dev/pts mounted?) - openpty in Ubuntu-on-Windows?

File:DeusFollowingSea.jpg