ich teste seit gestern meine preseee.cfg und habe zwei Probleme.
Problem 1: Ich möchte die Sprache auf Englisch stellen und die Tastatur auf Deutsch. Momentan ist die Sprache aber Deutsch und die Tastatur Englisch, zumindestens im vnc Fenster. Per SSH Verbindung später ist die Tastatur deutsch und die Sprache leider auch.
Ich hoffe es kann mir jemand weiterhelfen und verbleibe mit sonnigen Grüßen!
Patrick
Code: Alles auswählen
#LOCALIZATION (Englische Sprache mit deutscher Tastatur)
d-i debian-installer/language string en
d-i localechooser/supported-locales multiselect en_US.UTF-8, de_DE.UTF-8
d-i debian-installer/country string DE
d-i debian-installer/locale string de_DE.UTF-8
d-i keyboard-configuration/xkb-keymap select de
#NETWORK (Es gibt nur nur ein Interface)
d-i netcfg/choose_interface select auto
d-i netcfg/get_hostname string hostnameaendern
d-i netcfg/get_domain string japasp.de
#MIRROR
d-i mirror/country string manual
d-i mirror/http/hostname string ftp.de.debian.org
d-i mirror/http/directory string /debian
d-i mirror/http/proxy string
#ACCOUNT SETUP
d-i passwd/make-user boolean false
d-i passwd/root-password-crypted password $6$N4OSMoexH4dZbrKI$ElB61ZX9UIcUh/t3eXRmS.7dBDAguUrAEp0C7ZUVFQMSWyrpgMlCyUXyWMbpHjyk3LuV8WE9h5j/jbTABkco2/
#CLOCK/TIMEZONE
d-i clock-setup/utc boolean true
d-i time/zone string Europe/Berlin
d-i clock-setup/ntp boolean true
#PARTITIONIERUNG (BTRFS, alles in einer Partition, kein SWAP, ganze Disk verwenden)
d-i partman-auto/init_automatically_partition Guided - use entire disk
d-i partman-auto/disk string /dev/sda
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/choose_recipe select atomic
d-i partman-auto/expert_recipe string \
boot-root :: \
15000 20000 20000 btrfs \
$primary{ } $bootable{ } \
method{ format } format{ } \
use_filesystem{ } filesystem{ btrfs } \
mountpoint{ / } \
.
d-i partman-basicfilesystems/no_swap boolean false
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-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/non-free boolean true
d-i apt-setup/contrib boolean true
d-i apt-setup/services-select multiselect security, updates
d-i apt-setup/security_host string security.debian.org
#TASKSEL
tasksel tasksel/first multiselect standard, ssh-server
popularity-contest popularity-contest/participate boolean false
#GRUB
d-i grub-installer/only_debian boolean true
d-i grub-installer/with_other_os boolean true
d-i grub-installer/bootdev string /dev/sda
#COMMANDS
d-i preseed/late_command string \
in-target sh -c 'mkdir /root/.ssh; \
in-target sh -c 'echo "IPv4: \\\4" >> /etc/issue && echo "IPv6: \\\6" >> /etc/issue && echo "" >> /etc/issue';
#FINISH (Shutdown wenn Installation fertig, alle Maschinen haben definierten Status)
d-i finish-install/reboot_in_progress note
d-i debian-installer/exit/poweroff boolean true