Linux Commands Helper
💬 Your AI-powered Linux assistant
lvcreate Command - Create Logical Volume
The lvcreate command creates a logical volume within a volume group.
Syntax
lvcreate [options] volume_group
Examples
lvcreate -L 10G -n my_lv my_vg
Create a 10GB logical volume named my_lv in my_vg.
Notes
- Ensure sufficient space is available in the volume group.
- Use
lvdisplay
to view logical volume details.