ubuntu 的 iso 盘内一般有 command.lst 这个文件,里面是 grub 支持的命令
grub> loadfont $prefix/fonts/unicode.pf2
if loadfont $font ; then
insmod gettext
fi
grub> ls
grub> ls -l
grub> lsmod
grub> lsfonts
现在不分 SATA 和 IDE 了,统一用 hd 表示
grub> root (hd0, 0)
grub> insmod all_video
grub> insmod part_gpt
grub> insmod gzio
grub> videoinfo
grub> set gfxmode=<分辨率>
auto, width x height, width x height x depth
可以指定一组由逗号或分号分隔的模式以供逐一尝试:每个模式的格式必须是:'auto'(自动检测),'宽x高','宽x高x色深'之一,
并且只能使用VBE标准指定的模式[640x480,800x600,1024x768,1280x1024]x[16,24,32]。可以在GRUB SHELL中使用"videoinfo"命令列出当前所有可用模式。默认值是'auto'。
grub> terminal_output xxx yyy zzz
console PC BIOS及EFI控制台
serial 串行终端
gfxterm 图形模式输出
ofconsole 开放固件控制台
vga_text VGA文本输出,主要用在Coreboot
grub> set gfxpayload=keep
text 普通文本模式,不能用于UEFI平台
keep 继承"gfxmode"的值
auto 自动检测
分辨率 width x height, width x height x depth
grub> linux /install/vmlinuz file=/cdrom/preseed/ubuntu.seed nomodeset console=tty0
/install/vmlinuz 光盘上对应的文件
/cdrom/preseed/ubuntu.seed 对应的配置文件
grub> initrd /install/initrd.gz
grub> boot