使用 pxe 通过 qemu 引导旧版 grub

使用 pxe 通过 qemu 引导旧版 grub

我一直在尝试使用 pxe 通过 qemu 启动 grub 旧版本。由于某种原因,grub不显示菜单,并在显示以下错误后进入命令模式。

Error15: File not found.
grub rescue>

这是我的目录结构:

/var/lib/tftpboot
| - pxelinux.0
| - pxegrub.0
| - pxelinux.cfg
    | default
| - boot
    | grub
          |default        
          |fat_stage1_5
          |menu.lst
          |stage1
          |device.map
          |installed-version  
          |minix_stage1_5     
          |stage2
          |e2fs_stage1_5 
          |jfs_stage1_5
          |reiserfs_stage1_5  
          |xfs_stage1_5
 |x86_64

pxelinux.cfg/default 的内容:

 default vesamenu.c32
prompt 0

menu title Available Installations (scroll down for more options)
menu autoboot Starting grub2 in # Seconds
timeout 30

label local
  menu label Boot From Local Disk
  localboot 0

label grub
  menu label grub
  menu default
        kernel pxegrub.0

menu end

menu.lst 的内容:

timeout 0

# spawnd is used to control which cpus are booted
#
# "spawnd boot" will use the skb and pci to figure out and
#  boot all cores in the machine
#
# "spawnd boot bootapic-x86_64=1-5" will not use the skb and
# boot the list of cores passed as argument.
# The APIC id of the cores to boot should be specified.
# This list may not include the bsp core id.

title   Barrelfish
root    (nd)
kernel  /x86_64/sbin/elver loglevel=4
module  /x86_64/sbin/cpu loglevel=4
module  /x86_64/sbin/init

# Domains spawned by init
module  /x86_64/sbin/mem_serv
module  /x86_64/sbin/monitor

# Special boot time domains spawned by monitor
module  /x86_64/sbin/ramfsd boot
module  /x86_64/sbin/skb boot
modulenounzip /skb_ramfs.cpio.gz nospawn
module  /x86_64/sbin/kaluga boot
module  /x86_64/sbin/acpi boot
module  /x86_64/sbin/spawnd boot

#bootapic-x86_64=1-15
module  /x86_64/sbin/startd boot
module /x86_64/sbin/routing_setup boot

# Drivers
module /x86_64/sbin/pci auto
module /x86_64/sbin/ahcid auto
module /x86_64/sbin/rtl8029 auto
module /x86_64/sbin/e1000n auto
module /x86_64/sbin/NGD_mng auto
module /x86_64/sbin/netd auto

# General user domains
module  /x86_64/sbin/serial
module  /x86_64/sbin/fish
module  /x86_64/sbin/hellotest
module  /x86_64/sbin/ahcialloctest
module  /x86_64/sbin/idctest client
module  /x86_64/sbin/idctest server

我使用以下命令生成 grub 映像:

grub-mkimage --format=i386-pc-pxe --output=grub.pxe --prefix='(pxe)/boot/grub' pxe pxecmd

答案1

grub-mkimage创建 GRUB 2 映像,而不是 GRUB Legacy 映像。grub rescue>也是您正在引导 GRUB 2 的标志。

您应该加载stage2而不是pxegrub.0在这里。

GRUB Legacy 的某些版本netboot-enabled,但要建议使用哪个以及从哪里使用,我需要知道您的操作系统,或者至少需要知道您模拟的 QEmu 网卡模型(MirBSD 有许多预编译的 GRUB Legacy 支持 netboot 的映像)。

相关内容