have different dists
[camarabuntu.git] / preseed / camarabuntu-cd-install-with-sudo.seed
blob95b2a2c0ac0b0cf7a1be243ab0268b4c1d119c3a
1 # Set the installer language to Hiberno-English and UK keybaord layout
2 # Note: This are set before the cd is loaded, so they must be specified in the
3 # kernel options as so:
4 # locale=en_IE console-setup/layoutcode=uk
5 # These lines are incl
6 #d-i debian-installer/locale string ie_IE
7 #d-i console-setup/layoutcode string uk
9 ## Network
10 d-i netcfg/choose_interface select auto
11 d-i netcfg/disable_dhcp boolean true
12 d-i netcfg/get_nameservers string 127.0.0.1
13 d-i netcfg/get_ipaddress string 127.0.0.1
14 d-i netcfg/get_netmask string 255.255.255.0
15 d-i netcfg/get_gateway string 127.0.0.1
16 d-i netcfg/confirm_static boolean trueable all networking, by not specifing anything here.
17 d-i mirror/http/proxy string
19 # Adjust the default hostname.
20 d-i netcfg/get_hostname  string camarabuntu
22 ## Partitioning
23 # Put everything in one partition
24 d-i partman-auto/disk string /dev/hda
26 d-i partman-auto/choose_recipe \
27      select All files in one partition (recommended for new users)
29 d-i partman/confirm_write_new_label boolean true
30 d-i partman/choose_partition \
31      select Finish partitioning and write changes to disk
32 d-i partman/confirm boolean true
34 # Sync clock to UTC
35 d-i clock-setup/utc boolean true
37 # Set the timezone
38 d-i time/zone string Europe/Dublin
40 ## user set up
41 d-i passwd/root-login boolean false
43 # Set username & password
44 d-i passwd/make-user boolean true
45 d-i passwd/user-fullname string Camara
46 d-i passwd/username string camara
47 d-i passwd/user-password password camara
48 d-i passwd/user-password-again password camara
50 # install grub in MBR, a handy default
51 d-i grub-installer/with_other_os boolean true
53 # Install the Edubuntu desktop and server.
54 d-i     pkgsel/install-pattern  string ~t^edubuntu-standard$|~t^edubuntu-desktop$|~t^edubuntu-server$
56 # don't show us the Installing successful dialog
57 d-i finish-install/reboot_in_progress note
59 # XServer set up.
60 xserver-xorg xserver-xorg/autodetect_monitor boolean true
61 xserver-xorg xserver-xorg/config/display/modes multiselect 1280×1024, 800×600, 640×480
62 xserver-xorg xserver-xorg/config/monitor/selection-method select medium
63 xserver-xorg xserver-xorg/config/monitor/mode-list select 1024×768 @ 60 Hz
65 # disable apt mirror scanning because it just hangs if there is no network
66 d-i apt-setup/use_mirror boolean false