Skip to content

Instantly share code, notes, and snippets.

@borissov
Last active July 19, 2020 09:08
Show Gist options
  • Save borissov/be4b6e5605b4ef5a40582fcba747ac4d to your computer and use it in GitHub Desktop.
Save borissov/be4b6e5605b4ef5a40582fcba747ac4d to your computer and use it in GitHub Desktop.
Always forget the commands for creating bootable USB..Burn Linux ISO to USB drive.
#!/bin/bash
sudo fdisk -l
sudo dd bs=4M if=/path/to/iso of=/dev/sdX status=progress && sync
#osx
diskutil list
sudo dd bs=4m if=/path/to/iso of=/dev/sdX && sync
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment