Advertisement
Guest User

Untitled

a guest
Nov 2nd, 2016
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.77 KB | None | 0 0
  1. ### <PRESEED> ###
  2. d-i user-setup/allow-password-weak boolean true
  3. d-i pkgsel/install-language-support boolean true
  4. d-i pkgsel/ignore-incomplete-language-support boolean true
  5. ### </PRESEED> ###
  6.  
  7.  
  8. ### <KICKSTART> ###
  9. #System language
  10. lang en_US
  11. #Language modules to install
  12. langsupport en_US
  13. #System keyboard
  14. keyboard us
  15. #System mouse
  16. mouse
  17. #System timezone
  18. timezone America/New_York
  19. #Root password
  20. #rootpw --disabled
  21. #Initial user
  22. #user ubuntu --fullname "ubuntu" --password ubuntu
  23. #Reboot after installation
  24. reboot
  25. #Use text mode install
  26. text
  27. #Install OS instead of upgrade
  28. install
  29. #Use Web installation
  30. #url --url http://joott/ubuntu
  31. #System bootloader configuration
  32. bootloader --location=mbr
  33. #Clear the Master Boot Record
  34. #zerombr yes
  35. #Partition clearing information
  36. #clearpart --all --initlabel
  37. #Disk partitioning information
  38. #part /boot --fstype ext4 --size 512
  39. #part swap --size 2048
  40. #part / --fstype ext4 --size 1 --grow
  41. #System authorization infomation
  42. auth --useshadow --enablemd5
  43. #Network information
  44. network --bootproto=dhcp --device=eth0
  45. #Firewall configuration
  46. firewall --disabled
  47. #Package install information
  48. %packages
  49. @ ubuntu-desktop
  50. @ openssh-server
  51. @ ubuntu-restricted-extras
  52. ffmpeg
  53. #compizconfig-settings-manager
  54. vim
  55. #mplayer
  56. unattended-upgrades
  57. %post
  58. echo "ubuntu" > /etc/hostname
  59. wget http://www.medibuntu.org/sources.list.d/`lsb_release -cs`.list --output-document=/etc/apt/sources.list.d/medibuntu.list
  60. apt-get -q update
  61. apt-get --yes -q --allow-unauthenticated install medibuntu-keyring
  62. cd /etc/apt
  63. mv sources.list sources.list.orig
  64. wget http://10.1.10.1/sources/trusty/sources.list .
  65. apt-get -q update
  66. apt-get -q install -y w32codecs skype libdvdcss2 libdvdread4
  67. sudo apt-get upgrade -qy
  68. ### </KICKSTART> ###
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement