Não é possível montar o Volume Lógico recém-criado

0

Eu tento criar um Volume Lógico em um Grupo de Volume existente, mas não consigo montar o novo LV devido a um erro: "Número mágico ruim no super bloco ao tentar abrir":

[root@host-xxxx ~]# df -h
Filesystem            Size  Used Avail Use% Mounted on
/dev/mapper/vg_redhat601-LogVol00
                       29G  4.5G   23G  17% /
tmpfs                  16G   72K   16G   1% /dev/shm
/dev/vda5             190M   38M  143M  21% /boot
/dev/mapper/vg_redhat6-LogVol00
                       33G   48M   31G   1% /AMS

[root@host-xxxx ~]# vgdisplay vg_redhat6
  --- Volume group ---
  VG Name               vg_redhat6
  System ID             
  Format                lvm2
  Metadata Areas        2
  Metadata Sequence No  8
  VG Access             read/write
  VG Status             resizable
  MAX LV                0
  Cur LV                1
  Open LV               1
  Max PV                0
  Cur PV                2
  Act PV                2
  VG Size               70.96 GiB
  PE Size               4.00 MiB
  Total PE              18167
  Alloc PE / Size       8448 / 33.00 GiB
  Free  PE / Size       9719 / 37.96 GiB
  VG UUID               6YbIIs-OBJe-PGyV-Pwsl-VLGX-Jrf2-1SgJUZ

Como pode ser visto acima, há 37.96G de espaço livre sob o VG vg_redhat6. Assim, decidi criar um LV com o tamanho de 15G:

[root@host-xxxx ~]# lvcreate -L 15G -n LogVol01 vg_redhat6
  Logical volume "LogVol01" created.

[root@host-xxxx ~]# lvdisplay /dev/vg_redhat6/LogVol01
  --- Logical volume ---
  LV Path                /dev/vg_redhat6/LogVol01
  LV Name                LogVol01
  VG Name                vg_redhat6
  LV UUID                2FWKKM-mcbQ-RoCk-H2jc-0Jbt-nuha-KqYGtX
  LV Write Access        read/write
  LV Creation host, time host-135-249-45-28, 2016-04-08 14:44:00 +0530
  LV Status              available
  # open                 0
  LV Size                15.00 GiB
  Current LE             3840
  Segments               1
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     256
  Block device           253:3

Quando executo o e2fsck no LV relacionado, vejo o seguinte erro:

[root@host-xxxx ~]# e2fsck /dev/vg_redhat6/LogVol01 e2fsck 1.41.12 (17-May-2010) e2fsck: Superblock invalid, trying backup blocks... e2fsck: Bad magic number in super-block while trying to open /dev/vg_redhat6/LogVol01

The superblock could not be read or does not describe a correct ext2 filesystem.  If the device is valid and it really contains an ext2 filesystem (and not swap or ufs or something else), then the superblock is corrupt, and you might try running e2fsck with an alternate superblock:
    e2fsck -b 8193 <device>

Devido ao erro acima, não consigo montar este novo LV. Eu fiz alguma pesquisa no Google, mas não consegui encontrar nenhuma recomendação útil. Você já enfrentou esse problema antes? Você tem alguma idéia de como superar esse problema?

    
por Murat 08.04.2016 / 14:44

1 resposta

2

Você criou um volume - um espaço vazio onde as informações podem ser armazenadas. Você não pode montá-lo, porque o que é montado é um sistema de arquivos - uma estrutura de informação. A montagem torna um sistema de arquivos visível em um diretório.

Use o comando mkfs apropriado para criar um sistema de arquivos no volume, por exemplo, para criar um sistema de arquivos ext4 (o padrão de fato no Linux) execute (como root) mkfs.ext4 /dev/vg_redhat6/LogVol01

    
por 09.04.2016 / 03:07

Tags