first commit
This commit is contained in:
commit
f67acb5f5e
|
@ -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
|
Loading…
Reference in New Issue