soloojos (Lemmy)@feddit.cl to Linux@lemmy.mlEnglish · 1 year agoHow to create a bootable Linux USB drivewww.zdnet.com8220116
185How to create a bootable Linux USB drivewww.zdnet.comsoloojos (Lemmy)@feddit.cl to Linux@lemmy.mlEnglish · 1 year ago82
Show Contentsomeonesmall@lemmy.ml222·1 year 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
Show Contentgr3q@lemmy.ml10·1 year agoYou can do the same with cp too. Also safer. But I use Ventoy nowadays.
Show ContentKrtek@feddit.de6·1 year 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.