# Ubuntu server 64bit example kickstart/seed # System language #lang en_US lang en_GB # Language modules to install #langsupport en_US langsupport en_GB # System keyboard keyboard us # System mouse mouse # System timezone #timezone America/Chicago timezone --utc America/Chicago # Root password rootpw --disabled # Initial user user ubuntu --fullname "" --password ubuntu preseed user-setup/allow-password-weak boolean true # Reboot after installation reboot # Use text mode install text # Install OS instead of upgrade install # Use http installation media #url --url http://archive.ubuntu.com/ubuntu url --url http://mirror.incero.com/ubuntu #cdrom # System bootloader configuration bootloader --location=mbr # Clear the Master Boot Record zerombr yes # Partition clearing information clearpart --all --initlabel # Partition setup part /boot --fstype ext2 --size 200 --asprimary #part swap --size 1024 part pv.01 --size 1 --grow volgroup rootvg pv.01 logvol / --fstype ext4 --vgname=rootvg --size=1 --grow --name=rootvol preseed partman-lvm/confirm_nooverwrite boolean true # If you have swap commented out/not specified then you need to have this line. preseed --owner partman-basicfilesystems partman-basicfilesystems/no_swap boolean false # System authorization infomation auth --useshadow --enablemd5 # Firewall configuration firewall --disabled # Do not configure the X Window System skipx