LVM: Create a new Volume Group
Article Number: 176 | Rating: Unrated | Last Updated: Sat, Jun 2, 2018 10:33 PM
LVM: Create a new Volume Group
# Tested on RHEL 5, 6 & 7
# First, verify the disk/partition to use on the new VG with "fdisk" or any other similar # tool DISK=/dev/sdb VG=newvg # Initialize the physical disk to be used by LVM pvcreate $DISK # Create VG vgcreate -v $VG $DISK |