Update preseed.cfg
This commit is contained in:
parent
e00cb4f794
commit
8bc925cda5
42
preseed.cfg
42
preseed.cfg
|
@ -1,39 +1,47 @@
|
|||
# Set the language to Brazilian Portuguese
|
||||
d-i debian-installer/language string pt
|
||||
d-i debian-installer/country string BR
|
||||
d-i debian-installer/locale string pt_BR.UTF-8
|
||||
d-i localechooser/supported-locales multiselect pt_BR.UTF-8, en_US.UTF-8
|
||||
#_preseed_V1
|
||||
#### Contents of the preconfiguration file (for bookworm)
|
||||
|
||||
# Network configuration
|
||||
# Configurações de localização e idioma
|
||||
d-i localechooser/shortlist select BR
|
||||
d-i localechooser/languagelist select pt_BR
|
||||
d-i debian-installer/country string BR
|
||||
d-i debconf/language string pt_BR
|
||||
d-i debian-installer/locale select pt_BR.UTF-8
|
||||
|
||||
# Configuração do teclado
|
||||
d-i keyboard-configuration/xkb-keymap select br
|
||||
d-i keyboard-configuration/layoutcode string br
|
||||
d-i keyboard-configuration/toggle select No toggling
|
||||
|
||||
# Configuração de rede
|
||||
d-i netcfg/choose_interface select auto
|
||||
|
||||
# Hostname
|
||||
d-i netcfg/get_hostname string
|
||||
d-i netcfg/get_domain string
|
||||
|
||||
# Timezone
|
||||
d-i time/zone string America/Sao_Paulo
|
||||
|
||||
# Clock and partitioning
|
||||
# Timezone and time
|
||||
d-i clock-setup/utc boolean true
|
||||
d-i time/zone string America/Sao_Paulo
|
||||
d-i clock-setup/ntp boolean true
|
||||
|
||||
d-i partman/confirm_write_new_label boolean false
|
||||
d-i partman/confirm boolean false
|
||||
d-i partman/confirm_nooverwrite boolean false
|
||||
d-i partman/auto-disk string
|
||||
|
||||
# Root password
|
||||
d-i passwd/root-password password
|
||||
d-i passwd/root-password-again password
|
||||
#d-i passwd/root-password password
|
||||
#d-i passwd/root-password-again password
|
||||
|
||||
# User account setup
|
||||
d-i passwd/user-fullname string User
|
||||
d-i passwd/username string user
|
||||
d-i passwd/user-password password user_password
|
||||
d-i passwd/user-password-again password user_password
|
||||
#d-i passwd/user-fullname string User
|
||||
#d-i passwd/username string user
|
||||
#d-i passwd/user-password password user_password
|
||||
#d-i passwd/user-password-again password user_password
|
||||
|
||||
# Package selection
|
||||
tasksel tasksel/first multiselect standard
|
||||
tasksel tasksel/first multiselect standard, gnome-desktop, libpam-ldap, nslcd
|
||||
d-i pkgsel/include string build-essential
|
||||
|
||||
# Install the GRUB bootloader
|
||||
|
|
Loading…
Reference in New Issue