O Debian perde o harddisk na inicialização 4 vezes e depois inicializa. Por quê?

2

Dmesg Dump:

link na hora 32.832045

Esse erro está atrasando significativamente o processo de inicialização. Alguém sabe do que se trata?

Dispositivos: Unidade Maxtor IDE com novo cabo no mestre primário em uma placa ASUS TUSL2-C com chipset Intel 815 e processador Pentium III Coppermine. Controlador Intel 82801BA IDE U100.

Software: Debian Wheezy nos pacotes mais novos. Kernel: Linux 3.2.0-4-686-pae # 1 SMP Debian 3.2.46-1 + deb7u1

    
por Dampf Hammer 23.09.2013 / 02:47

1 resposta

1

De acordo com este tópico dos fóruns do Ubuntu (que pode ou não se aplicar, mas já que você está usando o Debian vale a pena um tiro), isso pode ser corrigido com estas etapas:

Siga as instruções na última seção da primeira postagem, intitulada Informações sobre libata.force = ...: , para descobrir sua configuração libata .

libata.force= [LIBATA] Force configurations. The format is comma separated list of "[ID:]VAL" where ID is PORT[.DEVICE]. PORT and DEVICE are decimal numbers matching port, link or device. Basically, it matches the ATA ID string printed on console by libata. If the whole ID part is omitted, the last PORT and DEVICE values are used. If ID hasn't been specified yet, the configuration applies to all ports, links and devices.

If only DEVICE is omitted, the parameter applies to the port and all links and devices behind it. DEVICE number of 0 either selects the first device or the first fan-out link behind PMP device. It does not select the host link. DEVICE number of 15 selects the host link and device attached to it.

The VAL specifies the configuration to force. As long as there's no ambiguity shortcut notation is allowed. For example, both 1.5 and 1.5G would work for 1.5Gbps. The following configurations can be forced.

  • Cable type: 40c, 80c, short40c, unk, ign or sata. Any ID with matching PORT is used.

  • SATA link speed limit: 1.5Gbps or 3.0Gbps.

  • Transfer mode: pio[0-7], mwdma[0-4] and udma[0-7]. udma[/][16,25,33,44,66,100,133] notation is also allowed.

Depois disso, adicione a linha encontrada em grub.cfg . Por exemplo, se as etapas acima indicarem libata.force=1:pio4 , adicione

libata.force=1:pio4

para a linha do kernel no grub. Você pode testar isso pressionando e no menu Grub e adicionando a linha manualmente à linha do kernel. Se funcionar, edite o arquivo grub.cfg :

sudo nano /etc/default/grub

e edite o conteúdo desta linha para adicionar o comando apropriado:

GRUB_CMDLINE_LINUX_DEFAULT="libata.force=1:pio4 quiet splash"

Em seguida, execute sudo update-grub .

Não tenho promessas de que isso funcionará, já que não tenho um sistema com esse erro para testá-lo, mas parece que outros enfrentaram um problema semelhante, então talvez essas etapas funcionem para você.

    
por 23.09.2013 / 03:02