Preseeding The Debian Installer
Preseeding The Debian Installer
Preseeding The Debian Installer
and Ubun-too!
Brian Pitts
http://polibyte.com
Introduction
Preseeding is a way to
Answer questions asked during installation
Run scripts during installation
Customize software installed
Debconf
# Enable oem mode and set blank password for user with name "oem"
d-i oem-config/enable boolean true
d-i passwd/allow-password-empty boolean true
d-i passwd/user-fullname string OEM Configuration (temporary user)
d-i passwd/username string oem
d-i passwd/user-password string
d-i passwd/user-password-again string
# set hostname
d-i netcfg/get_hostname string ubuntu
# Keyboard selection
d-i console-setup/ask_detect boolean false
d-i console-setup/layoutcode string us
Sample Ubiquity Preseed II
# Set timezone
d-i time/zone string America/New_York
# Controls whether to use NTP to set the clock during the install
# Say no so we don't wait if there's no network connection
d-i clock-setup/ntp boolean false
http://d-i.alioth.debian.org/manual/en.i386/apb.html
https://help.ubuntu.com/8.10/installation-guide/i386/appendix-preseed.html
https://wiki.ubuntu.com/DesktopCDOptions
https://wiki.ubuntu.com/UbiquityAutomation