Skip to content

Instantly share code, notes, and snippets.

@KavenTheriault
Last active July 28, 2020 14:43
Show Gist options
  • Save KavenTheriault/10e19b8958c2701907c0c82c6db29ba0 to your computer and use it in GitHub Desktop.
Save KavenTheriault/10e19b8958c2701907c0c82c6db29ba0 to your computer and use it in GitHub Desktop.
Copy iso file on usb

Use “fdisk -l” to find the USB device

fdisk -l

Make sure the USB device is unmounted

umount /dev/sd**

Copy iso file on device

sudo dd bs=4M if={iso_file.iso} of=/dev/sda conv=fdatasync
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment