"Burning" an ISO image to USB flash drive with just dd #
- macOS with GNU Coreutils installed (brew install coreutils, etc):
gdd if=file.iso of=/dev/rdisk# bs=4M status=progress
- macOS with ancient, default version of dd:
dd if=file.iso of=/dev/rdisk# bs=4m
- Linux:
dd if=file.iso of=/dev/sdx bs=4M status=progress
More
/nix | Oct 28, 2018
Subscribe or visit the archives.