Ventoy | Multi-ISO Bootable USB Drive Made Easy

From time to time, I like to try a new distribution of Linux, not because I am dissatisfied with openSUSE as that is NOT the case but like going to another town to visit and see what culinary options they have to offer. I like to try out another Plasma distribution or something that is quite different than what I am used to using. Part of the fun of Linux is all the options and therefore, I want to peruse the buffet from time to time. Also, as a non-card carrying member of the BDLL community, we do these weekly “challenges” and I like to participate from time to time in that.

The annoying part about testing distributions is that I have amassed a collection of USB flash drives with various distributions on it and I am often fumbling finding one that I don’t want to write over. The solution, Ventoy. This allows me to have multiple distributions on one USB drive and I also do not have to write the images to the device. I just have to drag and drop the ISO right onto. The system will scan the device recursively so I can still keep everything organized into folders.

This is now my solution for all ISOs. I am going to put them right onto this as opposed to having them litter my /home partition.

Download the tar.gz and take note as to where you chose to download Ventoy. You will have to extract that archive. Using something like the Dolphin file manager, that is only a right-click away.

Alternatively, you can use the tar command in the terminal

tar xvzf ventoy*.tar.gz

Using a terminal, navigate to that location in the folder with the Ventoy executable, it is important you do so else the command later won’t work for you.

Keep in mind, your version may vary as this does continue to tick away.

Installation

This is not an application you need to install to your system. It is a shell script that you can execute from the terminal and since the terminal is a happy place, you should enjoy this process.

First I checked to make sure I was getting the correct device. There are a couple ways you can go about doing that. Using the File Manger, like Dolphin, navigating to the drive to right-click and get the properties.

Or you can go the terminal route and type in:

lsblk

Just as a note, I used “grep sd” because the snap packages clutter things up.

I do want to emphasize that you really need to know your system and what drives you have already attached. I know that I have 3 separate devices so “a“, “b” and “c” will already be claimed by my root, home, and bay storage.

Once you have determined the drive, in my case, I have sdd so I would replace sdX with sdd in the statement below.

sudo sh ./Ventoy2Disk.sh -i /dev/sdX -s

Where “X” is the last digit of the drive.

In this case where -i is to install and -s is to enable secure boot support.

Using Ventoy

The only thing you have to do at this point is drag and drop an ISO of a Linux distribution that you would like to install on a machine. In my case, I would like to install openSUSE Leap 15.2, so that is what I have put on the USB drive.

That is all there is to it. Now you can take this USB drive and install to your hearts content on as many systems as you would like. It should be noted that not every ISO is compatible with Ventoy. I am going to make second note here and say that this is the only way to easily install Windows 10, not for me but doing tech support. So, Ventoy is a life saver.

Update

Lets assume you already have Ventoy installed, you can update the Ventoy USB drive very simply.

sudo sh ./Ventoy2Disk.sh -u /dev/sdX

Final Thoughts

Ventoy is a fantastic utility, especially if you are regularly or even semi-regularly installing operating systems on machines. Setting up Ventoy is not difficult, so long as you understand the The installation is not difficult, so long as you understand the particulars. Since this isn’t something I would do every day, this little blathering is another note to future me and hopefully it works well for present you.

References

https://www.ventoy.net/

2 thoughts on “Ventoy | Multi-ISO Bootable USB Drive Made Easy

Leave a Reply