Guest User

ubuntu-kickstart

a guest
Apr 7th, 2017
348
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.32 KB | None | 0 0
  1. #Generated by Kickstart Configurator
  2. #platform=AMD64 or Intel EM64T
  3.  
  4. #System language
  5. lang en_US
  6. #Language modules to install
  7. langsupport en_IN --default=en_US
  8. #System keyboard
  9. keyboard us
  10. #System mouse
  11. mouse
  12. #System timezone
  13. timezone Asia/Kolkata
  14. #Root password
  15. rootpw --disabled
  16. #Initial user
  17. #Reboot after installation
  18. reboot
  19. #Use interactive kickstart installation method
  20. interactive
  21. #Install OS instead of upgrade
  22. install
  23. #Use CDROM installation media
  24. cdrom
  25. #System bootloader configuration
  26. bootloader --location=mbr
  27. #Clear the Master Boot Record
  28. zerombr yes
  29. #Partition clearing information
  30. clearpart --all --initlabel
  31. #Disk partitioning information
  32. part /boot --fstype ext4 --size 500
  33. part / --fstype ext4 --size 26624
  34. part swap --size 1 --grow
  35. #part /opt --fstype ext4 --size 1 --grow
  36. #part /boot --fstype ext4 --size 1 --grow --maxsize 250
  37. #part / --fstype ext4 --size 1 --grow --maxsize 15000
  38. #System authorization infomation
  39. auth  --useshadow  --enablemd5
  40. #Firewall configuration
  41. firewall --disabled
  42. #X Window System configuration information
  43. xconfig --depth=8 --resolution=800x600 --defaultdesktop=UNITY3D
  44. # Do not configure the X Window System
  45. skipx
  46. # Additional packages to install.
  47. %post
  48. dpkg -i /media/cdrom/desktop/*.deb --no-check-gpg
  49. dpkg -i /media/cdrom/Packages/*.deb --no-check-gpg
Add Comment
Please, Sign In to add comment