Copy .iso file to usb to boot: Difference between revisions
From AcrodusWiki
No edit summary |
No edit summary |
||
Line 2: | Line 2: | ||
: dd bs=4M if=/path/to/file.iso of=/dev/sdx status=progress oflag=sync | : dd bs=4M if=/path/to/file.iso of=/dev/sdx status=progress oflag=sync | ||
dd command is for copying files. See man dd. |
Latest revision as of 20:34, 1 October 2024
This can easily be done with a one line command in the linux terminal as seen below:
- dd bs=4M if=/path/to/file.iso of=/dev/sdx status=progress oflag=sync
dd command is for copying files. See man dd.