lvm
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
lvm [2016/08/16 16:47] – [Add drive to LVM] k2patel | lvm [2020/08/10 02:35] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 19: | Line 19: | ||
==== Add drive to LVM ==== | ==== Add drive to LVM ==== | ||
<code bash> | <code bash> | ||
+ | # Rescan the machine if not found. | ||
+ | echo "- - -" > / | ||
+ | # Cont. | ||
fdisk /dev/xvdk ## Comment " | fdisk /dev/xvdk ## Comment " | ||
mkfs.ext3 / | mkfs.ext3 / | ||
pvcreate / | pvcreate / | ||
vgextend vg0 /dev/xvdk1 | vgextend vg0 /dev/xvdk1 | ||
- | lvextend -L 300G / | + | lvextend -L 300G / |
+ | OR | ||
lvextend -L+99.91G / | lvextend -L+99.91G / | ||
OR | OR | ||
Line 45: | Line 49: | ||
e2fsck -y / | e2fsck -y / | ||
lvextend -L+512M / | lvextend -L+512M / | ||
+ | OR | ||
+ | lvextend -l +100%FREE / | ||
resize2fs / | resize2fs / | ||
mount /opt | mount /opt | ||
Line 52: | Line 58: | ||
<code bash | history> | <code bash | history> | ||
+ | #rescan the device | ||
+ | echo "- - -" > / | ||
+ | #list devices and confirm you are going to update which drive. | ||
fdisk -l | fdisk -l | ||
+ | ### Delete and recreate the partition 'make sure start block is the same' | ||
fdisk /dev/sda ## Comment " | fdisk /dev/sda ## Comment " | ||
+ | ### Reprobe partition table. | ||
+ | partprobe -s | ||
mkfs.ext3 /dev/sda1 | mkfs.ext3 /dev/sda1 | ||
vgextend VolGroup00 /dev/sda1 | vgextend VolGroup00 /dev/sda1 |
lvm.1471366048.txt.gz · Last modified: 2020/08/10 02:30 (external edit)