A bash script that's able create a boot-able USB out of ISO. It has a feature to automatically select USB drive if there's only one mounted. It will prompt you if there are multiple USB drives.
BootISO is very easy to install in your system. Just download it and paste it in /usr/bin folder. For now, we'll use command-line instead to install it to simplify it.
# We'll download the file into this folder
cd "/usr/bin"
wget "https://git.io/bootiso"
# Mark it as a executable bash script
chmod +x "bootiso"Note: the
-yoption doesn't ask you for data deletion permission but we'll use it for automating things.
bootiso -y "path/to/file"By default, it automatically detects USB drives. If there are multiple ones it will prompt for the device_id.
Or, use -d </dev/sdX> flag to not make it prompt!
bootiso -d "/dev/sdb" -y "path/to/file"That's it, you've learned the basic guide to use BootISO. Read the creators documentation for more information.