Archiv für den Monat: Januar 2016

Ubuntu preseed


################################################################################
### Localization ###
################################################################################
# Preseeding only locale sets language, country and locale.
#d-i debian-installer/locale string en_US
#d-i debian-installer/locale string en_GB.UTF-8
d-i debian-installer/locale string de_DE

# Sets language.
#d-i debian-installer/language string en
d-i debian-installer/language string de

# Sets country.
#d-i debian-installer/country string US
d-i debian-installer/country string DE

# Optionally specify additional locales to be generated.
#d-i localechooser/supported-locales en_US.UTF-8

# Continue the installation in the selected language?
d-i localechooser/translation/warn-light boolean false
#d-i localechooser/translation/warn-light boolean true
d-i localechooser/translation/warn-severe boolean false
#d-i localechooser/translation/warn-severe boolean true

################################################################################
### Keyboard ###
################################################################################
# Disable automatic (interactive) keymap detection.
d-i console-setup/ask_detect boolean false

# Keyboard model code (for 2.6 kernels normally a "pc105" model should be
# selected).
#d-i keyboard-configuration/modelcode string pc105
Weiterlesen