Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # list block devices and check sda7
- lsblk
- # Display information about physical volumes
- pvs
- # Initialize physical volume for use by LVM
- pvcreate /dev/sda7
- # Add physical volumes to a volume group
- vgextend storerhel /dev/sda7
- # Display information about volume groups
- vgs
- # Add space to logical volume
- lvextend -l +100%FREE -r /dev/mapper/storerhel-store
- # Display information about logical volumes
- lvs
- # report file system space usage
- df -h
- # reboot
- reboot
Advertisement
Add Comment
Please, Sign In to add comment