Skip to content

Instantly share code, notes, and snippets.

@kyoheiyazawa
Created February 17, 2020 01:40
Show Gist options
  • Save kyoheiyazawa/0f3af4d1278aca76e57f6648ad0ffc3c to your computer and use it in GitHub Desktop.
Save kyoheiyazawa/0f3af4d1278aca76e57f6648ad0ffc3c to your computer and use it in GitHub Desktop.
.iso to USB drive Linux
  • Find USB drive
sudo fdisk -l

USB is /dev/sda

  • Unmount partition
umount /dev/sda1
  • Copy image
sudo dd bs=4M status=progress if=path_to_file.iso of=/dev/sda
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment