无忧启动论坛

标题: 为什么我的启动盘看不到文字啊, [打印本页]

作者: lihuai617    时间: 2011-10-2 17:32
标题: 为什么我的启动盘看不到文字啊,
大家好,我刚做了一个 GRUB4DOS的启动盘
背景图用MsgDiyer.exe做的,现在能启动,但是就是看不到文字
我不知道哪里有问题,那个帮帮我
我的启动菜单在下面
文件如图
  1. MENU.LST
  2. timeout 19
  3. default 0
  4. find --set-root /MESSAGE
  5. gfxmenu /MESSAGE

  6. title [ 1 ] 启动PE菜单
  7. configfile ()/LST/pe.lst || find --set-root /LST/pe.lst && configfile ()/LST/pe.lst

  8. title [ 2 ] 启动DOS菜单
  9. configfile ()/LST/DOS.LST || find --set-root /LST/DOS.LST && configfile ()/LST/DOS.LST

  10. title [ 3 ] 启动硬盘分区菜单
  11. configfile ()/LST/disk.lst || find --set-root /LST/disk.lst && configfile ()/LST/disk.lst

  12. title [ 4 ] 启动GHOST菜单
  13. configfile ()/LST/ghost.lst || find --set-root /LST/ghost.lst && configfile ()/LST/ghost.lst

  14. title [ 5 ] 启动硬盘检测菜单
  15. configfile ()/LST/hd.lst || find --set-root /LST/hd.lst && configfile ()/LST/hd.lst

  16. title [ 6 ] 启动内存检测菜单
  17. configfile ()/LST/MTEST.lst || find --set-root /LST/DOS.LST && configfile ()/LST/MTEST.lst

  18. title [ 7 ] 启动清除密码菜单
  19. configfile ()/LST/pass.lst || find --set-root /LST/pass.lst && configfile ()/LST/pass.lst

  20. title [ 8 ] 载入光盘镜像安装
  21. find --set-root /LOADISO.IMG
  22. map /LOADISO.IMG (0xff)
  23. map --hook
  24. chainloader (0xff)

  25. title [ 9 ] 启动USB2.0驱动(老机器专用驱动)
  26. find --set-root /plpbt.bin
  27. map /plpbt.bin (0xff)
  28. map --hook
  29. chainloader (0xff)

  30. title [ 0 ] RE_BOOT 重新启动
  31. reboot
复制代码

[ 本帖最后由 lihuai617 于 2011-10-2 17:35 编辑 ]

ogouo_2011-10-02_172918.jpg (60.19 KB, 下载次数: 60)

ogouo_2011-10-02_172918.jpg

作者: tingyue-wu    时间: 2011-10-2 17:49
菜单另存为utf 8编码
作者: lihuai617    时间: 2011-10-2 18:56
老大,是的,你说的是对的,我也是这样搞定的
谢谢啊
还有一个问题啊,
为什么,PE的启动出现error 13: invalid

pe的二级菜单是这样的
title [ 2 ] 启动精简版PE
map --mem ()/PE/mape.iso (fd0) || find --set-root /PE/mape.iso (fd0) && map --mem ()/PE/mape.iso (fd0)
map --hook
chainloader (fd0)+1
rootnoverify (fd0)

还有下面这两个也是出现error 13: invalid.而其他在二级的菜单没有出现一点问题
请帮我看看哪里有问题
title [ 8 ] 载入光盘镜像安装
find --set-root /LOADISO.IMG
map /LOADISO.IMG (0xff)
map --hook
chainloader (0xff)

title [ 9 ] 启动USB2.0驱动(老机器专用驱动)
find --set-root /plpbt.bin
map /plpbt.bin (0xff)
map --hook
chainloader (0xff)
作者: 幸运的草    时间: 2011-10-2 19:39
标题: 回复 #3 lihuai617 的帖子
晕,你的菜单完全反了。
作者: tingyue-wu    时间: 2011-10-2 20:06
IMG文件用(fd0)   iso文件用(0xff)
作者: hotdll    时间: 2011-10-2 20:09
楼上回答正确。
楼主应该去关注下grub4dos常见内存地址。
作者: lihuai617    时间: 2011-10-2 21:12
我都没有管,就乱填的
只不过也搞定了,但是又有一个问题出来了
我启动了PE,小马的精简版的PE,但是不知道为什么,什么程序都没有
就一个干净的PE,但是用简单启动测试工具试的话,小马的PE里面有很多工具的啊
我也搞不懂是为什么
换一个PE,死机了
作者: lihuai617    时间: 2011-10-2 21:15
现在这个菜单对吗
  1. timeout 5
  2. default 5
  3. find --set-root /MESSAGE
  4. gfxmenu /MESSAGE

  5. title [ 1 ] 启动PE菜单
  6. configfile ()/LST/pe.lst || find --set-root /LST/pe.lst && configfile ()/LST/pe.lst

  7. title [ 2 ] 启动DOS菜单
  8. configfile ()/LST/DOS.LST || find --set-root /LST/DOS.LST && configfile ()/LST/DOS.LST

  9. title [ 3 ] 启动硬盘分区菜单
  10. configfile ()/LST/disk.lst || find --set-root /LST/disk.lst && configfile ()/LST/disk.lst

  11. title [ 4 ] 启动GHOST菜单
  12. configfile ()/LST/ghost.lst || find --set-root /LST/ghost.lst && configfile ()/LST/ghost.lst

  13. title [ 5 ] 启动硬盘检测菜单
  14. configfile ()/LST/hd.lst || find --set-root /LST/hd.lst && configfile ()/LST/hd.lst

  15. title [ 6 ] 启动内存检测菜单
  16. configfile ()/LST/MTEST.lst || find --set-root /LST/DOS.LST && configfile ()/LST/MTEST.lst

  17. title [ 7 ] 启动清除密码菜单
  18. configfile ()/LST/pass.lst || find --set-root /LST/pass.lst && configfile ()/LST/pass.lst

  19. title [ 8 ] 载入光盘镜像安装
  20. map --mem ()/LOADISO.IMG (fd0) || find --set-root /LOADISO.IMG (fd0) && map --mem ()/LOADISO.IMG (fd0)
  21. map --hook
  22. chainloader (fd0)+1
  23. rootnoverify (fd0)

  24. title [ 9 ] 先加载 USB2.0再启动WinPE(不支持2.0的老主板)
  25. kernel /PLPBT.BIN || find --set-root /PLPBT.BIN && kernel /PLPBT.BIN
  26. pause --wait=0 USB2.0 Module is ok!
  27. map --mem /PE/mape.iso (0xff)
  28. map --hook
  29. chainloader (0xff)

  30. title [ 0 ] RE_BOOT 重新启动
  31. reboot
复制代码



第二级Pe菜单
timeout 19
default 0
find --set-root /MESSAGE
gfxmenu /MESSAGE

title [ 1 ] RE_返回主菜单
configfile (md)4+8

title [ 2 ] 启动精简版PE
find --set-root /PE/mape.iso
map /PE/mape.iso (0xff)
map --hook
chainloader (0xff)




欢迎光临 无忧启动论坛 (http://wuyou.net/) Powered by Discuz! X3.3