# Harnessing the Power: Unleashing a Bootable USB Arsenal with Ventoy on Linux

## Download Ventoy 💙

* Go to the Ventoy website [Link](https://www.ventoy.net/en/download.html)
    
* Download the file named `ventoy-1.0.79-linux.tar.gz`
    

## Download ISOs to be used 💿

* Before starting the process, it would be ideal to have your ISOs ready. In my case, I will be using Ubuntu and Windows. Here are the links to both in case you need them:
    
* [Ubuntu](https://ubuntu.com/desktop)
    
* [Windows 10](https://www.microsoft.com/en-us/software-download/windows10ISO)
    

## Extract Ventoy and navigate to its folder 📁

* Now, with the file `ventoy-1.0.79-linux.tar.gz`, navigate to your downloads folder using `cd Downloads/`
    
* Next, extract the file using the command `tar -xf ventoy-1.0.79-linux.tar.gz` or simply right-click and select "Extract Here"
    
* Then, navigate to the newly created folder using `cd ventoy-1.0.79/`
    

## Create the bootable USB drive 🖥

* While inside the Ventoy folder, you can use the command `ls -ltr` to ensure you are in the correct location. If you see the file named `Ventoy2Disk.sh`, it means you are in the right place.
    
* Here, you need to enter your command. In my case, it is `sudo sh Ventoy2Disk.sh -I -s /dev/sdc`. For the last part, you need to know the name of your USB drive. You can find it by using the following command:
    
* Run `sudo fdisk -l` and you will receive a list of your disks. The last one is usually your USB drive, and its name is indicated under the "Device" column.
    
* ![image](https://user-images.githubusercontent.com/68082746/184545474-125dfd32-3026-410b-866a-305ad13924ce.png)
    
    As you can see, mine shows the name in the "Device" column. When using the command to create the bootable USB, you don't need to include the numbers, as they represent partitions.
    

## Completion 🏁

* Once you have executed the command to create the bootable USB, you should see a message like this:
    
    ![image](https://user-images.githubusercontent.com/68082746/184545525-837654e4-aa3d-482d-8ab6-944280cd68c7.png)
    
    ### If you see this message, it means everything went well, and you can now copy your ISOs into the USB drive 🚀
    

## Conclusion 💖

* It's interesting how practical and useful it is to have a USB drive that can boot multiple operating systems. I highly recommend giving it a try!

