Ich versuche über die Minimal ISO ein preseed da ich mitgebe auf USB zu laden und die installation zu automatisieren.
Später soll das preseed eine automatische installation mehrer Rechner über PXE ermöglichen (auch mehr software als aktuell nur openssh-server build-essential)
Aktuell bricht er mit einer Kernel panic ab.
Meine txt.cfg
timeout 1 default custom label custom menu label ^Install menu default kernel linux append preseed/file=/hd-media/preseed/custom.cfg
Presed Custom.cfg
d-i debian-installer/language string de d-i debian-installer/country string DE d-i debian-installer/locale string de_DE.UTF-8 d-i localechooser/supported-locales multiselect en_US.UTF-8 d-i console-setup/ask_detect boolean false d-i keyboard-configuration/xkb-keymap select de d-i netcfg/choose_interface select auto d-i mirror/protocol string http d-i mirror/country string manual d-i mirror/http/hostname string archive.ubuntu.com d-i mirror/http/directory string /ubuntu #d-i mirror/http/proxy string d-i mirror/http/mirror select de.archive.ubuntu.com d-i mirror/suite string xenial d-i passwd/root-login boolean true d-i passwd/make-user boolean false d-i passwd/root-password password root d-i clock-setup/utc boolean false d-i time/zone string Europe/Berlin d-i clock-setup/ntp boolean true d-i clock-setup/ntp-server string de.pool.ntp.org d-i partman-auto/method string regular d-i partman-lvm/device_remove_lvm boolean true d-i partman-md/device_remove_md boolean true d-i partman-auto/choose_recipe select home d-i partman-partitioning/confirm_write_new_label boolean true d-i partman/choose_partition select finish d-i partman/confirm boolean true d-i partman/confirm_nooverwrite boolean true d-i partman/mount_style select traditional d-i live-installer/net-image string /casper/filesystem.squashfs d-i base-installer/install-recommends boolean true d-i base-installer/kernel/image string linux-generic d-i apt-setup/restricted boolean true d-i apt-setup/universe boolean true d-i apt-setup/backports boolean false d-i apt-setup/use_mirror boolean true d-i apt-setup/services-select multiselect security d-i apt-setup/security_host string security.ubuntu.com d-i apt-setup/security_path string /ubuntu tasksel tasksel/first multiselect standard d-i pkgsel/include string openssh-server build-essential d-i pkgsel/upgrade select full-upgrade d-i pkgsel/language-packs multiselect de, en d-i pkgsel/update-policy select unattended-upgrades popularity-contest popularity-contest/participate boolean false d-i pkgsel/updatedb boolean false d-i grub-installer/skip boolean false d-i lilo-installer/skip boolean true d-i grub-installer/only_debian boolean true d-i grub-installer/with_other_os boolean true d-i finish-install/keep-consoles boolean true d-i finish-install/reboot_in_progress note d-i cdrom-detect/eject boolean false d-i debian-installer/exit/reboot boolean true