|
6#
楼主 |
发表于 2022-2-16 09:15:17
|
只看该作者
本帖最后由 liuzhaoyzz 于 2022-2-16 09:27 编辑
系统自动生成的grub.cfg菜单,感觉有点复杂。
menuentry 'CentOS Linux (3.10.0-1160.el7.x86_64) 7 (Core)' --class centos --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-3.10.0-1160.el7.x86_64-advanced-f8bcfd91-cda7-4dc3-ab83-9dedebcc029e' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_msdos
insmod xfs
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 --hint='hd0,msdos1' 9604622c-6438-472e-83cb-6ff06c55e673
else
search --no-floppy --fs-uuid --set=root 9604622c-6438-472e-83cb-6ff06c55e673
fi
linux16 /vmlinuz-3.10.0-1160.el7.x86_64 root=/dev/mapper/centos-root ro crashkernel=auto rd.lvm.lv=centos/root rd.lvm.lv=centos/swap nomodeset rhgb quiet LANG=zh_CN.UTF-8
initrd16 /initramfs-3.10.0-1160.el7.x86_64.img
}
我想用硬盘2里面的grub4dos/grub2直接去引导硬盘1里面的grub2,我不想再研究菜单的具体内容了,因为具体内容已经是写好了的,也可以启动。
简而言之,我想用grub2引导grub2,或者用grub4dos引导grub2。 |
|