You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
101 lines
3.9 KiB
101 lines
3.9 KiB
4 years ago
|
#_preseed_V1
|
||
|
#### Contents of the preconfiguration file (for buster)
|
||
|
### Localization
|
||
|
d-i debian-installer/language string it
|
||
|
d-i debian-installer/country string IT
|
||
|
d-i debian-installer/locale string it_IT.UTF-8
|
||
|
|
||
|
# Keyboard selection.
|
||
|
# Usare Ctrl+Alt+Backspace per terminare il server X?
|
||
|
d-i keyboard-configuration/ctrl_alt_bksp boolean true
|
||
|
|
||
|
d-i keyboard-configuration/modelcode string pc105
|
||
|
d-i keyboard-configuration/toggle select No toggling
|
||
|
d-i keyboard-configuration/altgr select The default for the keyboard layout
|
||
|
d-i keyboard-configuration/layoutcode string it
|
||
|
d-i keyboard-configuration/variant select Italiana
|
||
|
d-i keyboard-configuration/compose select No compose key
|
||
|
d-i keyboard-configuration/switch select No temporary switch
|
||
|
d-i console-setup/variantcode string qwerty
|
||
|
d-i keyboard-configuration/model select Generic 105-key PC (intl.)
|
||
|
d-i keyboard-configuration/xkb-keymap select it
|
||
|
|
||
|
d-i keyboard-configuration/unsupported_config_options boolean true
|
||
|
d-i keyboard-configuration/unsupported_config_layout boolean true
|
||
|
d-i keyboard-configuration/unsupported_layout boolean true
|
||
|
d-i keyboard-configuration/unsupported_options boolean true
|
||
|
|
||
|
### Network configuration
|
||
|
d-i netcfg/choose_interface select auto
|
||
|
d-i netcfg/get_hostname string debian-test
|
||
|
d-i netcfg/get_domain string dominio-test
|
||
|
d-i netcfg/wireless_wep string
|
||
|
d-i hw-detect/load_firmware boolean true
|
||
|
|
||
|
### Mirror settings
|
||
|
d-i mirror/country string manual
|
||
|
d-i mirror/http/hostname string debian.mirror.garr.it
|
||
|
d-i mirror/http/directory string /debian
|
||
|
d-i mirror/http/proxy string
|
||
|
|
||
|
### Account setup
|
||
|
# Skip creation of a root account (normal user account will be able to
|
||
|
# use sudo).
|
||
|
d-i passwd/root-login boolean false
|
||
|
d-i passwd/user-fullname string Virtualuser
|
||
|
d-i passwd/username string virtualuser
|
||
|
d-i passwd/user-password-crypted password $6$SmihMODnNymjr40/$YAkRABY.qE8tOjXmg0Z6X5e.mdLOUsUseNaPwaLyCjK17LzV/NLE3IfcmkQgwGjBeeQ7peGEfurqe.SBY7JHU1
|
||
|
|
||
|
### Clock and time zone setup
|
||
|
d-i clock-setup/utc boolean true
|
||
|
d-i time/zone string Europe/Rome
|
||
|
d-i clock-setup/ntp boolean true
|
||
|
|
||
|
### Partitioning
|
||
|
d-i partman-auto/disk string /dev/sda
|
||
|
d-i partman-auto/method string regular
|
||
|
d-i partman-lvm/device_remove_lvm boolean true
|
||
|
d-i partman-md/device_remove_md boolean true
|
||
|
d-i partman-lvm/confirm boolean true
|
||
|
d-i partman-lvm/confirm_nooverwrite boolean true
|
||
|
d-i partman-auto/expert_recipe string \
|
||
|
root :: \
|
||
|
4096 100 -1 ext4 \
|
||
|
$primary{ } $bootable{ } \
|
||
|
method{ format } format{ } \
|
||
|
use_filesystem{ } filesystem{ ext4 } \
|
||
|
mountpoint{ / } \
|
||
|
.
|
||
|
d-i partman-partitioning/confirm_write_new_label boolean true
|
||
|
d-i partman/choose_partition select finish
|
||
|
d-i partman/confirm boolean true
|
||
|
d-i partman/confirm_nooverwrite boolean true
|
||
|
d-i partman/mount_style select uuid
|
||
|
d-i partman-basicfilesystems/no_swap boolean false
|
||
|
|
||
|
### Apt setup
|
||
|
d-i apt-setup/non-free boolean true
|
||
|
d-i apt-setup/contrib boolean true
|
||
|
|
||
|
### Package selection
|
||
|
tasksel tasksel/first multiselect none
|
||
|
|
||
|
# Individual additional packages to install
|
||
|
# Note: "console-setup" and "keyboard-configuration" are foundamental for
|
||
|
# keyboard configuration
|
||
|
d-i pkgsel/include string nano wget openssh-server console-setup keyboard-configuration
|
||
|
|
||
|
popularity-contest popularity-contest/participate boolean false
|
||
|
|
||
|
### Boot loader installation
|
||
|
d-i grub-installer/only_debian boolean true
|
||
|
d-i grub-installer/with_other_os boolean true
|
||
|
d-i grub-installer/bootdev string /dev/sda
|
||
|
|
||
|
### Finishing up the installation
|
||
|
d-i finish-install/reboot_in_progress note
|
||
|
d-i debian-installer/exit/poweroff boolean true
|
||
|
|
||
|
#### Advanced options
|
||
|
d-i preseed/late_command string modprobe usb-storage isofs; mkdir -p /cdrom; mount /dev/cdrom /cdrom; cp -r /cdrom/custom /target/srv/custom
|