Create a Ventoy USB (ISO Launcher)
Boot with a Ventoy USB, and ISO files are automatically listed in the Ventoy menu, and can be booted directly. A 32GB capacity USB should allow ample space to store several ISOs of your choice; an 8GB capacity USB might hold one, or two ISO’s; do the math.
Ventoy is available from the official Manjaro extra repository:
sudo pacman -S ventoy
Ventoy Usage:
Type ventoy
(without arguments) to see usage information:
Usage: Ventoy2Disk.sh CMD [ OPTION ] /dev/sdX
CMD:
-i install Ventoy to sdX (fails if disk already installed with Ventoy)
-I force install Ventoy to sdX (no matter if installed or not)
-u update Ventoy in sdX
-l list Ventoy information in sdX
OPTION: (optional)
-r SIZE_MB preserve some space at the bottom of the disk (only for install)
-s/-S enable/disable secure boot support (default is enabled)
-g use GPT partition style, default is MBR (only for install)
-L Label of the 1st exfat partition (default is Ventoy)
-n try non-destructive installation (only for install)
Creating the Ventoy USB:
Write the Ventoy system to an empty USB drive;
use /dev/sdX
to target the device itself, and not a partition:
sudo sh ventoy -i -r 100 -S -g -L VOLUME /dev/sdX
- Enable
-s
or disable -S
Secure Boot.
- Substitute
VOLUME
for a volume label name to use.
- Substitute
/dev/sdX
for the location of your USB device.
- Preserve some space on the target device (example allows 100mb).
Updating the Ventoy USB:
Update the Ventoy system on an existing Ventoy USB;
ensure the updated Ventoy version is available in Manjaro; and then:
sudo ventoy -u /dev/sdX
- The Ventoy USB update process is non-destructive.
Above is what I usually give to introduce someone to Ventoy; basically, enough information to quickly get up and running with the concept.
There also, is an example of how I create a Ventoy USB; specifically, making sure it’s created to boot UEFI, and disable Secure Boot in the process. Please compare those parameters with however you created yours.
Note that if the Ventoy USB is not created as UEFI, then it just might explain your description above;
Likewise, if you have an older Ventoy version on the USB, it will be beneficial to update it, as some older versions were a little buggy.
Cheers.