我使用 Grub 来启动 Ubuntu 和 Windows。现在添加了一个使用 Ventoy(最新版本)设置的附加 SSD。
我今天花了几个小时试图找到如何将 Ventoy 添加到我的 Grub 菜单中的说明。不幸的是,许多变体都不起作用。
谁知道我该如何一步一步地将这个新的 Ventoy 驱动器集成到 Grub 中?
答案1
为了将 Grub 与 Ventoy 连接起来,我使用 Grub Customizer 和以下条目
insmod part_gpt
insmod ext2
insmod fat
insmod exfat
insmod ntfs
insmod chain
search --no-floppy --set=root --fs-uuid xxxx-xxxx (= UUID of the Ventoy boot drive)
chainloader /EFI/BOOT/grub.efi
oldfred 已经与 grub 进行了集成。这就是整个系统在我的系统中的运行方式。