Advertisement
Guest User

Untitled

a guest
Sep 27th, 2013
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.43 KB | None | 0 0
  1. # Set hostname
  2. d-i netcfg/get_hostname string ubuntu
  3. # Create new user
  4. d-i passwd/user-fullname string Ubuntu User
  5. d-i passwd/username string ubuntu
  6. d-i passwd/user-password-crypted password $1$1AniiGAw$ZsUcBK840ZrkmoVIvTneP1
  7. # Don't encrypt the home directory
  8. d-i user-setup/encrypt-home boolean false
  9. # Set timezone
  10. d-i time/zone string Europe/Budapest
  11. # Partitioning
  12. d-i partman-auto/disk string /dev/vda
  13. d-i partman-auto/method string lvm
  14. d-i partman-lvm/device_remove_lvm boolean true
  15. d-i partman-lvm/confirm boolean true
  16. d-i partman-lvm/confirm_nooverwrite boolean true
  17. d-i partman-auto-lvm/guided_size string max
  18. d-i partman-partitioning/confirm_write_new_label boolean true
  19. d-i partman/choose_partition select finish
  20. d-i partman/confirm boolean true
  21. d-i partman/confirm_nooverwrite boolean true
  22. # Mirror
  23. d-i mirror/country string manual
  24. d-i mirror/http/hostname string hu.archive.ubuntu.com
  25. d-i mirror/http/directory string /ubuntu
  26. d-i mirror/http/proxy string
  27. # Upgrade packages after debootstrap
  28. d-i pkgsel/upgrade select full-upgrade
  29. # Unattended security upgrades
  30. d-i pkgsel/update-policy select unattended-upgrades
  31. # Install OpenSSH server
  32. tasksel tasksel/first multiselect openssh-server
  33. # Install acpid
  34. d-i pkgsel/include string acpid
  35. # Install GRUB2
  36. d-i grub-installer/only_debian boolean true
  37. # Avoid that last message about the install being complete
  38. d-i finish-install/reboot_in_progress note
  39. d-i debian-installer/exit/poweroff boolean true
  40.  
  41. # Don't install kernel headers.
  42. d-i base-installer/kernel/headers boolean false
  43. # Don't even install the standard task.
  44. tasksel tasksel/skip-tasks string standard
  45. # Only install basic language packs. Let tasksel ask about tasks.
  46. d-i pkgsel/language-pack-patterns string
  47. # No language support packages.
  48. d-i pkgsel/install-language-support boolean false
  49. # Only ask the UTC question if there are other operating systems installed.
  50. d-i clock-setup/utc-auto boolean true
  51. # Verbose output and no boot splash screen.
  52. d-i debian-installer/quiet boolean false
  53. d-i debian-installer/splash boolean false
  54. # Install the debconf oem-config frontend (if in OEM mode).
  55. #d-i oem-config-udeb/frontend string debconf
  56. # Wait for two seconds in grub
  57. d-i grub-installer/timeout string 2
  58. # Add the network and tasks oem-config steps by default.
  59. #oem-config oem-config/steps multiselect language, timezone, keyboard, user, network, tasks
  60. d-i base-installer/kernel/altmeta string lts-raring
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement