Skip to content

Commit 9042e23

Browse files
os: update debian install with caligula tui tool
1 parent 55d0e5e commit 9042e23

File tree

1 file changed

+24
-6
lines changed

1 file changed

+24
-6
lines changed

docs/os/debian-linux/install.md

Lines changed: 24 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,41 @@
11
# Debian Linux Install
22

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

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

7-
Copy the Debian Linux ISO image to a USB of 1GB size or larger
7+
[Debian Linux NetInstall ISO image - AMD64](https://cdimage.debian.org/debian-cd/current/amd64/iso-cd/debian-13.1.0-amd64-netinst.iso){.md-button}
8+
9+
10+
## Create USB startup disk
11+
12+
Copy the Debian Linux ISO image to a USB of 1GB size or larger, using one of the following tools.
13+
14+
!!! NOTE "Create USB install disk using Caligula TUI"
15+
Install the [Caligula disk image TUI](https://practical.li/engineering-playbook/os/tui/#caligula).
16+
17+
Run `calibula` with the burn command and the path to the downloaded Debian ISO image. Follow the prompts of the Caligular TUI.
818

9-
!!! EXAMPLE "Create USB install disk from Debian ISO file"
10-
Copy the ISO image to the USB disk (not a partition)
1119
```shell
12-
cp debian.iso /dev/sda
20+
Caligula burn debian.iso
1321
```
1422

15-
??? HINT "Creating USB install disks with non-Debian images"
23+
!!! NOTE "Create USB install disk using the cp command"
24+
1625
Find the name of the USB stick
26+
1727
```shell
1828
ls -l /dev/disk/by-id/usb-*
1929
```
2030

31+
Copy the ISO image to the USB disk (not a partition)
32+
33+
```shell
34+
cp debian.iso /dev/sda
35+
```
36+
37+
??? NOTE "Creating USB install disks with dd"
38+
2139
Copy the image using the name of the USB Stick
2240
```shell
2341
dd bs=4M if=path/to/filename.iso of=/dev/disk/by-id/usb-My_flash_drive conv=fsync oflag=direct status=progress

0 commit comments

Comments
 (0)