----- Original Message -----
| I have not extended the volume. That was precisely my question. I
| already understand how to grow the GFS2 filesystem (conceptually).
| As
| per
https://alteeve.com/w/Grow_a_GFS2_Partition.
|
| I've tried to increase the size of the volume with lvextend, but it's
| not having it.
|
| [root@test03]# lvextend -L +2T /dev/sdb
| Path required for Logical Volume "sdb"
| Please provide a volume group name
| Run `lvextend --help' for more information.
| [root@test03]# lvextend -L +2T /dev/mapper/gdcache_vg-gdcache_lv
| /dev/sdb
| Extending logical volume gdcache_lv to 4.00 TB
| Insufficient free space: 524288 extents needed, but only 3
| available
| [root@test03]# lvextend -L +2000G
| /dev/mapper/gdcache_vg-gdcache_lv /dev/sdb
| Extending logical volume gdcache_lv to 3.95 TB
| Insufficient free space: 512000 extents needed, but only 3
| available
| [root@test03]# lvextend -L +1999G
| /dev/mapper/gdcache_vg-gdcache_lv /dev/sdb
| Extending logical volume gdcache_lv to 3.95 TB
| Insufficient free space: 511744 extents needed, but only 3
| available
|
| I assume I need to expand the underlying PV or VG. But how?
|
| Wes