From 4042a3de8e71cbbae3ced249d7f6ebf3a615cbfe Mon Sep 17 00:00:00 2001 From: Vincent Mahnke Date: Thu, 18 Dec 2025 10:34:46 +0100 Subject: [PATCH] tmp --- preseed.cfg | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 preseed.cfg diff --git a/preseed.cfg b/preseed.cfg new file mode 100644 index 0000000..d5f0f11 --- /dev/null +++ b/preseed.cfg @@ -0,0 +1,49 @@ +### Localization +d-i debian-installer/locale string en_US.UTF-8 +d-i keyboard-configuration/xkb-keymap select us +d-i time/zone string UTC + +### Network +d-i netcfg/choose_interface select auto +d-i netcfg/get_hostname string kiosk +d-i netcfg/get_domain string local + +### Mirror +d-i mirror/country string manual +d-i mirror/http/hostname string deb.debian.org +d-i mirror/http/directory string /debian +d-i mirror/http/proxy string + +### Users +d-i passwd/root-login boolean false +d-i passwd/user-fullname string Kiosk User +d-i passwd/username string kiosk +d-i passwd/user-password password kiosk +d-i passwd/user-password-again password kiosk +d-i user-setup/allow-password-weak boolean true + +### Clock +d-i clock-setup/utc boolean true +d-i clock-setup/ntp boolean true + +### Partitioning (⚠ wipes disk) +d-i partman-auto/method string regular +d-i partman-auto/choose_recipe select atomic +d-i partman-auto/confirm boolean true +d-i partman-auto/confirm_nooverwrite boolean true + +### Package selection +tasksel tasksel/first multiselect standard, ssh-server +d-i pkgsel/include string \ + xorg \ + openbox \ + chromium \ + sudo \ + curl + +### Bootloader +d-i grub-installer/only_debian boolean true +d-i grub-installer/bootdev string default + +### Finishing up +d-i finish-install/reboot_in_progress note