# pressed.cfg # http://wiki.debian.org/Enterprise # modified Koen Noens, April 2008 # # preseed file follow roughly installer order # # # Where are we ? #################################################################### # Locale sets language and country. d-i debian-installer/locale string en_US d-i debian-installer/locale select en_US.UTF-8 d-i languagechooser/language-name-fb select English # Keyboard selection. d-i console-tools/archs string skip-config d-i console-keymaps-at/keymap select be2-latin # Networking #################################################################### # Automatic with dhcp d-i netcfg/choose_interface select auto #d-i netcfg/dhcp_timeout string 60 #d-i netcfg/disable_dhcp boolean true d-i netcfg/disable_dhcp boolean false # Fallback if dhcp doesn't work #+ notify and do it manually d-i netcfg/dhcp_failed note d-i netcfg/dhcp_options select Configure network manually #+ Static network configuration. d-i netcfg/get_nameservers string 192.168.1.1 d-i netcfg/get_ipaddress string 192.168.1.25 d-i netcfg/get_netmask string 255.255.255.0 d-i netcfg/get_gateway string 192.168.1.1 d-i netcfg/confirm_static boolean true # Handle Wireless d-i netcfg/wireless_wep string #d-i netcfg/dhcp_hostname string radish # Network Configuration #+ fallback for values not provided by dhcp d-i netcfg/get_hostname string debian d-i netcfg/get_domain string localdomain.xx # Disk Partitioning and Boot loader #################################################################### ## Grub grub-installer grubinstaller/skip boolean false grub-installer grubinstaller/only_debian boolean true grub-installer grubinstaller/with_other_os boolean true ## Partitioning # Note: this must be preseeded with a localized (translated) value. # search the web for suitable partman recipes and use at own risk # Time #################################################################### # Timezone d-i tzconfig/gmt boolean true d-i tzconfig/choose_country_zone/Europe select Brussels d-i tzconfig/choose_country_zone_single boolean true d-i time/zone select Europe/Brussels d-i clock-setup/utc boolean true # use NTP to set the clock during the install d-i clock-setup/ntp boolean true d-i clock-setup/ntp-server kdunix.whitespace.xx # User Creation #################################################################### # Root User d-i passwd/root-login boolean true #d-i passwd/root-password-crypted passwd [m5hash] # Mere Mortal #+ to skip creation of a normal user account. d-i passwd/make-user boolean false #+ user #d-i passwd/user-fullname string Administrator #d-i passwd/username string admin2 #d-i passwd/user-password-crypted passwd [m5hash] # Create the first user with the specified UID instead of the default. #d-i passwd/user-uid string 1010 # The user account will be added to some standard initial groups. To # override that, use this. #d-i passwd/user-default-groups string audio cdrom video # Installation Sources #################################################################### # Where are we installing from ? d-i mirror/http/countries select enter information manually d-i mirror/protocol select http d-i mirror/http/hostname string ftp.belnet.be d-i mirror/http/directory string /debian/ d-i mirror/suite string etch d-i mirror/http/proxy string # Configure Apt d-i apt-setup/use_mirror boolean true d-i apt-setup/hostname string ftp.belnet.be d-i apt-setup/directory string /debian/ d-i apt-setup/non-free boolean true d-i apt-setup/contrib boolean true d-i apt-setup/security-updates boolean true d-i apt-setup/security-updates-fail string security.debian.org apt-mirror-setup apt-setup/use_mirror boolean true apt-mirror-setup mirror/http/hostname string ftp.belnet.be apt-mirror-setup apt-setup/contrib boolean true apt-mirror-setup apt-setup/non-free boolean true #d-i debian-installer/allow_unauthenticated string true # Software Setup #################################################################### # kernel d-i base-installer/kernel/image string linux-image-2.6-486 # Participate in the package usage survey? d-i popularity-contest/participate boolean true #tasksel : don't install anyting d-i tasksel/first multiselect tasksel tasksel/first multiselect tasksel tasksel/tasks multiselect # Individual additional packages to install d-i pkgsel/include string xorg xfce4 synaptic update-notifier menu #d-i base-installer/kernel/linux/initramfs-generators string yaird # X11 config xserver-xorg xserver-xorg/autodetect_monitor boolean true xserver-xorg xserver-xorg/config/monitor/selection-method select medium xserver-xorg xserver-xorg/config/monitor/mode-list select 1024x768 @ 60 Hz xserver-xorg xserver-xorg/config/display/modes multiselect 1024x768, 800x600 # Avoid that last message about the install being complete. d-i finish-install/reboot_in_progress note #### Advanced options ### Running custom commands during the installation ########################################################################### ## Run Early : as soon as preseed is read #d-i preseed/early_command string anna-install some-udeb # Run Late : just before installation finishes ( ~ /target )