Created
September 26, 2016 21:52
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
unattended-upgrades unattended-upgrades/enable_auto_updates boolean true | |
### Keyboard selection ### | |
d-i keyboard-configuration/layoutcode string de | |
d-i keyboard-configuration/variantcode string | |
### Locale ### | |
d-i debian-installer/locale string de_DE | |
d-i debian-installer/country DE | |
d-i localchooser/translation/warn-light boolean false | |
### Timezone ### | |
d-i time/zone select Europe/Berlin | |
d-i clock-setup/utc boolean true | |
d-i clock-setup/ntp boolean true | |
d-i console-setup/ask_detect boolean false | |
d-i console-setup/layoutcode string de | |
#################################################################### | |
# Networking | |
#################################################################### | |
# Network Configuration | |
d-i netcfg/enable boolean true | |
d-i netcfg/choose_interface select auto | |
d-i netcfg/disable_dhcp boolean false | |
d-i netcfg/get_domain string chaosnetz.org | |
d-i netcfg/wireless_wep string | |
### Mirror settings | |
# If you select ftp, the mirror/country string does not need to be set. | |
#d-i mirror/protocol string ftp | |
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 passwd/user-fullname string Chaosnetz | |
d-i passwd/username string chaosnetz | |
# Normal user's password, either in clear text | |
d-i passwd/user-password password XXX | |
d-i passwd/user-password-again password XXX | |
d-i passwd/auto-login boolean true | |
d-i user-setup/allow-password-weak boolean true | |
d-i passwd/user-default-groups string audio cdrom video | |
d-i user-setup/encrypt-home boolean false | |
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-lvm/confirm boolean true | |
d-i partman-lvm/confirm_nooverwrite boolean true | |
d-i partman-auto-lvm/guided_size string max | |
d-i partman-auto/choose_recipe select atomic | |
d-i partman-md/confirm boolean true | |
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 | |
### Apt setup | |
d-i apt-setup/restricted boolean true | |
### Package selection | |
tasksel tasksel/first multiselect xubuntu-desktop | |
# Avoid that last message about the install being complete. | |
d-i finish-install/reboot_in_progress note | |
d-i pkgsel/upgrade select full-upgrade | |
d-i preseed/late_command string \ | |
in-target apt-get install openjdk-9-jdk eclipse eclipse-jdt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment