Linux write iso-file to (bootable) usb

Date: 2018-07-18
#!/bin/bash
file=linuxmint-19-xfce-64bit-v2.iso
usb=/dev/sdc
sudo dd if=$file of=$usb bs=4M status=progress && sync

 

11780cookie-checkLinux write iso-file to (bootable) usb