Preso tentando estender o volume na VM Linux

0

Eu tenho uma máquina virtual Debian Linux rodando (sem cabeça) em uma caixa Ubuntu. Eu aumentei o tamanho do disco virtual com o vboxmanage para 30G do seu original 20G. Eu tentei muitas coisas, mas ainda estou preso com a partição LVM mostrando 20G.

Eu iniciei a partir de um ISO e entrei no modo de reparo. Eu mudei a tabela de partição, excluindo o sda2 & sda5 partições e criando novas com o novo setor End. Não consigo estender a partição daqui.

# df -h
Filesystem        Size  Used Avail Use% Mounted on
/dev/dm-0          19G   13G  5.5G  69% /
udev               10M     0   10M   0% /dev
tmpfs             1.6G  8.4M  1.6G   1% /run
tmpfs             4.0G     0  4.0G   0% /dev/shm
tmpfs             5.0M     0  5.0M   0% /run/lock
tmpfs             4.0G     0  4.0G   0% /sys/fs/cgroup
/dev/sda1         236M   33M  191M  15% /boot
192.168.10.177:/  8.2G  2.4G  5.4G  31% /mnt/nfs

# fdisk -l

Disk /dev/sda: 30 GiB, 32212254720 bytes, 62914560 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0xf5edb169

Device     Boot  Start      End  Sectors  Size Id Type
/dev/sda1  *      2048   499711   497664  243M 83 Linux
/dev/sda2       499712 62914559 62414848 29.8G  5 Extended
/dev/sda5       501760 62914559 62412800 29.8G 8e Linux LVM

Disk /dev/mapper/ArkSrvr--vg-root: 18.9 GiB, 20300431360 bytes, 39649280 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk /dev/mapper/ArkSrvr--vg-swap_1: 872 MiB, 914358272 bytes, 1785856 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes


# pvdisplay
  --- Physical volume ---
  PV Name               /dev/sda5
  VG Name               ArkSrvr-vg
  PV Size               19.76 GiB / not usable 2.00 MiB
  Allocatable           yes (but full)
  PE Size               4.00 MiB
  Total PE              5058
  Free PE               0
  Allocated PE          5058
  PV UUID               yWin1N-w3A4-sIAR-O2q9-nqPp-ki4G-yPr7kr

# lvdisplay
  --- Logical volume ---
  LV Path                /dev/ArkSrvr-vg/root
  LV Name                root
  VG Name                ArkSrvr-vg
  LV UUID                6YHVao-5Pth-2gA7-w42j-wAW7-mc9W-sQcImK
  LV Write Access        read/write
  LV Creation host, time ArkSrvr, 2017-03-06 08:51:00 -0600
  LV Status              available
  # open                 1
  LV Size                18.91 GiB
  Current LE             4840
  Segments               1
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     256
  Block device           254:0

  --- Logical volume ---
  LV Path                /dev/ArkSrvr-vg/swap_1
  LV Name                swap_1
  VG Name                ArkSrvr-vg
  LV UUID                eElIsI-bGdy-Cuje-BacF-1zap-wzlS-ftD28h
  LV Write Access        read/write
  LV Creation host, time ArkSrvr, 2017-03-06 08:51:00 -0600
  LV Status              available
  # open                 2
  LV Size                872.00 MiB
  Current LE             218
  Segments               1
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     256
  Block device           254:1

# lvextend -L+10G /dev/ArkSrvr-vg/root
  Insufficient free space: 2560 extents needed, but only 0 available

# lvextend -l+100%FREE /dev/ArkSrvr-vg/root
  New size (4840 extents) matches existing size (4840 extents)
  Run 'lvextend --help' for more information.

# resize2fs /dev/ArkSrvr-vg/root
resize2fs 1.42.12 (29-Aug-2014)
The filesystem is already 4956160 (4k) blocks long.  Nothing to do!

Como faço para que o / dev / ArkSrvr-vg / root aumente para 30G?

    
por GsSherman 28.03.2018 / 23:56

1 resposta

4

Você perdeu um passo.

O que você tem é um sistema de arquivos dentro de um volume lógico dentro de um (conjunto de 1) volume (s) físico (s) dentro de uma partição.

Você já estendeu a partição. O próximo passo é estender o volume físico:

pvresize /dev/sda5

Você não precisa especificar um tamanho aqui: sem parâmetros de tamanho, o PV tomará automaticamente o tamanho máximo permitido pelo contêiner que o contém, que neste caso é a partição.

Se isso for bem-sucedido, o comando pvdisplay deverá mostrar o aumento do Total PE e o PE livre não será mais 0. Assim, você terá algumas extensões físicas gratuitas que poderá usar.

O próximo passo é estender o volume lógico e depois o sistema de arquivos. Parece que você já sabe como fazer isso.

    
por 29.03.2018 / 00:12