Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. menuentry "Install server" {
  2. set gfxpayload=keep
  3. linux /install/vmlinuz nouveau.modeset=0 file=/cdrom/preseed/test.seed locale=en_US.UTF-8 keyboard-configuration/layoutcode=us hostname=localserver quiet ---
  4. initrd /install/initrd.gz
  5.  
  6. # Reboot automatically after installation
  7.  
  8. d-i finish-install/reboot_in_progress note
  9. # Install the Ubuntu Server seed.
  10. tasksel tasksel/force-tasks string server
  11. d-i pkgsel/language-pack-patterns string language-pack-gnome-en
  12. language-pack-gnome-de language-pack-gnome-fr language-pack-gnome-it
  13. language-pack-gnome-es
  14. # Only install basic language packs. Let tasksel ask about tasks.
  15. d-i pkgsel/language-packs multiselect en de fr it es
  16. # No language support packages.
  17. d-i pkgsel/install-language-support boolean true
  18. # Only ask the UTC question if there are other operating systems installed.
  19. d-i clock-setup/utc-auto boolean true
  20. # Verbose output and no boot splash screen.
  21. d-i debian-installer/quiet boolean false
  22. d-i debian-installer/splash boolean false
  23. # Install the debconf oem-config frontend (if in OEM mode).
  24. d-i oem-config-udeb/frontend string debconf
  25. # Wait for five seconds in grub
  26. d-i grub-installer/timeout string 5
  27. # Add the network and tasks oem-config steps by default.
  28. oem-config oem-config/steps multiselect language, timezone,
  29. keyboard, user, network, tasks
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement