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.
58 lines
2.7 KiB
58 lines
2.7 KiB
#_preseed_V1 |
|
### Locale configuration |
|
d-i debian-installer/locale string fr_FR.UTF-8 |
|
d-i debian-installer/language string fr |
|
d-i debian-installer/country string FR |
|
d-i keyboard-configuration/xkb-keymap select fr(latin9) |
|
#d-i keyboard-configuration/toggle select No toggling |
|
d-i keyboard-configuration/layoutcode string fr |
|
d-i keyboard-configuration/modelcode string pc105 |
|
d-i keyboard-configuration/variantcode string latin9 |
|
### Network configuration |
|
d-i netcfg/enable boolean false |
|
### account configuration |
|
d-i passwd/root-password password P@ssw0rd |
|
d-i passwd/root-password-again password P@ssw0rd |
|
d-i passwd/username string lfs |
|
d-i passwd/user-uid string 1000 |
|
#d-i passwd/user-default-groups string audio cdrom video |
|
### Clock and time zone setup |
|
d-i clock-setup/utc boolean true |
|
d-i time/zone string Europe/Paris |
|
# Controls whether to use NTP to set the clock during the install |
|
#d-i clock-setup/ntp boolean true |
|
# NTP server to use. The default is almost always fine here. |
|
#d-i clock-setup/ntp-server string ntp.example.com |
|
### Partitioning |
|
### Base system installation |
|
### Apt setup |
|
d-i apt-setup/use_mirror boolean false |
|
apt-cdrom-setup apt-setup/cdrom/set-next boolean false |
|
# URL to the public key of the local repository; you must provide a key or |
|
# apt will complain about the unauthenticated repository and so the |
|
# sources.list line will be left commented out. |
|
#d-i apt-setup/local0/key string http://local.server/key |
|
# By default the installer requires that repositories be authenticated |
|
# using a known gpg key. This setting can be used to disable that |
|
# authentication. Warning: Insecure, not recommended. |
|
#d-i debian-installer/allow_unauthenticated boolean true |
|
### Package selection |
|
# Or choose to not get the tasksel dialog displayed at all (and don't install |
|
# any packages): |
|
#d-i pkgsel/run_tasksel boolean false |
|
# Individual additional packages to install |
|
d-i pkgsel/include string openssh-server build-essential |
|
# Whether to upgrade packages after debootstrap. |
|
# Allowed values: none, safe-upgrade, full-upgrade |
|
#d-i pkgsel/upgrade select none |
|
popularity-contest popularity-contest/participate boolean false |
|
### Boot loader installation |
|
# Grub is the boot loader (for x86). |
|
# This is fairly safe to set, it makes grub install automatically to the UEFI |
|
# partition/boot record if no other operating system is detected on the machine. |
|
d-i grub-installer/only_debian boolean true |
|
# This command is run just before the install finishes, but when there is |
|
# still a usable /target directory. You can chroot to /target and use it |
|
# directly, or use the apt-install and in-target commands to easily install |
|
# packages and run commands in the target system. |
|
#d-i preseed/late_command string apt-install zsh; in-target chsh -s /bin/zsh |