/dev/sdx
and /dev/diskx
below as an example. Double check that /dev/sdx
or /dev/diskx
is the USB drive you want to write the image to. It is important the drive is not mounted. Run lsblk
or diskutil list
to make sure there is no mount point for the device. If there is a mount point, umount
the drive first.
lsblk
umount /dev/sdx
or umount /media/usbx
, unmount device or directorysudo dd if=/path/to/iso of=/dev/sdx bs=4096
, this step can take 10~30 mineject /dev/sdx
diskutil list
diskutil unmountDisk /dev/diskx
, unmount device or directorysudo dd if=/path/to/iso of=/dev/diskx bs=4096
, this step can take 10~30 mindiskutil eject
Some of the non-free firmware may be needed during installation. The type of hardware that needs firmware during installation includes wireless network cards. Debian has a firmware wiki with detailed instructions. You can download and unpack the non-free firmware in a firmware
folder on a separate USB drive. This USB drive may be needed during the installing process.
In the motherboard BIOS, CSM (or BIOS legacy mode) should be disabled in UEFI to guarantee that it always boots into UEFI. One reason for the need of UEFI is the GPT partitioning scheme. If not sure if UEFI is engaged, the Debian bootable image, onced loaded, should display “UEFI Installer” in the title; otherwise revisit the UEFI settings of the motherboard. For more information about UEFI, check the Debian wiki.
Next step: Installation