Using “dd” to create a Bootable USB

The following commands need to be run in terminal mode, be sure to ‘fix’ the [distro-name]

Start by running the following command on your mounted USB device (to clean it up nicely)

  • sudo apt autoremove –purge  (or similar command for your distro)

The following are 4 examples of the “dd” command (use one of them modified to meet your need(s):

  1. dd if= MX-18.1_x64.iso of=/dev/sdb bs=16M && sync
  2. dd if=bl-Helium-4-amd64.iso of=/dev/sdb bs=4M && sync
  3. dd bs=4M if=manjaro-xfce.iso of=/dev/sdb && sync
  4. dd bs=4M if=MX-18.1_March_x64.iso of=/dev/sdb && sync