soloojos (Lemmy) to [email protected]English • 7 months agoHow to create a bootable Linux USB drivewww.zdnet.comexternal-linkmessage-square76fedilinkarrow-up1189arrow-down117
arrow-up1172arrow-down1external-linkHow to create a bootable Linux USB drivewww.zdnet.comsoloojos (Lemmy) to [email protected]English • 7 months agomessage-square76fedilink
minus-square@[email protected]linkfedilink20•edit-27 months agoIf you’re already on linux there is no need to install special tools. Simply copy the iso directly to the USB device. dd if=distribution.iso of=/dev/sdX bs=1M && sync
minus-square@[email protected]linkfedilink9•edit-27 months agoYou can do the same with cp too. Also safer. But I use Ventoy nowadays.
minus-square@[email protected]linkfedilink6•7 months agooflag=sync also works instead of && sync. Might as well drop a status=progress in there too
If you’re already on linux there is no need to install special tools. Simply copy the iso directly to the USB device.
dd if=distribution.iso of=/dev/sdX bs=1M && sync
You can do the same with
cp
too. Also safer.But I use Ventoy nowadays.
oflag=sync also works instead of && sync. Might as well drop a status=progress in there too
cat
works as well.