grupo de volumes LVM não encontrado (debian lenny)

1

Mais cedo eu resolvi o problema com uma ajuda gentil :) software RAID 1 on Debian - o cursor GRUB pisca

Eu posso ver o menu e entrar no meu XP novamente. No entanto, estou recebendo erro com o Debian.

Isto é o que acontece depois de selecionar Debian (na tela, literalmente ...)

Booting 'Debian GNU........ 2.6.26-2-686'
root (hd0,6)
Filesystem type is reiserfs, partition type 0xfd
kernel   /vmlinuz-2.6.26-2.686  root=/dev/mapper/acm_main-root ro quiet
     [Linux-bzImage, setup=0x3000, size=0x16ce500]
initrd  /initrd.img-2.6.26-2.686
     [Linux-initrd @ 0x,....... meaningless here]

Decompressing Linux.... Parising ELF.... done.
Booting the kernel.
[0.244015] PCI: Not using MMCONFIG.
Loading, please wait....
[2.201657] hub 1-:0:1.0: unable to enumerate USB device on port2

madam: /dev/md0 has been started with 2 drives.
madam:  WARNING  /dev/sdb10 and /dev/sda10 appear to have similar superblocks.

     - if they are really different, please --zero the superblock on one
     - if they are the same, or overlap,\please remove one from the DEVICE list in mdadm.conf.
  Volume group "acm_main" not found.

.... After a while....
Gave up waiting for root device. Common problems:
  - Boot args (cat /proc/cmdline)
     - check rootdelay
     - check root (did the system wait for the right device?)
  - Missing modules (cat /proc/modules; ls /dev)
ALERT! /dev/mapper/acm_main-root does not exist. Dropping to a shell!

Isso é uma indicação de que algo está errado? Devo reinstalar novamente?

Eu tentei com o CD de recuperação, e usando vgscan -v, encontrei apenas acm_tmp e não acm_main. Eu tenho dois grupos de volume: acm_tmp e acm_main, onde main tem os grupos lógicos: /, / home, / usr, / var e tmp tem / tmp. O swap está fora

Obrigado.

editado pvdisplay

---Physical Volume ---
PV   Name:   /dev/sda9
VG Name    acm_tmp
PV Size   3.26GB  / not usable 0
Allocatable   yes but full
PE Size  4096
Total PE  835
Free Pe  0
Allocated PE  835
PV UUID    IRGLc1-nUu4-Ckjc0Htf5.... I will stop here

---Physical Volume ---
PV Name:  /dev/sdb9
VG Name:  acm_tmp
.... and the rest are pretty much the same except of course different UUID...

Eu dobrei o cheque. Isso foi tudo o que recebi da tela.

Você criou seus grupos de volume no topo do seu dispositivo RAID?

How do I know if I did? I am sorry. I actually followed that video. It seems like http://www.youtube.com/watch?v=rMyfljiCz3A

  

fdisk -l (vou pular o início, fim e blocos)

Disk /dev/sdb: 500.1 GB
255 heads, 63 sectors/track, 60801 cylinders

Device Boot    ..skip..  Id         System
/dev/sdb1 *               7         HPFS/NTFS
/dev/sdb2                 f         W95 Ext'd (LBA)
/dev/sdb5                 7         HPFS/NTFS
/dev/sdb6                 7         HPFS/NTFS
/dev/sdb7 *               fd        Linux raid autodetect
/dev/sdb8                 82        Linux swap / Solaris
/dev/sdb9                 8e        Linux LVM
/dev/sdb10                fd        Linux raid autodetect

Além disso, o problema que resolvemos da última vez .... Eu tinha a partição num: 6 para reiserfs, tipo de partição 0xfd Parece muito correspondência para o acima

possible partitions are
partition num: 0, Filesystem type unknown, type 0x7
num 4: same as num0
num 5: same as num0
num 6: reiserfs
num 7: filesystem unknown, type 0x82
num 8: type 0x8e
num 9: 0xfd
    
por CppLearner 16.08.2010 / 03:08

1 resposta

1

Acho que vejo qual é o problema. Parece que seu grupo de volumes acm_root fica na segunda matriz RAID, que está com problemas para iniciar devido a esse erro:

madam: /dev/md0 has been started with 2 drives.
madam:  WARNING  /dev/sdb10 and /dev/sda10 appear to have similar superblocks.

     - if they are really different, please --zero the superblock on one
     - if they are the same, or overlap,\please remove one from the DEVICE list in mdadm.conf.

Para corrigir isso, inicie no modo de recuperação novamente e execute o seguinte (como sugerido):

mdadm --zero-superblock /dev/sda10

Em seguida, tente inicializar novamente. Espero que isso ajude.

    
por 16.08.2010 / 04:17