Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
tools:preseed [2024/01/19 14:53] – created darron | tools:preseed [2024/01/20 11:21] (current) – [Example configuration] darron | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | TODO | + | ====Debian preseed==== |
+ | |||
+ | ===Configuration=== | ||
+ | |||
+ | Example for Debian 12 Bookworm | ||
+ | |||
+ | < | ||
+ | # https:// | ||
+ | |||
+ | # B.4.1. Localization | ||
+ | |||
+ | d-i debian-installer/ | ||
+ | d-i debian-installer/ | ||
+ | d-i debian-installer/ | ||
+ | d-i debian-installer/ | ||
+ | d-i keyboard-configuration/ | ||
+ | |||
+ | # B.4.2. Network configuration | ||
+ | |||
+ | d-i netcfg/ | ||
+ | |||
+ | # B.4.3. Network console | ||
+ | |||
+ | d-i netcfg/ | ||
+ | d-i netcfg/ | ||
+ | d-i netcfg/ | ||
+ | d-i netcfg/ | ||
+ | d-i netcfg/ | ||
+ | d-i netcfg/ | ||
+ | d-i netcfg/ | ||
+ | d-i netcfg/ | ||
+ | |||
+ | # B.4.4. Mirror settings | ||
+ | |||
+ | # B.4.5. Account setup | ||
+ | |||
+ | d-i passwd/ | ||
+ | d-i passwd/ | ||
+ | d-i passwd/ | ||
+ | d-i passwd/ | ||
+ | |||
+ | # B.4.6. Clock and time zone setup | ||
+ | |||
+ | d-i clock-setup/ | ||
+ | d-i time/zone string Etc/UTC | ||
+ | d-i clock-setup/ | ||
+ | d-i clock-setup/ | ||
+ | |||
+ | # B.4.7. Partitioning | ||
+ | |||
+ | d-i partman-auto/ | ||
+ | d-i partman-auto/ | ||
+ | d-i partman-auto/ | ||
+ | d-i partman-partitioning/ | ||
+ | d-i partman/ | ||
+ | d-i partman/ | ||
+ | d-i partman/ | ||
+ | |||
+ | # B.4.7.3. Controlling how partitions are mounted | ||
+ | |||
+ | d-i partman/ | ||
+ | |||
+ | # B.4.8. Base system installation | ||
+ | |||
+ | d-i base-installer/ | ||
+ | |||
+ | # B.4.9. Apt setup | ||
+ | |||
+ | d-i apt-setup/ | ||
+ | d-i apt-setup/ | ||
+ | d-i apt-setup/ | ||
+ | d-i apt-setup/ | ||
+ | d-i apt-setup/ | ||
+ | d-i apt-setup/ | ||
+ | d-i apt-setup/ | ||
+ | d-i debian-installer/ | ||
+ | |||
+ | apt-mirror-setup apt-setup/ | ||
+ | |||
+ | # B.4.10. Package selection | ||
+ | |||
+ | tasksel tasksel/ | ||
+ | d-i pkgsel/ | ||
+ | popularity-contest popularity-contest/ | ||
+ | |||
+ | # B.4.11. Boot loader installation | ||
+ | |||
+ | d-i grub-installer/ | ||
+ | d-i grub-installer/ | ||
+ | |||
+ | # B.4.12. Finishing up the installation | ||
+ | |||
+ | d-i finish-install/ | ||
+ | d-i cdrom-detect/ | ||
+ | |||
+ | # B.4.13. Preseeding other packages | ||
+ | |||
+ | # B.5.1. Running custom commands during the installation | ||
+ | |||
+ | d-i preseed/ | ||
+ | in-target --pass-stdout echo PermitRootLogin yes >> / | ||
+ | in-target --pass-stdout echo deb http: | ||
+ | in-target --pass-stdout echo deb http: | ||
+ | in-target --pass-stdout echo deb http: | ||
+ | in-target apt-get update; \ | ||
+ | in-target apt-get -y full-upgrade; | ||
+ | |||
+ | </ | ||
+ | |||
+ | ===Resources== | ||
+ | |||
+ | [[https:// | ||
+ | |||
+ | [[https:// |