Advertisement
Guest User

Preseed File

a guest
May 21st, 2015
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.03 KB | None | 0 0
  1. # English Language
  2. d-i debian-installer/locale string en_US
  3. d-i debian-installer/language string en
  4. d-i debian-installer/country string US
  5.  
  6. #Partition
  7. d-i preseed/early_command string umount /dev/sda || /bin/true
  8. d-i partman-base partman/unmount_active boolean
  9. d-i partman-auto/disk string /dev/sda
  10. d-i partman-auto/method string regular
  11. d-i partman-lvm/device_remove_lvm boolean true
  12. d-i partman-lvm/confirm boolean true
  13. d-i partman-lvm/confirm_nooverwrite boolean true
  14. d-i partman-auto/choose_recipe select atomic
  15. d-i partman-partitioning/confirm_write_new_label boolean true
  16. d-i partman/choose_partition select finish
  17. d-i preseed/preseed/early_command string unmount /media
  18. d-i preseed/preseed/early_command string unmount /sda
  19. d-i preseed/preseed/early_command string unmount /sda1
  20.  
  21. # Keyboard
  22. d-i console-setup/ask_detect boolean false
  23. d-i console-setup/layoutcode string us
  24. d-i keyboard-configuration/xkb-keymap select us
  25.  
  26. #Network Configuration
  27. d-i netcfg/choose_interface select auto
  28.  
  29. #Mirror information
  30. d-i mirror/country string manual
  31. d-i mirror/http/hostname string mirror.lcsee.wvu.edu
  32. d-i mirror/http/directory string /ubuntu
  33. d-i mirror/suite string trusty
  34. d-i apt-setup/security_host string mirror.lcsee.wvu.edu
  35. d-i apt-setup/security_path string /ubuntu
  36.  
  37. #Proxy settings
  38. d-i mirror/http/proxy string http://squid.lcsee.wvu.edu:3128/
  39.  
  40. #Adding ltrusty repos
  41. d-i apt-setup/local0/repository string http://loud.lcsee.wvu.edu/stable/ ltrusty/
  42. d-i apt-setup/local0/comment string LOUD Stable
  43. d-i apt-setup/local0/source boolean true
  44. d-i apt-setup/local0/key string http://loud.lcsee.wvu.edu/loud/lcsee_repo.gpg
  45. d-i apt-setup/local1/repository string http://loud.lcsee.wvu.edu/loud/ ltrusty-test/
  46. d-i apt-setup/local1/comment string LOUD Test
  47. d-i apt-setup/local1/source boolean true
  48. d-i apt-setup/local1/key string http://loud.lcsee.wvu.edu/loud/lcsee_repo.gpg
  49. d-i apt-setup/local2/repository string http://loud.lcsee.wvu.edu/stable/ ltrusty-internal/
  50. d-i apt-setup/local2/comment string LOUD Stable
  51. d-i apt-setup/local2/source boolean true
  52. d-i apt-setup/local2/key string http://loud.lcsee.wvu.edu/loud/lcsee_repo.gpg
  53. d-i apt-setup/local3/repository string http://loud.lcsee.wvu.edu/loud/ ltrusty-internal-test/
  54. d-i apt-setup/local3/comment string LOUD Test
  55. d-i apt-setup/local3/source boolean true
  56. d-i apt-setup/local3/key string http://loud.lcsee.wvu.edu/loud/lcsee_repo.gpg
  57.  
  58. #User
  59. d-i passwd/root-login boolean false
  60. #d-i passwd/root-password-crypted password !
  61. d-i passwd/make-user boolean true
  62. d-i passwd/user-fullname string LOUD
  63. d-i passwd/username string loud
  64. d-i passwd/user-password password loud
  65. d-i passwd/user-password-again password loud
  66. d-i user-setup/allow-password-weak boolean true
  67. d-i user-setup/encrypt-home boolean false
  68.  
  69. #Initial packages
  70. debconf debconf/priority string critical
  71. d-i debconf/priority string critical
  72. tasksel tasksel/first multiselect ubuntu-desktop
  73.  
  74. #Install lcsee-desktop
  75. #d-i pkgsel/include string lcsee-desktop
  76.  
  77. #Reboot when done
  78. d-i finish-install/reboot_in_progress note
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement