Expand Dell RAID/Make available to Virtualizor (LVM)
Dell RAID Reconfiguration
Start OMSA with
srvadmin-services.sh start
and loginOpen Storage -> Virtual Disks
Reconfigure chosen array
Add the drives that you added physically to the server then start the process
wait an eternity for the RAID to finish reconfiguring
CentOS Partition Expansion
echo > /sys/class/block/sda/device/rescan
gdisk /dev/sda
option
r
option
e
option
w
fdisk /dev/sda
option
d
- delete virtualizor LVM partitionoption
n
- recreate with new expanded end sectoroption
w
Inform OS of size change
partprobe /dev/sda
LVM VG Resize
Note old size with
pvdisplay /dev/sda4
pvresize /dev/sda4
Check with
pvdisplay /dev/sda4
LV and File System Resize (if needing to manually resize an LV)
lvextend -l +100%FREE /dev/centos/home
xfs_growfs /dev/centos/home
(if using XFS, check withdf -Th
)
Last updated