Last active
January 1, 2016 21:08
-
-
Save craigcalef/8201088 to your computer and use it in GitHub Desktop.
Ubuntu preseed for fast, automated installation.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Ubuntu Server Quick Install | |
# Based on http://bit.ly/uquick-doc by Dustin Kirkland <[email protected]> | |
# Boot via DHCP, seriously wipe the disk DO IT | |
# Add boot options: priority=critical locale=en_US url=https://gist.github.com/craigcalef/8201088/raw | |
# | |
d-i debian-installer/locale string en_US.UTF-8 | |
d-i debian-installer/splash boolean false | |
d-i console-setup/ask_detect boolean false | |
d-i console-setup/layoutcode string us | |
d-i console-setup/variantcode string | |
d-i netcfg/choose_interface select auto | |
d-i netcfg/get_hostname string unassigned-hostname | |
d-i netcfg/get_domain string unassigned-domain | |
d-i netcfg/wireless_wep string | |
d-i clock-setup/utc boolean true | |
d-i partman-auto/method string regular | |
d-i partman-lvm/device_remove_lvm boolean true | |
d-i partman-lvm/confirm boolean true | |
d-i partman-md/device_remove_md boolean true | |
d-i partman/confirm_write_new_label boolean true | |
d-i partman/choose_partition select Finish partitioning and write changes to disk | |
d-i partman/confirm boolean true | |
d-i partman/confirm_nooverwrite boolean true | |
d-i partman/default_filesystem string ext3 | |
d-i clock-setup/utc boolean true | |
d-i clock-setup/ntp boolean true | |
d-i clock-setup/ntp-server string ntp.ubuntu.com | |
d-i base-installer/kernel/image string linux-server | |
d-i passwd/root-login boolean false | |
d-i passwd/make-user boolean true | |
d-i passwd/user-fullname string ubuntu | |
d-i passwd/username string ubuntu | |
d-i passwd/user-password-crypted password $6$.1eHH0iY$ArGzKX2YeQ3G6U.mlOO3A.NaL22Ewgz8Fi4qqz.Ns7EMKjEJRIW2Pm/TikDptZpuu7I92frytmk5YeL.9fRY4. | |
d-i passwd/user-uid string | |
d-i user-setup/allow-password-weak boolean false | |
d-i user-setup/encrypt-home boolean false | |
d-i passwd/user-default-groups string adm cdrom dialout lpadmin plugdev sambashare | |
d-i apt-setup/services-select multiselect security | |
d-i apt-setup/security_host string security.ubuntu.com | |
d-i apt-setup/security_path string /ubuntu | |
d-i debian-installer/allow_unauthenticated string false | |
d-i pkgsel/upgrade select safe-upgrade | |
d-i pkgsel/language-packs multiselect | |
d-i pkgsel/update-policy select none | |
d-i pkgsel/updatedb boolean true | |
d-i grub-installer/skip boolean false | |
d-i lilo-installer/skip boolean false | |
d-i grub-installer/only_debian boolean true | |
d-i grub-installer/with_other_os boolean true | |
d-i finish-install/keep-consoles boolean false | |
d-i finish-install/reboot_in_progress note | |
d-i cdrom-detect/eject boolean true | |
d-i debian-installer/exit/halt boolean false | |
d-i debian-installer/exit/poweroff boolean false | |
d-i pkgsel/include string vim openssh-server |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment