Menu

Terminal commands dd iso to USB

Anonymous Peppermint OS

Examples how write an iso to your USB via CLI, prior to installing a new OS to your computer. Use lsblk to ensure your target is sdX1, all examples reflect my twin disk set up, if for example you have a latop, 9 times out of 10 it will be sdb1, unless it uses a modern NVME SSD, which /dev/nvme0n1p the USB is sda1, BUT check...!

Also check the actual name of the iso, for example the Debian Netinstall used is out of date, as are other list examples as they usually include a date or version number.

PeppermintOS
sudo dd bs=1M if=PeppermintOS-amd64.iso of=/dev/sdc1 status=progress && sync

PeppermintOS Devuan
sudo dd bs=1M if=PeppermintOS-devuan_64_xfce2024-06-02.iso of=/dev/sdc1 status=progress && sync

Debian Netinstall
sudo dd bs=1M if=firmware-9.5.0-amd64-netinst.iso of=/dev/sdc1 status=progress && sync

Manjaro Xfce
sudo dd bs=1M if=manjaro-xfce-18.0.1-stablex86_64.iso of=/dev/sdc1 status=progress && sync

MXLinux Xfce
sudo dd bs=1M if=MX-17.1_x64.iso of=/dev/sdc1 && sync

PCLOS KDE
sudo dd bs=1M if=pclinuxos64-kde5-2018.06.iso of=/dev/sdc1 status=progress && sync