6 ms·
dd is just 79K As simple as sudo dd if=name-of-iso.iso of=/dev/sdb status="progress" https://medium.com/@tbeach/use-unix-dd-command-to-os-bootable-on-usb-dri
by lomkju 6y ago
dd is just 79K
As simple as
sudo dd if=name-of-iso.iso of=/dev/sdb status="progress"
https://medium.com/@tbeach/use-unix-dd-command-to-os-bootable-on-usb-drive-6671945d95a6 https://medium.com/@tbeach/use-unix-dd-command-to-os-bootabl...
You're Welcome.
- pantalaimon 6y agoActually you can just use cp cp name-of-iso.iso /dev/sdb
- charlesdaniels 6y agoIf you care about showing the progress pv < input.iso > /dev/sdX Is a more portable way to do that, as "status=progress" is a GNU modification to dd, as I recall. Of course the most portable is to use one of the POSIX mainstays like cat or cp.
- ed25519FUUU 6y agocat foo.iso > /dev/sdb