A instalação do Ubuntu é inicializada no BusyBox

3

Estou tentando instalar o Ubuntu em uma unidade limpa e, por algum motivo, quando escolho a opção de instalação, ele vai para o BusyBox embutido no shell. Alguém pode me dizer por que faria isso e como chegar à instalação normal?

    
por The.Anti.9 08.10.2009 / 07:36

2 respostas

2

this is probably because i'm not using sata drives, i'm using IDE drives

Eu enfrentei esse problema há algum tempo (em um sistema normal) - Usado esta solução alternativa

At the LiveCD initial boot screen:

  • Select F6 for more options
  • Add the following option to the beginning of the options list: break=top
  • Press enter to start booting. Ubuntu will start booting, but kick you out to a command prompt
  • At the prompt type these two commands: modprobe piix & exit
  • You will now boot into the LiveCD normally

Graças a UbuntuForums , eu tive essa deliciosa

    
por 08.10.2009 / 09:13
1

Isso é quase sempre devido a um erro fatal durante o processo de inicialização. Isso acontece quando você inicializa uma instalação nova ou acontece ao inicializar a partir do live cd?

No início, a internet na verdade não parece ser útil para esse erro. Eu continuei recebendo o mesmo problema há algum tempo, e nunca imaginei como consertá-lo. Mas, infelizmente, não desista!

Assumindo que o live CD funciona, tente arrancar a partir dele e monte a instalação 'broken' como a raiz (onde hda1 é o 'nome' do disco rígido):

mkdir ~/Desktop/harddrive
sudo mount -rw /dev/hda1 ~/Desktop/harddrive
sudo chroot ~/Desktop/harddrive
sudo aptitude reinstall ubuntu-minimal

Hopefull, isso irá reinstalar o sistema base do Ubuntu.

Eu também encontrei esta joia das notas de lançamento do Ubuntu 9.04 :

Boot failures on systems with Intel D945 motherboards

Users have reported slower than normal detection of SATA hard drives on systems with Intel D945 motherboards in Ubuntu 9.04. This may cause the system to drop to a busybox initramfs shell on boot with a "Gave up waiting for root device." error. Wait a minute or two and then exit the initramfs shell by typing exit. Booting should proceed normally. If it doesn't, wait a bit longer and try again. Once the system boots, edit /boot/grub/menu.lst and add rootdelay=90 to the kernel stanza for your current kernel. (Bug 290153)

    
por 08.10.2009 / 08:00