|
本人新手,初次使用g4d。
碰到的问题如下:
使用usbboot制作了可引导u盘,然后把官网下载的g4d0.4.4 解压到U盘根目录下。
重启引导后,可以看到g4d的菜单,但是查看后发现其调用的是config.sys
================
rem load grub.exe before emm386.exe
device=grub.exe --bypass --time-out=5 --config-file="color black/cyan yellow/cyan;timeout 60;default 0;title find and load NTLDR of Windows NT/2K/XP;find --set-root /ntldr;chainloader /ntldr;title find and load CMLDR, the Recovery Console of Windows NT/2K/XP;find --set-root /cmldr;chainloader /cmldr;write 0x7C03 0x63646D63;write 0x7C07 0x00736E6F;title find and load IO.SYS of Windows 9x/Me;find --set-root /io.sys;chainloader /io.sys;title floppy (fd0);chainloader (fd0)+1;rootnoverify (fd0);title find and boot Linux with menu.lst already installed;find --set-root /sbin/init;configfile /boot/grub/menu.lst;title find and boot Mandriva with menu.lst already installed;find --set-root /etc/mandriva-release;configfile /boot/grub/menu.lst;title back to dos;quit;title commandline;commandline;title reboot;reboot;title halt;halt;"
device=c:\windows\himem.sys
device=c:\windows\emm386.exe
==================
我希望能使用menu.lst 来设置引导,于是修改此文件
=========
device=grub.exe --config-file="hd(0,0) /menu.lst"
=========
结果重启后,无法显示menu里的菜单,机器不断重启。
后看readme后发现,如果直接改config为
======
device=grub.exe
======
是默认调用menu的,但结果仍然无法出现menu菜单。
求解!!!!!!! |
|