ubuntu grub

  1. sh.grub>set root=(hd0, 4 )   
  2. sh.grub>loopback loop0 /ubuntu/disks/root.disk   
  3. sh.grub>set root=(loop0)    
  4. sh.grub>linux /boot/vmlinuz- 2.6 . 31 - 17 (根据个人版本号调整,TAB提示)             root=/dev/sda5            loop=/ubuntu/disks/root.disk    
  5.  sh.grub>initrd /boot/initrd.img- 2.6 . 31 - 17 根据个人版本号调整,TAB提示)   
  6.  sh.grub>boot

 

更新了grub后,Ubuntu9.10无法启动了,我用wubi在Windows xp下面安装的,把Ubuntu安装在了f盘,进入f:/ubuntu/disks/boot/grub目录一看,发现引导信息文件已经不见了,启动后出现如下信息:
GUN GRUB version 1.97~beta4
[Minimal BASH-like line editing is suported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device/file completions.]
sh:grub >

怎样才能重新正常启动?

方法:

set root=(hd0,7)

代码:

loopback loop0 /ubuntu/disks/root.disk


代码: set root=(loop0)


代码: linux /boot/vmlinuz-2.6.31-14-generic root=/dev/sda7 loop=/ubuntu/disks/root.disk

要是不知道是什么内核,可以用tab键让他自动补全看看

代码: initrd /boot/initrd.img-2.6.31-14-generic


代码: boot 就可以看到开机画面了 进去后, sudo update-grub 就可以了. 9.10是Grub2,配置文件在/boot/grub/grub.cfg

然后复制 /boot/grub/目录下的grub.cfg,到/host/ubuntu/install/boot/grub/目录下面,重启ubuntu应该就可以了

你可能感兴趣的:(windows,linux,ubuntu,command,XP)