Download and installation
Hardware Requirements
Computer with x86_64 CPU
Memory: min 2GB, recommended 4GB+
Recommended storage: 15GB+ hard drive or SSD (operating system and programs), 10-∞GB (user data)
2GB+ USB drive or DVD-R for the installation media
Download
Download the latest ISO image
(Recommended) verify file integrity and authenticity of the ISO image with GPG:
# download the iso, signing key, checksums and signature
wget https://github.com/nodiscc/debian-live-config/releases/download/4.2.1/debian-live-config-4.2.1-debian-bookworm-amd64.iso
wget https://github.com/nodiscc/debian-live-config/releases/download/4.2.1/debian-live-config-release.key
wget https://github.com/nodiscc/debian-live-config/releases/download/4.2.1/SHA512SUMS
wget https://github.com/nodiscc/debian-live-config/releases/download/4.2.1/SHA512SUMS.sign
# import the release signing key
# the key used to sign releases has key ID 59349F4B8349C90DF1FA85C82811B9A88CFE7F24
gpg --import debian-live-config-release.key
# verify that checksums are authentic
gpg --verify SHA512SUMS.sign
# verify integrity of the ISO image
sha512sum -c SHA512SUMS
Write the bootable media
To USB - From Linux
Insert a 2GB+ USB drive
Right-click the ISO image file, and click
Open with ... > Disk image writer
(requires gnome-disks) Caution, all data on the USB drive will be erasedOr, using the command line: Identify your USB drive device name (eg.
/dev/sdc
) using thelsblk
command; Write the ISO image to the drive usingsudo dd /path/to/live-image.iso /dev/sdXXX
.
To USB - From Windows
Insert a blank 2GB+ USB drive
Download win32diskimager, extract it in a directory, then run the program.
Image file
: select your ISO image.Device
: Select your USB drive’s drive letter.Press
Write
. Caution, all data on the USB drive will be erased
To DVD
Select “burn a disk image” in your disk burning utility (Windows: InfraRecorder)
Virtualization
You can also run the system in a virtual machine on top of your existing system. In that case writing a bootable drive is not needed and you can simply load the .iso
file in the virtual machine’s CD drive. Free and open-source virtualization software includes virt-manager (Linux) or VirtualBox (Linux/MacOS/Windows).
Boot the ISO
Turn your computer off. Insert the bootable USB/DVD, and turn it back on.
The boot menu will be displayed, allowing you to install the operating system or run it in Live mode.
💥 If your computer does not boot to the DVD/USB, check that BIOS/EFI boot configuration utility is configured to boot from CD/DVD or USB.
💥 On some computers you need to disable secure boot before installing a Linux distribution.
Run the live system
A live system runs entirely in memory and allows you to use the operating system without installing it to your machine.
No changes to the Live filesystem are kept after reboot, (eg. files in user directories), the system will reset to it’s original state when the computer is powered off/rebooted. Changes to files/directory on other drives (external/USB drive, existing fixed disk…) attached to the computer will be kept - save your work there if you need to keep your changes.
The screen will lock after 5 minutes of inactivity during the live session. The password to unlock it is live
.
See Usage
Install the system to disk
Select Graphical install
from the boot menu to install a permanent copy a of the system to your hard drive. Follow instructions from the installer.
💥 The default drive partitioning configuration overwrites any previously installed operating system/data on the selected installation disk. To preserve your data, use manual partitioning in the installer, install to an empty disk, or backup your data to an external drive if needed.