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
How to Clear RAM Memory Cache, Buffer and Swap Space on Linux
Viewed 2762 times since Mon, Nov 23, 2020
linux ssh How to Hide the OpenSSH Version Details when Telnet to Port 22
Viewed 5275 times since Wed, Apr 22, 2020
SSH Essentials: Working with SSH Servers, Clients, and Keys
Viewed 4561 times since Wed, Jun 27, 2018
BIND for the Small LAN
Viewed 3485 times since Sun, May 20, 2018
RHEL: Allowing users to ’su’ to "root" / Allowing ’root’ to login directly to the system using ’ssh’
Viewed 2952 times since Sat, Jun 2, 2018
systemctl Use systemd to Start a Linux Service at Boot
Viewed 5858 times since Mon, Dec 7, 2020
Use inotify-tools on CentOS 7 or RHEL 7 to watch files and directories for events
Viewed 14139 times since Fri, Jul 27, 2018
Linux 20 Netstat Commands for Linux Network Management
Viewed 9715 times since Mon, Sep 21, 2020
Linux Proxy Server Settings – Set Proxy For Command Line
Viewed 3666 times since Mon, Feb 18, 2019
python learning
Viewed 1959 times since Wed, Dec 18, 2019