Since I would rather french-kiss a light socket than run Windows, I am left in a bit of a bind where it comes to creating installation media. Can I just dd the installer to a USB stick?
Creating Installation Media Without Creator
-
tailkinker -
June 10, 2024 at 2:44 PM -
Thread is Resolved
-
-
You could use the Etcher AppImage.
balenaEtcher - Flash OS images to SD cards & USB drivesA cross-platform tool to flash OS images onto SD cards and USB drives safely and easily. Free and open source for makers around the world.etcher.balena.io -
Can I just dd the installer to a USB stick?
Yes, as root (or with sudo) use e.g: gzip -dc *.img.gz|dd of=/dev/sdX bs=64k
-
Thanks to both MatteN and mglae!