Eu usei fdisk /dev/sda
para criar uma nova partição sda4
[root@localhost ~]# fdisk /dev/sda
The number of cylinders for this disk is set to 26108.
There is nothing wrong with that, but this is larger than 1024,
and could in certain setups cause problems with:
1) software that runs at boot time (e.g., old versions of LILO)
2) booting and partitioning software from other OSs
(e.g., DOS FDISK, OS/2 FDISK)
Command (m for help): m
Command action
a toggle a bootable flag
b edit bsd disklabel
c toggle the dos compatibility flag
d delete a partition
l list known partition types
m print this menu
n add a new partition
o create a new empty DOS partition table
p print the partition table
q quit without saving changes
s create a new empty Sun disklabel
t change a partition's system id
u change display/entry units
v verify the partition table
w write table to disk and exit
x extra functionality (experts only)
Command (m for help): n
Command action
e extended
p primary partition (1-4)
p
Selected partition 4
First cylinder (2611-26108, default 2611): 2611
Last cylinder or +size or +sizeM or +sizeK (2611-26108, default 26108): 26108
Command (m for help): t
Partition number (1-4): 3
Hex code (type L to list codes): 8e
Command (m for help): w
The partition table has been altered!
Calling ioctl() to re-read partition table.
WARNING: Re-reading the partition table failed with error 16: Device or resource busy.
The kernel still uses the old table.
The new table will be used at the next reboot.
Syncing disks.
[root@localhost ~]# fdisk /dev/sda -l
Disk /dev/sda: 214.7 GB, 214748364800 bytes
255 heads, 63 sectors/track, 26108 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 19 152586 83 Linux
/dev/sda2 20 280 2096482+ 82 Linux swap / Solaris
/dev/sda3 281 2610 18715725 8e Linux LVM
/dev/sda4 2611 26108 188747685 83 Linux
Em seguida, reinicie a máquina
Então usei o commend pvcreate /dev/sda4
para criar o volume físico sda4.
Então eu estendo o vg_root (grupo virtual) para cobrir o sda4, emitindo o comando vgextend vg_root /dev/sda4
.
Em seguida, usei o comando lvextend
e resize2fs
para estender o tamanho para o (s) volume (s) lógico (s) conforme necessário.
Obrigado @derobert pela ajuda.