Comments on: How to Create LVM Partition Step-by-Step in Linux https://www.linuxtechi.com/how-to-create-lvm-partition-in-linux/ Wed, 13 Sep 2023 09:28:06 +0000 hourly 1 By: Pravin Teche https://www.linuxtechi.com/how-to-create-lvm-partition-in-linux/#comment-58391 Wed, 13 Sep 2023 09:28:06 +0000 https://www.linuxtechi.com/?p=14911#comment-58391 Perfect Document !! Thanks

]]>
By: Pradeep Kumar https://www.linuxtechi.com/how-to-create-lvm-partition-in-linux/#comment-56591 Sun, 30 Jul 2023 05:11:40 +0000 https://www.linuxtechi.com/?p=14911#comment-56591 In reply to hamim.

when you see “0 0” or “1 0” at the end of an /etc/fstab entry, it indicates the dump and pass fields respectively. The values “0 0” mean that the file system will not be dumped (backed up) and will not be checked during the boot process. The values “1 0” would mean that the file system will be dumped and checked first during the boot process. However, as mentioned earlier, the dump field is rarely used nowadays, and the pass field is typically set to 0 for most non-root file systems.

]]>
By: Joseph Spenner https://www.linuxtechi.com/how-to-create-lvm-partition-in-linux/#comment-55890 Fri, 14 Jul 2023 20:23:56 +0000 https://www.linuxtechi.com/?p=14911#comment-55890 When doing:
# mkfs.ext4 /dev/volgrp01/lv01
I recommend using the -m0 option:

# mkfs.ext4 -m0 /dev/volgrp01/lv01

Otherwise, 5% of the disk will be reserved for super-user. This isn’t usually necessary on filesystems other than the / root. The m0 says to reserve no space for the super-user on that partition.

]]>
By: Ganesan https://www.linuxtechi.com/how-to-create-lvm-partition-in-linux/#comment-55596 Wed, 05 Jul 2023 12:52:17 +0000 https://www.linuxtechi.com/?p=14911#comment-55596 Thank you for the excellent step-by-step procedure.

]]>
By: Pradeep Kumar https://www.linuxtechi.com/how-to-create-lvm-partition-in-linux/#comment-55486 Sun, 02 Jul 2023 02:12:49 +0000 https://www.linuxtechi.com/?p=14911#comment-55486 In reply to Ploed.

Hi ,

Yes, you can add the new PV to the existing VG vg0 and then you can extend the size of LV.

# vgextend volume-group new-disk
# vgextend vg0 /dev/sdb

]]>
By: Ploed https://www.linuxtechi.com/how-to-create-lvm-partition-in-linux/#comment-55455 Sat, 01 Jul 2023 06:12:33 +0000 https://www.linuxtechi.com/?p=14911#comment-55455 I already have a VG which I did when installing Debian, with the name vg0 (Which is a Raid 0 NVMe)

Now I have another HDD, want to use it for saving big files. I created the PV, but I’m unsure if about the VG naming, should I use vg0 or name it vg1.

Is it even possible to increase the LV size on vg0 with vg1?

]]>
By: Lounis https://www.linuxtechi.com/how-to-create-lvm-partition-in-linux/#comment-54437 Mon, 05 Jun 2023 12:13:30 +0000 https://www.linuxtechi.com/?p=14911#comment-54437 efficient and very useful, thank you

]]>
By: Lucian https://www.linuxtechi.com/how-to-create-lvm-partition-in-linux/#comment-54214 Wed, 31 May 2023 13:15:34 +0000 https://www.linuxtechi.com/?p=14911#comment-54214 this article and procedure is perfect

]]>
By: Rahul https://www.linuxtechi.com/how-to-create-lvm-partition-in-linux/#comment-51150 Fri, 31 Mar 2023 05:55:10 +0000 https://www.linuxtechi.com/?p=14911#comment-51150 Perfect

]]>
By: hamim https://www.linuxtechi.com/how-to-create-lvm-partition-in-linux/#comment-50548 Wed, 15 Mar 2023 13:35:06 +0000 https://www.linuxtechi.com/?p=14911#comment-50548 What does the 0 0 mean? or 1 0?
and how casn you use the UUID instead of the filesystem path

]]>