first commit

This commit is contained in:
Carneiro 2024-08-26 17:03:48 -03:00
commit f67acb5f5e
1 changed files with 49 additions and 0 deletions

49
preseed.cfg Normal file
View File

@ -0,0 +1,49 @@
# Preseed configuration file for Debian installation
# Localization
d-i debian-installer/locale string pt_BR
d-i debian-installer/language string pt_BR
d-i debian-installer/country string BR
d-i debian-installer/localechooser/locale string pt_BR.UTF-8
d-i keyboard-configuration/xkb-keymap select br
d-i keyboard-configuration/xkb-model select abnt2
# 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