Advertisement
Guest User

Untitled

a guest
Jan 9th, 2012
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.40 KB | None | 0 0
  1. d-i debian-installer/locale string en_GB
  2. d-i console-setup/ask_detect boolean false
  3. d-i console-setup/layoutcode string en_GB
  4. d-i console-keymaps-at/keymap select gb
  5. d-i keyboard-configuration/layoutcode select gb
  6. d-i keyboard-configuration/xkb-keymap select gb
  7. d-i netcfg/choose_interface select auto
  8. # Any hostname and domain names assigned from dhcp take precedence over
  9. # values set here. However, setting the values still prevents the questions
  10. # from being shown, even if values come from dhcp.
  11. d-i netcfg/get_hostname string unattended
  12. d-i netcfg/get_domain string woozie.loc
  13. d-i netcfg/wireless_wep string
  14. ### Mirror settings
  15. # If you select ftp, the mirror/country string does not need to be set.
  16. d-i mirror/country string GB
  17. d-i mirror/protocol string http
  18. d-i mirror/http/hostname string gb.archive.ubuntu.com
  19. d-i mirror/http/mirror select gb.archive.ubuntu.com
  20. d-i mirror/http/directory string /ubuntu
  21. d-i mirror/http/proxy string
  22.  
  23. # Suite to install.
  24. #d-i mirror/suite string testing
  25. # Suite to use for loading installer components (optional).
  26. d-i mirror/udeb/suite string oneiric
  27. d-i mirror/suite string oneiric
  28. d-i mirrot/udeb/components multiselect main, restricted
  29.  
  30. ### Partitioning
  31. # If the system has free space you can choose to only partition that space.
  32. # Note: this must be preseeded with a localized (translated) value.
  33. #d-i partman-auto/init_automatically_partition \
  34. # select Guided - use the largest continuous free space
  35.  
  36. # Alternatively, you can specify a disk to partition. The device name
  37. # can be given in either devfs or traditional non-devfs format.
  38. # For example, to use the first disk:
  39. #d-i partman-auto/disk string /dev/discs/disc0/disc
  40. d-i partman-auto/disk string /dev/sda
  41. # In addition, you'll need to specify the method to use.
  42. # The presently available methods are: "regular", "lvm" and "crypto"
  43. d-i partman-auto/method string lvm
  44. # If one of the disks that are going to be automatically partitioned
  45. # contains an old LVM configuration, the user will normally receive a
  46. # warning. This can be preseeded away...
  47. d-i partman-auto/purge_lvm_from_device boolean true
  48. d-i partman-lvm/devices_remove_lvm boolean true
  49. d-i partman-lvm/confirm_nooverwrite boolean true
  50. # And the same goes for the confirmation to write the lvm partitions.
  51. d-i partman-lvm/confirm boolean true
  52. # You can choose from any of the predefined partitioning recipes.
  53. # Note: this must be preseeded with a localized (translated) value.
  54. d-i partman-auto/choose_recipe select Separate /home, /usr, /var, and /tmp partitions
  55. # This makes partman automatically partition without confirmation.
  56. d-i partman/confirm_write_new_label boolean true
  57. d-i partman/choose_partition select finish
  58. d-i partman/confirm boolean true
  59. ### Clock and time zone setup
  60. # Controls whether or not the hardware clock is set to UTC.
  61. d-i clock-setup/utc boolean true
  62. # You may set this to any valid setting for $TZ; see the contents of
  63. # /usr/share/zoneinfo/ for valid values.
  64. d-i time/zone string Europe/Dublin
  65. ### Apt setup
  66. # You can choose to install non-free and contrib software.
  67. d-i apt-setup/multiverse boolean true
  68. d-i apt-setup/universe boolean true
  69. # To create a normal user account.
  70. d-i passwd/user-fullname string Ubuntu Server Administrator
  71. d-i passwd/username string ubuntuadmin
  72. # Normal user's password, either in clear text
  73. #d-i passwd/user-password password insecure
  74. #d-i passwd/user-password-again password insecure
  75. # or encrypted using an MD5 hash.
  76. d-i passwd/user-password-crypted password $1$ApZFpRq5$X38skX90ZL36YOnbYt/3J
  77. # This is fairly safe to set, it makes grub install automatically to the MBR
  78. # if no other operating system is detected on the machine.
  79. d-i grub-installer/only_debian boolean true
  80. # This one makes grub-installer install to the MBR if it also finds some other
  81. # OS, which is less safe as it might not be able to boot that other OS.
  82. d-i grub-installer/with_other_os boolean true
  83. ### Package selection
  84. tasksel tasksel/first multiselect standard, lamp-server
  85. # Individual additional packages to install
  86. d-i pkgsel/include string openssh-server
  87. ### Finishing up the first stage install
  88. # Avoid that last message about the install being complete.
  89. d-i finish-install/reboot_in_progress note
  90. xserver-xorg xserver-xorg/autodetect_monitor boolean true
  91. xserver-xorg xserver-xorg/config/monitor/selection-method select medium
  92. xserver-xorg xserver-xorg/config/monitor/mode-list select 1024x768 @ 60 Hz
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement