Just to share what I recently found out and I like it.
If you have the GRUB2 bootloader installed on your HDD, it's more convenient IMO to chainload Ventoy USB from grub.cfg than having to select your USB from the BIOS (or whatever needed to boot from USB).
This entry in grub.cfg works for me to boot Ventoy USB directly:
Code: Select all
menuentry 'Ventoy' {
insmod part_gpt
insmod fat
insmod ext2
set root='hd0,2'
chainloader ($root)/EFI/BOOT/BOOTX64.EFI
}
edit: perhaps the insmod ... lines are not (all) needed