//这里还有一种方法把grub装上U盘用grub-install 这个方法试了一下下,不过在写的时候有点问题没成了,还是用下面的快
#grub 执行grub为了把grub写在MBR上
grub> root (hd1,0) 为什么是(hd1,0)?这个很容易理解的.(hdx,y) x(0--3)从0开始,y(0--3)
也是从0开始.如第一个硬盘的第一个区(hd0.0) 第一个硬盘的第4个区(hd0,3)
第二个硬盘的第一个区(hd1,0)USB在这里是认为HDD的.
Filesystem type is ext2fs, partition type 0x83
grub> setup (hd1)
Checking if "/boot/grub/stage1" exists... yes
Checking if "/boot/grub/stage2" exists... yes
Checking if "/boot/grub/e2fs_stage1_5" exists... yes
Running "embed /boot/grub/e2fs_stage1_5 (hd1)"... 15 sectors are embedded.
succeeded
Running "install /boot/grub/stage1 (hd1) (hd1)1+15 p (hd1,0)/boot/grub/stage2
/boot/grub/menu.lst"... succeeded
Done.
你可以这时编写那个menu.lst
本人懒就没改动,只是在引导时写一下
download一个网络安装包:
[url][/url]
把 netboot.tar.gz这个下下来
抽取其中两个文件:
linux + initrd.gz
要这两个就足够了
#cp /yourDir/../linux /yourDir(mount的USB)/boot
#cp /yourDir/../initrd.gz /yourDir(mount的USB)/boot
当然可以一起CP
此时U盘可以启动,且可以安装了~
个人安装时的爱好,自已选内容吧.
在BIOS里面设好U盘启动
设已引导GRUB,出现画面
按"c"进入命令提示
grub>kernel /boot/linux vga=771
grub>initrd /boot/initrd.gz
grub>boot
接下来就看到正常的安装画面了