Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
341
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.53 KB | None | 0 0
  1. # Localization
  2. d-i debian-installer/locale string en_US.UTF-8
  3. d-i debian-installer/language string en
  4. d-i debian-installer/country string US
  5.  
  6. # Keyboard layout
  7. d-i console-setup/ask_detect boolean false
  8. d-i keyboard-configuration/layoutcode string us
  9. d-i keyboard-configuration/charmap select UTF-8
  10. d-i keyboard-configuration/layout string English (US)
  11.  
  12.  
  13. ### Network configuration
  14. d-i netcfg/choose_interface select auto
  15. d-i netcfg/use_autoconfig boolean true
  16. d-i netcfg/get_domain string cg.chrysler.com
  17.  
  18. ### Mirror settings
  19. d-i mirror/country string manual
  20. d-i mirror/http/hostname string us.archive.ubuntu.com
  21. d-i mirror/http/directory string /ubuntu
  22. d-i mirror/http/proxy string
  23. d-i proxy string
  24. d-i mirror/protocol string http
  25.  
  26. ### Account setup
  27. d-i passwd/user-fullname string ictadmin
  28. d-i passwd/username string ictadmin
  29. d-i passwd/user-password password chrysler1
  30. d-i passwd/user-password-again password chrysler1
  31. d-i user-setup/encrypt-home boolean false
  32.  
  33. ### Clock and time zone setup - TS verified ntp server
  34. d-i clock-setup/utc boolean true
  35. d-i time/zone string America/Detroit
  36. d-i clock-setup/ntp boolean false
  37. d-i clock-setup/ntp-server string ntp.example.com
  38.  
  39. # Automatically detect device name of install disk
  40. d-i partman/early_command string debconf-set partman-auto/disk /dev/"$(fdisk -l |grep -i linux | awk '{print $1}' | cut -d / -f 3 |sed 's/p[0-9]$//p' |head -n1)"
  41.  
  42. ### Partitioning and disk encryption
  43. d-i partman-auto/method string crypto
  44. d-i partman-crypto/passphrase password
  45. d-i partman-crypto/passphrase-again password
  46.  
  47. d-i partman-lvm/purge_lv_from_device boolean true
  48. d-i partman-lvm/device_remove_lvm boolean true
  49. d-i partman-md/device_remove_md boolean true
  50. d-i partman-lvm/confirm boolean true
  51. d-i partman-lvm/confirm_nooverwrite boolean true
  52. d-i partman-auto/choose_recipe select atomic
  53.  
  54. d-i partman-partitioning/confirm_write_new_label boolean true
  55. d-i partman/choose_partition select finish
  56. d-i partman/confirm boolean true
  57. d-i partman-lvm/confirm_nooverwrite boolean true
  58.  
  59. ### Package selection
  60. tasksel tasksel/first multiselect ubuntu-desktop
  61. ubiquity ubiquity/keep-installed string icedtea6-plugin openoffice.org
  62. # Enable extras.ubuntu.com.
  63. d-i apt-setup/extras boolean true
  64. d-i pkgsel/include/install-recommends boolean true
  65.  
  66. ### Boot loader installation
  67. d-i grub-installer/only_debian boolean true## TO DO: Resolve how to create more file systems
  68. ## Need to have OS separated from data
  69. d-i grub-installer/with_other_os boolean true
  70.  
  71.  
  72.  
  73. ### Copy and install some extra stuff
  74.  
  75. ### When ubiquity/success_command is invoked /target is mounted
  76.  
  77. ubiquity ubiquity/success_command string
  78. in-target apt purge gdm3 ;
  79. in-target apt update ;
  80. in-target apt-get -y install net-tools libwebkitgtk-3.0 terminator gdm3 ;
  81. in-target hostname `echo "ubn"$(lshw | grep -m 1 serial | awk '{print tolower ($2)}')` ;
  82. hostname > /target/etc/hostname ;
  83. sed -i "2s/.*/127.0.1.1t$(cat /target/etc/hostname)/" /target/etc/hosts
  84.  
  85. ubiquity ubiquity/use_nonfree boolean true
  86. ubiquity ubiquity/reboot boolean true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement