preseed.cfg (3273B)
1 # Preseeding only locale sets language, country and locale. 2 d-i debian-installer/locale string en_US 3 4 # Keyboard selection. 5 d-i console-setup/ask_detect boolean false 6 d-i keyboard-configuration/xkb-keymap select us 7 8 ### Clock and time zone setup 9 d-i clock-setup/utc boolean true 10 d-i time/zone string UTC 11 12 # Avoid that last message about the install being complete. 13 d-i finish-install/reboot_in_progress note 14 15 # This is fairly safe to set, it makes grub install automatically to the MBR 16 # if no other operating system is detected on the machine. 17 d-i grub-installer/only_debian boolean true 18 # To install to the first device (assuming it is not a USB stick): 19 d-i grub-installer/bootdev string default 20 21 ### Mirror settings 22 # If you select ftp, the mirror/country string does not need to be set. 23 #d-i mirror/protocol string ftp 24 d-i mirror/country string manual 25 d-i mirror/http/hostname string debian.ethz.ch 26 d-i mirror/http/directory string /debian 27 d-i mirror/http/proxy string 28 29 ### Apt setup 30 # Select which update services to use; define the mirrors to be used. 31 # Values shown below are the normal defaults. 32 d-i apt-setup/services-select multiselect security, updates 33 d-i apt-setup/security_host string security.debian.org 34 35 # Do not prompt for scanning of additional CDs 36 apt-cdrom-setup apt-setup/cdrom/set-first boolean false 37 apt-cdrom-setup apt-setup/cdrom/set-next boolean false 38 apt-cdrom-setup apt-setup/cdrom/set-failed boolean false 39 apt-cdrom-setup apt-setup/cdrom/set-double boolean false 40 41 # Don't report statistics 42 popularity-contest popularity-contest/participate boolean false 43 44 ### Partitioning 45 d-i partman-auto/method string lvm 46 47 # This makes partman automatically partition without confirmation. 48 d-i partman-partitioning/confirm_write_new_label boolean true 49 d-i partman/choose_partition select finish 50 d-i partman/confirm boolean true 51 d-i partman/confirm_nooverwrite boolean true 52 53 # Choose atomic partitioning recipes (all files in one partition) 54 d-i partman-auto/choose_recipe select atomic 55 # Use max space available for the new LVM volume 56 d-i partman-auto-lvm/guided_size string max 57 58 # Confirmation to write the lvm partitions 59 d-i partman-lvm/confirm boolean true 60 d-i partman-lvm/confirm_nooverwrite boolean true 61 62 # Skip creation of a root account (normal user account will be able to 63 # use sudo). 64 d-i passwd/root-login boolean false 65 # Alternatively, to skip creation of a normal user account. 66 # d-i passwd/make-user boolean false 67 68 # Root password, either in clear text 69 #d-i passwd/root-password password root 70 #d-i passwd/root-password-again password root 71 # or encrypted using a crypt(3) hash. 72 #d-i passwd/root-password-crypted password [crypt(3) hash] 73 74 ### Account setup 75 d-i passwd/user-fullname string debian 76 d-i passwd/user-uid string 1000 77 d-i passwd/user-password password debian 78 d-i passwd/user-password-again password debian 79 d-i passwd/username string debian 80 81 # The installer will warn about weak passwords. If you are sure you know 82 # what you're doing and want to override it, uncomment this. 83 d-i user-setup/allow-password-weak boolean true 84 d-i user-setup/encrypt-home boolean false 85 86 ### Package selection 87 tasksel tasksel/first multiselect standard, ssh-server 88 d-i pkgsel/include string openssh-server build-essential 89 d-i pkgsel/upgrade select full-upgrade