Copy .iso file to usb to boot: Difference between revisions
From AcrodusWiki
(Created page with "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/sdbx status=progress oflag=sync") |
No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
This can easily be done with a one line command in the linux terminal as seen below: | 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/ | : 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.