# My preseed file for Kubuntu 20.0 LTS d-i debian-installer/locale string de_DE d-i localechooser/supported-locales multiselect de_DE.UTF-8, en_GB.UTF-8, ar_SY.UTF-8, fa_IR.UTF-8, uz_Arab_AF.UTF-8 d-i keyboard-configuration/xkb-keymap select de d-i keyboard-configuration/layoutcode string de # Optionally specify additional locales to be generated. d-i debian-installer/splash boolean false d-i console-setup/ask_detect boolean false d-i console-setup/layoutcode string de d-i console-setup/variantcode string # Enable extras.ubuntu.com. d-i apt-setup/extras boolean true ### Partitioning # If the system has free space you can choose to only partition that space. # This is only honoured if partman-auto/method (below) is not set. #d-i partman-auto/init_automatically_partition select biggest_free # Alternatively, you may specify a disk to partition. If the system has only # one disk the installer will default to using that, but otherwise the device # name must be given in traditional, non-devfs format (so e.g. /dev/sda # and not e.g. /dev/discs/disc0/disc). # For example, to use the first SCSI/SATA hard disk: #d-i partman-auto/disk string /dev/sda # In addition, you'll need to specify the method to use. # The presently available methods are: # - regular: use the usual partition types for your architecture # - lvm: use LVM to partition the disk # - crypto: use LVM within an encrypted partition #d-i partman-auto/method string regular # You can choose one of the three predefined partitioning recipes: # - atomic: all files in one partition # - home: separate /home partition # - multi: separate /home, /var, and /tmp partitions #d-i partman-auto/choose_recipe select atomic #d-i partman/default_filesystem string ext3 d-i partman/choose_partition select finish # If one of the disks that are going to be automatically partitioned # contains an old LVM configuration, the user will normally receive a # warning. This can be preseeded away... d-i partman-lvm/device_remove_lvm boolean true # The same applies to pre-existing software RAID array: d-i partman-md/device_remove_md boolean true # And the same goes for the confirmation to write the lvm partitions. d-i partman-lvm/confirm boolean true d-i partman-lvm/confirm_nooverwrite boolean true # Just in case, the positive answer to all other imagineable conformation questions: d-i partman-partitioning/confirm_write_new_label boolean true d-i partman/confirm boolean true d-i partman/confirm_nooverwrite boolean true d-i partman/confirm_write_new_label boolean true d-i partman-md/confirm boolean true # Time d-i time/zone string Europe/Berlin d-i clock-setup/utc boolean true d-i clock-setup/ntp boolean true d-i clock-setup/ntp-server string ntp.ubuntu.com ### 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 http.us.debian.org #d-i mirror/http/directory string /debian d-i mirror/http/proxy string http://apt-proxy:3142 # LinuxMint will *demand* a user during installation, ignoring the value # of the passwd/make-user flag, so we need to provide the user data here. # You should not preseed the password in clear text, this is just an example! # Set to 'oem' d-i passwd/user-fullname string OEM d-i passwd/username string oem d-i passwd/user-password-crypted password $6$VxY8Sv9YSjh6nfrd$pIxEGR3UjMLQ5bjtw4AOU/SMD8BZmGzSWDhA6hJvnOyQdKZty3Yvpsms.3Nty28SQEMcwVFEESjYbZuut0X6I0. d-i passwd/user-password-again password $6$VxY8Sv9YSjh6nfrd$pIxEGR3UjMLQ5bjtw4AOU/SMD8BZmGzSWDhA6hJvnOyQdKZty3Yvpsms.3Nty28SQEMcwVFEESjYbZuut0X6I0. d-i passwd/root-login boolean false d-i user-setup/encrypt-home boolean false d-i user-setup/allow-password-weak boolean true # Use non-free packages ubiquity ubiquity/use_nonfree boolean true # Install the Kubuntu desktop. tasksel tasksel/first multiselect kubuntu-desktop # Install KDE translation packages. d-i pkgsel/language-pack-patterns string language-pack-kde-$LL kde-i18n-$LL # Install the KDE oem-config frontend (if in OEM mode). d-i oem-config-udeb/frontend string kde # On live DVDs, don't spend huge amounts of time removing substantial # application packages pulled in by language packs. Given that we clearly # have the space to include them on the DVD, they're useful and we might as # well keep them installed. ubiquity ubiquity/keep-installed string icedtea6-plugin openoffice.org #### Advanced options ### Running custom commands during the installation # d-i preseeding is inherently not secure. Nothing in the installer checks # for attempts at buffer overflows or other exploits of the values of a # preconfiguration file like this one. Only use preconfiguration files from # trusted locations! To drive that home, and because it's generally useful, # here's a way to run any shell command you'd like inside the installer, # automatically. # This first command is run as early as possible, just after # preseeding is read. #d-i preseed/early_command string anna-install some-udeb # This command is run immediately before the partitioner starts. It may be # useful to apply dynamic partitioner preseeding that depends on the state # of the disks (which may not be visible when preseed/early_command runs). #d-i partman/early_command \ # string debconf-set partman-auto/disk "$(list-devices disk | head -n1)" # This command is run just before the install finishes, but when there is # still a usable /target directory. You can chroot to /target and use it # directly, or use the apt-install and in-target commands to easily install # packages and run commands in the target system. #d-i preseed/late_command string apt-install zsh; in-target chsh -s /bin/zsh # Script am Ende #d-i preseed/late_command string wget -O - http://netboot/kubuntu_late_command.sh | bash # on target: d-i preseed/late_command string chroot /target bash /cdrom/preseed/kubuntu_late_command.sh