2024-08-27 16:08:13 -03:00
|
|
|
# Set the language to Brazilian Portuguese
|
|
|
|
d-i debian-installer/language string pt
|
2024-08-26 17:03:48 -03:00
|
|
|
d-i debian-installer/country string BR
|
2024-08-27 16:08:13 -03:00
|
|
|
d-i debian-installer/locale string pt_BR.UTF-8
|
|
|
|
d-i localechooser/supported-locales multiselect pt_BR.UTF-8, en_US.UTF-8
|
2024-08-26 17:03:48 -03:00
|
|
|
|
|
|
|
# Network configuration
|
|
|
|
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
|
|
|
|
d-i clock-setup/utc boolean true
|
|
|
|
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 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
|
|
|
|
d-i pkgsel/include string build-essential
|
|
|
|
|
|
|
|
# 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
|