LVM basic

LVM

SCAN a new disk
ls -l /sys/class/scsi_host/
grep mpt /sys/class/scsi_host/host?/proc_name
fdisk -l
echo "- - -" > /sys/class/scsi_host/host2/scan
 

OVERVIEW OF DISKS and PARTITIONS
lsblk
 
Summary of Volume  Groups
vgs (Volume Group Status)
 

Summary of Logical Volumes
lvs (Logical Volume Status)
 

 Volume Group
 Logical Volume
vgdisplay
vgdisplay vg_gsp_1
lvdisplay
lvdisplay vg_gsp_1
vgextend vg_gsp_1 /dev/sdc1


vgreduce vg_gsp_1 /dev/sdc1
lvextend /dev/vg_gg1/lv_root /dev/sdc1
lvextend --size +2G /dev/vg_gsp_1/lv_gpdisk_1

lvreduce /dev/vg_gg1/lv_root /dev/sdc1
vgcreate vg_gsp_1 /dev/sdb1

lvcreate -L 6G -n lv_gpdisk_2 vg_gsp_1
lvcreate -n lv_gpdisk_2 -l 100%FREE vg_gsp_1
lvremove /dev/vg_gsp_1/lv_gspvol_001

  mkfs -t ext4 /dev/vg_gsp_1/lv_gpdisk_1
mkfs.xfs /dev/vg_gsp_1/lv_gpdisk_1
resize2fs /dev/vg_gg1/lv_root


SHRINK VOLUME
umount /gspmount1
resize2fs -p /dev/vg_gsp_1/lv_gspvol_001 1G
e2fsck -f /dev/vg_gsp_1/lv_gspvol_001
resize2fs -p /dev/vg_gsp_1/lv_gspvol_001 1G
lvreduce -L 1G /dev/vg_gsp_1/lv_gspvol_001
mount /dev/vg_gsp_1/lv_gspvol_001 /gspmount1
INCREASE ROOT
vgdisplay vg_rhce
lvdisplay vg_rhce
vgextend vg_rhce /dev/sdc1
lvextend /dev/vg_rhce/lv_root /dev/sdc1
lsblk
df -h
resize2fs /dev/vg_gg1/lv_root   or xfs_growfs /dev/vg_gg1/lv_root
df -h

 
0 (0)
Article Rating (No Votes)
Rate this article
Attachments
There are no attachments for this article.
Comments
There are no comments for this article. Be the first to post a comment.
Full Name
Email Address
Security Code Security Code
Related Articles RSS Feed
LVM: Create a new Volume Group
Viewed 1806 times since Sat, Jun 2, 2018
RHEL: Building a custom kernel on RHEL 6
Viewed 3766 times since Sat, Jun 2, 2018
Linux Chage Command to Set Password Aging for User
Viewed 2014 times since Tue, Sep 11, 2018
SSH Essentials: Working with SSH Servers, Clients, and Keys
Viewed 3985 times since Wed, Jun 27, 2018
linux unix aix banner /etc/issue
Viewed 1711 times since Fri, Aug 3, 2018
How To Add Swap Space on Ubuntu 16.04
Viewed 2112 times since Fri, Jun 8, 2018
Jak ustawić LVM, jak robić snapshoty oraz automatycznie powiększać LV, czyli małe howto
Viewed 4213 times since Sun, May 20, 2018
RHEL: Crash kernel dumps configuration and analysis on RHEL 6
Viewed 4314 times since Sat, Jun 2, 2018
RHEL: Extending a multipath LUN
Viewed 4333 times since Sun, May 27, 2018
zabbix linux How to solve apache error No space left on device: Cannot create SSLMutex
Viewed 2009 times since Wed, Nov 11, 2020