Ubuntu 8.04安装之后无法启动,提示Busybox v1.1.3的解决办法


昨天安装Ubuntu8.04之后出现这个问题,搞的我郁闷死了。

装的是双系统,xp之前就装好了。从移动硬盘的grub引导安装,ubuntu的iso在移动硬盘里

安装完之后在开机画面那里,加载了很久,小黄条在那里撞来撞去,最后一黑屏出来几行白字:

Busybox v1.1.3 (debian1:1.1.3-5 ubuntu12)built-in shell (ash)
enter ‘help’for a list of built-in commands
(initranfs)

输入help,又得到:

.:alias break cd chdir command contine echo eval exec exit export false getopts
hash help let local pwd read readonly return set shift times trap ture type ulimit
umask unalias unset wait [[[ash awk hasename busybox cat chmod chroot chrt clear cmp
cp cut deallocvt dumpkmap echo egrep env expr false fbset fdflush fgrep grep hostname
ifconfig ip kill ln loadfont loadkmap is mkdir mkfifo mknod mkswap mktemp more mount
mv openrt pidof printf ps pwd readlink resset rm rmdir set setkeycodes sh sleep sort
stat sync tail tee test touch tr true tty umount uname uniq wget yes

彻底崩溃,看见一个光标一闪一闪亮晶晶,完了。

就不动了。

就想看看ubuntu自己grub是怎么写的,打开 /boot/grub 目录下的menu.lst

和我写的有点区别,就直接粘贴过来,重启,终于看到久违的ubuntu启动画面了

之前的menu是这样写的:

title Ubuntu
root (hd1,2)
kernel /boot/vmlinuz-2.6.24-16-generic root=/dev/sdb3 ro quiet splash locale=zh_CN
initrd /boot/initrd.img-2.6.24-16-generic
quiet

改了menu之后是这样:
title Ubuntu 8.04, kernel 2.6.24-16-generic
root (hd0,0)
kernel /boot/vmlinuz-2.6.24-16-generic root=UUID=d0629bae-fedb-4096-9249-8cab2bba42ce ro quiet splash
initrd /boot/initrd.img-2.6.24-16-generic
quiet 

相关内容