Como reverter uma redução de um volume LVM

1

Eu tinha um volume LVM do Linux com cerca de 400 GB. Eu encolhi para 217 GB seguindo os passos abaixo.

umount /local
e2fsck -f /dev/mapper/vg00-lvol2
resize2fs /dev/mapper/vg00-lvol2 217G
lvresize -L 217G /dev/mapper/vg00-lvol2
lvdisplay /dev/mapper/vg00-lvol2
mount /local

Em seguida, redimensionei o volume físico para 260 GB com pvresize . Se eu faço pvdisplay e lvdisplay agora, recebo:

lvm> pvdisplay
  --- Physical volume ---
  PV Name               /dev/sda3
  VG Name               vg00
  PV Size               260.00 GB / not usable 31.81 MB
  Allocatable           yes 
  PE Size (KByte)       32768
  Total PE              8319
  Free PE               250
  Allocated PE          8069
  PV UUID               6itmL0-3HAd-tmhA-a3u3-ketO-H7OO-MahFc7

lvm> lvdisplay
  --- Logical volume ---
  LV Name                /dev/vg00/lvol1
  VG Name                vg00
  LV UUID                JFATdC-lqxK-wsBc-VgL1-33Xv-PUfb-Y28fk2
  LV Write Access        read/write
  LV Status              available
  # open                 1
  LV Size                35.16 GB
  Current LE             1125
  Segments               1
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     256
  Block device           253:0

  --- Logical volume ---
  LV Name                /dev/vg00/lvol2
  VG Name                vg00
  LV UUID                F81eoe-xokM-Jqwr-NXND-VujX-BwN6-Kh0zZa
  LV Write Access        read/write
  LV Status              available
  # open                 1
  LV Size                217.00 GB
  Current LE             6944
  Segments               1
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     256
  Block device           253:1

Como posso reverter estes passos? Ou seja, redimensionar o volume físico e o volume lógico de volta para seus tamanhos originais.

    
por rturrado 03.11.2011 / 19:05

1 resposta

1

Você pode:

# this will expand the PV to max size available (e.g. full disk/disks size/sizes
# (as PV can occupy many disks))
pvresize /dev/sda3
# the -r switch does resize2fs for you automatically
lvresize -L 400G -r /dev/mapper/vg00-lvol2

No entanto, não consigo encontrar nas páginas de manual como redimensionar o limite de tamanho de LV para VG, portanto, dar 400G pode dizer que o novo tamanho de LV é maior que o tamanho de VG. Então coloque 399G aqui, etc.

A propósito: você pode usar a opção lvresize -L com + e - flags, como lvresize -L+30GB <lvname> , o LV será redimensionado para actual_size+30GB .

    
por 03.11.2011 / 20:24