vgdisplay e lvdisplay Nenhum grupo de volume encontrado

6
root@ubuntu-server:~# pvdisplay
root@ubuntu-server:~# vgdisplay
  No volume groups found
root@ubuntu-server:~# lvdisplay
  No volume groups found
root@ubuntu-server:~#

o que fazer. Não consigo encontrar soluções no google ou em outro lugar?

eu tento:

pvcreate /dev/sdb5
  Device /dev/sdb5 not found (or ignored by filtering).

e este é o meu fdisk:

 fdisk -l

Disk /dev/sdb: 250.1 GB, 250059350016 bytes
255 heads, 63 sectors/track, 30401 cylinders, total 488397168 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 identifier: 0x00050ccb

   Device Boot      Start         End      Blocks   Id  System
/dev/sdb1   *        2048      499711      248832   83  Linux
/dev/sdb2          501758   488396799   243947521    5  Extended
/dev/sdb5          501760   488396799   243947520   8e  Linux LVM

Disk /dev/sda: 250.1 GB, 250059350016 bytes
255 heads, 63 sectors/track, 30401 cylinders, total 488397168 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 identifier: 0x00050ccb

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *        2048      499711      248832   fd  Linux raid autodetect
/dev/sda2          501758   488396799   243947521    5  Extended
/dev/sda5          501760   488396799   243947520   fd  Linux raid autodetect

Disk /dev/mapper/ubuntu--server-root: 247.7 GB, 247652679680 bytes
255 heads, 63 sectors/track, 30108 cylinders, total 483696640 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 identifier: 0x00000000

Disk /dev/mapper/ubuntu--server-root doesn't contain a valid partition table

Disk /dev/mapper/ubuntu--server-swap_1: 2143 MB, 2143289344 bytes
255 heads, 63 sectors/track, 260 cylinders, total 4186112 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 identifier: 0x00000000

Disk /dev/mapper/ubuntu--server-swap_1 doesn't contain a valid partition table

e meu df -h

df -h

Filesystem                       Size  Used Avail Use% Mounted on
/dev/mapper/ubuntu--server-root  231G  5,0G  214G   3% /
udev                             993M   12K  993M   1% /dev
tmpfs                            401M  356K  401M   1% /run
none                             5,0M     0  5,0M   0% /run/lock
none                            1002M     0 1002M   0% /run/shm
/dev/sdb1                        228M   25M  192M  12% /boot
    
por senzacionale 08.05.2012 / 10:51

2 respostas

6

Muitas vezes, novos usuários ficam confusos com volumes lógicos que não aparecem, mesmo depois de configurados corretamente. Se este for o seu caso, você tentou o seguinte?

pvscan

Isso verifica volumes físicos. Ele deve mostrar /dev/sdb5 se você fez deste um volume físico LVM antes.

vgscan

Procura grupos de volumes existentes. Deve mostrar o seu grupo de volume se você configurá-lo corretamente antes.

vgchange -a y

Ativa todos os grupos de volumes disponíveis (muda seu estado "ativo" para "sim"). Agora seus volumes lógicos devem aparecer em /dev/mapper/ e como /dev/VGNAME/LVNAME .

    
por 09.08.2012 / 00:19
3

O daemon de armazenamento em cache lvmetad foi introduzido recentemente e às vezes interrompe a verificação implícita do LVM.

pvscan --cache

deve forçar o LVM a verificar novamente.

    
por 25.10.2013 / 14:34

Tags