LVM: Difference between revisions

imported>Makefu
Created page with "The Logical Volume Manager (LVM) provides means to dynamically organize partitions. == Basic Setup == LVM manages three types: * physical volumes - directly on a physical par..."
 
imported>Novafacing
m Command for creating a logical volume incorrect, named LV requires -n.
Line 16: Line 16:
# creates a new logical volume named "home" with the size of 10GB (check with lvdisplay)
# creates a new logical volume named "home" with the size of 10GB (check with lvdisplay)
# makes /dev/pool/home available
# makes /dev/pool/home available
lvcreate -L 10G home pool
lvcreate -L 10G -n home pool
mkfs.ext4 /dev/pool/home
mkfs.ext4 /dev/pool/home
</syntaxHighlight>
</syntaxHighlight>