Created
August 30, 2011 12:12
-
-
Save inohiro/1180757 to your computer and use it in GitHub Desktop.
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
d-i debian-installer/locale string en_US | |
d-i console-setup/ask_detect boolean false | |
d-i console-setup/layoutscode string ja106 | |
d-i netcfg/choose_interface select auto | |
d-i mirror/country string manual | |
d-i mirror/http/hostname string 192.168.78,1 | |
d-i mirror/http/directory string /ubuntu | |
# d-i mirror/http/proxy string http://192.168.78.100:8080 | |
d-i clock-setup/utc boolean true | |
d-i time/zone string Japan | |
d-i clock-setup/ntp boolean true | |
d-i clock-setup/ntp-server string ntp.nict.jp | |
d-i partman-auto/method string lvm | |
d-i partman-lvm/device_remove_lvm boolean true | |
d-i partman-lvm/device_remove_lvm_span boolean true | |
d-i partman-auto/purge_lvm_from_device boolean true | |
d-i partman-lvm/confirm boolean true | |
d-i partman-auto-lvm/guided_size string max | |
d-i partman-auto/choose_recipe select atomic | |
d-i partman/confirm_write_new_label boolean true | |
d-i partman/choose_partition select finish | |
d-i partman/confirm boolean true | |
d-i passwd/root-login boolean false | |
d-i passwd/user-fullname string user01 | |
d-i passwd/username string user01 | |
# $ echo "hogehoge" | mkpasswd -s -H MD5 | |
d-i passwd/user-password-crypted password $1$1bA07m/w$1wuZ5DneSI2bG2KWQBc0r0 | |
d-i user-setup/encrypt-home boolean false | |
d-i apt-setup/non-free boolean true | |
d-i apt-setup/contrib boolean true | |
d-i apt-setup/services-select multiselect security, volatile | |
d-i apt-setup/security_host string security.ubuntu.com | |
d-i apt-setup/security_path string /ubuntu | |
# d-i apt-setup/volatile_host string volatile.debian.org | |
tasksel tasksel/first multiselect ubuntu-server | |
d-i pkgsel/include string openssh-server sudo screen msmtp emacs23-nox vim | |
d-i pkgsel/upgrade select full-upgrade | |
popularity-contest popularity-contest/participate boolean false | |
d-i grub-installer/only_debian boolean true | |
d-i finish-install/reboot_in_progress note |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment