alice-preseed/preseed.cfg

62 lines
1.8 KiB
INI

#_preseed_V1
#### Contents of the preconfiguration file (for bookworm)
# 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
#d-i netcfg/get_hostname seen true
#d-i netcfg/get_domain seen false
# 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
# User account setup
d-i passwd/user-fullname string Alice
d-i passwd/username string alice
#d-i passwd/user-password password user_password
#d-i passwd/user-password-again password user_password
d-i apt-setup/local0/repository string [trusted=yes] https://alice.ufsj.edu.br/ppa stable main
# Package selection
tasksel tasksel/first multiselect standard, gnome-desktop
d-i pkgsel/include string build-essential
d-i preseed/late_command string \
in-target apt update; \
in-target apt install -y alice-full;
# Install the GRUB bootloader
d-i grub-installer/only_debian boolean true
d-i grub-installer/with_other_os boolean true
d-i grub-installer/skip boolean false
# Finish the installation
d-i finish-install/reboot_in_progress note