Skip to content

Debian Linux Installλ︎

Debian provides ISO images which can be burned onto USB memory sticks (or other removable media, e.g. compact disks).

The net install image is small and quick to download, containing only the essential packages to run an operating system.

Debian Linux NetInstall ISO image - AMD64

Create USB startup diskλ︎

Copy the Debian Linux ISO image to a USB of 1GB size or larger, using one of the following tools.

Create USB install disk using Caligula TUI

Install the Caligula disk image TUI.

Run calibula with the burn command and the path to the downloaded Debian ISO image. Follow the prompts of the Caligular TUI.

Caligula burn debian.iso

Create USB install disk using the cp command

Find the name of the USB stick

ls -l /dev/disk/by-id/usb-*

Copy the ISO image to the USB disk (not a partition)

cp debian.iso /dev/sda
Creating USB install disks with dd

Copy the image using the name of the USB Stick

dd bs=4M if=path/to/filename.iso of=/dev/disk/by-id/usb-My_flash_drive conv=fsync oflag=direct status=progress
Arch Linux: ISO image command line utilities