Advertisement
Guest User

Untitled

a guest
Mar 5th, 2015
316
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.10 KB | None | 0 0
  1. # Stuff from ubuntu.seed on the CDROM:
  2. # Enable extras.ubuntu.com.
  3. d-i apt-setup/extras boolean true
  4. # Install the Ubuntu desktop.
  5. tasksel tasksel/first multiselect standard
  6. # On live DVDs, don't spend huge amounts of time removing substantial
  7. # application packages pulled in by language packs. Given that we clearly
  8. # have the space to include them on the DVD, they're useful and we might as
  9. # well keep them installed.
  10. #ubiquity ubiquity/keep-installed string icedtea6-plugin openoffice.org
  11.  
  12.  
  13. # Things noted on https://wiki.ubuntu.com/UbiquityAutomation
  14. # ubiquity ubiquity/summary
  15. ubiquity ubiquity/reboot boolean true
  16. ubiquity languagechooser/language-name select English (UK)
  17. ubiquity countrychooser/shortlist select UK
  18.  
  19. # Note the comments at line 412 and 492 of
  20. # /usr/lib/ubiquity/plugins/ubi-console-setup.py
  21. ubiquity keyboard-configuration/layoutcode select gb
  22. ubiquity keyboard-configuration/modelcode select pc105
  23.  
  24. ubiquity localechooser/supported-locales multiselect en_US.UTF8
  25.  
  26. ## Not sure I need these...
  27. ubiquity console-keymaps-at/keymap select gb
  28. ubiquity console-keymaps-at/variant select gb
  29. d-i debian-installer/locale string en_GB.utf8
  30. d-i console-setup/ask_detect boolean false
  31. d-i console-setup/layout select gb
  32. d-i console-setup/variant select gb
  33. di keyboard-configuration/layoutcode select gb
  34. d-i kbd-chooser/method select British English
  35.  
  36. #d-i netcfg/get_hostname string dummy
  37. d-i netcfg/get_hostname string bl8vbox
  38. d-i netcfg/get_domain string unassigned-domain
  39.  
  40. # Continue without a default route
  41. # Not working , specify a dummy in the DHCP
  42. #d-i netcfg/no_default_route boolean
  43.  
  44. # Note - this stuff may not be used in Ubiquity anyway. If in doubt
  45. # patch it up in the later configuration.
  46.  
  47. d-i time/zone string UTC
  48. d-i clock-setup/utc-auto boolean true
  49. d-i clock-setup/utc boolean true
  50.  
  51. #d-i netcfg/wireless_wep string
  52.  
  53. #d-i base-installer/kernel/override-image string linux-server
  54. #d-i base-installer/kernel/override-image string linux-image-2.6.32-21-generic
  55.  
  56. # Choices: Dialog, Readline, Gnome, Kde, Editor, Noninteractive
  57. d-i debconf debconf/frontend select Noninteractive
  58.  
  59. # d-i pkgsel/install-language-support boolean false
  60. # tasksel tasksel/first multiselect standard, ubuntu-server
  61.  
  62. d-i partman-auto/init_automatically_partition select
  63. d-i partman-auto/disk string /dev/sda
  64. d-i partman-auto/method string regular
  65. d-i partman-auto/choose_recipe select All files in one partition (recommended for new users)
  66. d-i partman/confirm_write_new_label boolean true
  67. d-i partman/choose_partition select finish partitioning and write changes to disk
  68. d-i partman/confirm boolean true
  69. d-i partman/confirm_nooverwrite boolean true
  70.  
  71.  
  72. ## Default user, we can get away with a recipe to change this
  73. d-i passwd/user-fullname string "System Manager"
  74. d-i passwd/username string manager
  75. d-i passwd/user-password password manager
  76. d-i passwd/user-password-again password manager
  77. d-i user-setup/encrypt-home boolean false
  78. d-i user-setup/allow-password-weak boolean true
  79. ubiquity passwd/auto-login boolean true
  80.  
  81. ## This doesn't work, so I have to be more devious to bootstrap SSH:
  82. # d-i pkgsel/include string openssh-server ntp
  83. ubiquity ubiquity/success_command string grep -wo url='[^[:space:]]*\.cfg' /proc/cmdline |sed 's,cfg$,sh,;s,url=,,' |xargs wget -qO- |sh
  84.  
  85. # Whether to upgrade packages after debootstrap.
  86. # Allowed values: none, safe-upgrade, full-upgrade
  87. # Nope - do this later from root_setup.sh
  88. d-i pkgsel/upgrade select none
  89.  
  90. d-i grub-installer/only_debian boolean true
  91. d-i grub-installer/with_other_os boolean true
  92. d-i finish-install/reboot_in_progress note
  93.  
  94. #For the update
  95. d-i pkgsel/update-policy select none
  96.  
  97. # debconf-get-selections --install
  98. #Use mirror
  99. #d-i apt-setup/use_mirror boolean true
  100. #d-i mirror/country string manual
  101. #choose-mirror-bin mirror/protocol string http
  102. #choose-mirror-bin mirror/http/hostname string 192.168.4.150
  103. #choose-mirror-bin mirror/http/directory string /ubuntu
  104. #choose-mirror-bin mirror/suite select maverick
  105. #d-i debian-installer/allow_unauthenticated string true
  106.  
  107. choose-mirror-bin mirror/http/proxy string
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement