-
Notifications
You must be signed in to change notification settings - Fork 3
unattended
Unattended installation comprises of two phases:
- Installation of OS itself with automatic answers
- Provisioning of installed OS (application installation, configuration etc.)
It is tightly coupled with Infrastructure as a Code concept.
Uses PXE boot, which can roughly be depicted as (BIOS example):
PXE booting relies on platform firmware, its configuration files are different for BIOS and its successor UEFI.
Hardware initialization in not exactly standarized manner (as reverse engineered from IBM first implementation).
After POST boots by reading and executing first sector on hard disk. Booting runs in 16-bit processor mode and has only 1MB of space to execute in. Has problems with parallel device initialization. Can boot only from hard disks of size less than 2.1TB
Uses MBR partitioning scheme
Has no limitations of BIOS, standarized (by Intel).
Specifies following servies available for OS and OS loader:
System table |
---|
Boot time services |
Run time services |
Console |
Additional tables |
Boots by loading EFI program files.
Uses GPT partitioning scheme
Named as: preseeding
Example of preseed with custom partition setup
d-i partman-auto/choose_recipe select expert
d-i partman-auto/expert_recipe string \
boot-root :: \
2048 2200 4096 ext4 \
$primary{ } $bootable{ } \
method{ format } format{ } \
use_filesystem{ } filesystem{ ext4 } \
mountpoint{ / } \
. \
1024 1100 1500 ext4 \
method{ format } format{ } \
use_filesystem{ } filesystem{ ext4 } \
mountpoint{ /home } \
. \
1024 1100 1500 ext4 \
method{ format } format{ } \
use_filesystem{ } filesystem{ ext4 } \
mountpoint{ /var } \
. \
1024 1030 1056 linux-swap \
method{ swap } format{ } \
.
- https://www.debian.org/releases/stretch/example-preseed.txt
- https://wikitech.wikimedia.org/wiki/PartMan
- https://wiki.debian.org/DebianInstaller/Preseed
- https://www.debian.org/releases/stable/amd64/ch03s06.html.en#UEFI
- http://fai-project.org/fai-guide/
- https://www.youtube.com/watch?v=bNL1pd-rwCU
- https://www.howtogeek.com/56958/htg-explains-how-uefi-will-replace-the-bios/
- General
- OS
- Networks
- Configuration
- Protocols
- Link layer
- Sockets
- Routing
- Tunneling
- Debugging
- LoRa
- Virtualization
- Infrastructure as a code
- Desktop environments
- Monitoring
- Benchmarking