我想定制 Grub2 菜单,而无需使用“Grub Customization”之类的程序?
附言:不幸的是,这个程序可能很好,但不适合这台电脑。
答案1
要手动自定义 GRUB 菜单,请使用目录40_custom
中的脚本文件/etc/grub.d/
。注释掉行exec tail -n +3 $0
。向下滚动一点并在所有注释后添加以下几行:cat << EOF\nEOF
。文件现在应如下所示:
#!/bin/sh
#exec tail -n +3 $0
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
cat << EOF
# YOUR CODE GOES HERE
EOF
将菜单条目代码放置在cat << EOF
和之间EOF
。
要自定义任何现有的菜单项,请使用文件10_linux
和20_linux_xen
。