Copy .iso file to usb to boot

From AcrodusWiki
Revision as of 20:34, 1 October 2024 by Alex (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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.