Created
April 13, 2013 17:08
-
-
Save Jerry-Fix/5379219 to your computer and use it in GitHub Desktop.
ubuntu 10.04 preseed
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 debian-installer/language string en | |
d-i debian-installer/country string US | |
d-i debian-installer/locale string en_US.UTF-8 | |
d-i debian-installer/allow_unauthenticated string true | |
d-i console-setup/ask_detect boolean false | |
d-i console-setup/layoutcode string us | |
d-i netcfg/choose_interface select eth0 | |
d-i mirror/country string manual | |
d-i mirror/http/hostname string 192.168.1.1 | |
d-i mirror/http/directory string /ubuntu | |
d-i mirror/http/proxy string | |
d-i clock-setup/utc boolean true | |
d-i time/zone string Asia/Shanghai | |
d-i clock-setup/ntp boolean false | |
#d-i clock-setup/ntp boolean true | |
d-i partman-auto/disk string /dev/sda | |
d-i partman-auto/method string regular | |
d-i partman-lvm/device_remove_lvm boolean true | |
d-i partman-md/device_remove_md boolean true | |
d-i partman-lvm/confirm boolean true | |
d-i partman-auto/expert_recipe string \ | |
boot-root :: \ | |
150 150 150 ext4 \ | |
$primary{ } $bootable{ } \ | |
method{ format } format{ } \ | |
use_filesystem{ } filesystem{ ext4 } \ | |
mountpoint{ /boot } \ | |
. \ | |
20480 20480 20480 ext4 \ | |
method{ format } format{ } \ | |
use_filesystem{ } filesystem{ ext4 } \ | |
mountpoint{ / } \ | |
. \ | |
20480 20480 20480 ext4 \ | |
method{ format } format{ } \ | |
use_filesystem{ } filesystem{ ext4 } \ | |
mountpoint{ /var } \ | |
. \ | |
1140000 1140000 1140000 ext4 \ | |
method{ format } format{ } \ | |
use_filesystem{ } filesystem{ ext4 } \ | |
mountpoint{ /home } \ | |
. \ | |
8000 8000 50% linux-swap \ | |
method{ swap } format{ } \ | |
. | |
d-i partman/default_filesystem string ext4 | |
d-i partman-partitioning/confirm_write_new_label boolean true | |
d-i partman/choose_partition select finish | |
d-i partman/confirm boolean true | |
d-i partman/confirm_nooverwrite boolean true | |
d-i partman-md/confirm boolean true | |
d-i partman-partitioning/confirm_write_new_label boolean true | |
d-i partman/choose_partition select finish | |
d-i partman/confirm boolean true | |
d-i partman/confirm_nooverwrite boolean true | |
d-i partman/mount_style select uuid | |
d-i base-installer/kernel/override-image string linux-server | |
d-i passwd/root-login boolean false | |
d-i passwd/make-user boolean true | |
d-i passwd/user-fullname string jaseywang | |
d-i passwd/username string jaseywang | |
d-i passwd/user-password-crypted password $1$S1rsoZP/$7nmQqAm8MpK9HZYBZlKWT1 | |
d-i user-setup/encrypt-home boolean false | |
tasksel tasksel/first multiselect openssh-server | |
tasksel tasksel/force-tasks string server | |
d-i pkgsel/update-policy select none | |
d-i grub-installer/only_debian boolean true | |
d-i grub-installer/with_other_os boolean false | |
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