Advertisement
Guest User

Untitled

a guest
Oct 31st, 2018
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. #platform=x86, AMD64, or Intel EM64T
  2. #version=DEVEL
  3. # Install OS instead of upgrade
  4. install
  5.  
  6. # X Window System configuration information
  7. xconfig --startxonboot
  8.  
  9. # Keyboard layouts
  10. # old format: keyboard us
  11. # new format:
  12. keyboard --vckeymap=us --xlayouts='us'
  13.  
  14. # Root password
  15. rootpw --plaintext password
  16.  
  17. # System language
  18. lang en_US
  19.  
  20. # Regular Username, user=user password=password
  21. user --groups=wheel --name=user --password=$6$W.AEAS5RtuVKnQ9F$LH8gIztGr8SFlavG069015cTwO341YwyKA9wLtrQJlKq1FjOxUCBRZifjpYGSYFhtjYKypsE2Az72G3X32ham1 --iscrypted --gecos="user"
  22.  
  23. # Firewall configuration
  24. firewall --disabled
  25.  
  26. # System authorization information
  27. auth --useshadow --passalgo=sha512
  28.  
  29. # Use graphical install
  30. graphical
  31.  
  32. # Run the Setup Agent on first boot
  33. firstboot --enable
  34.  
  35. # SELinux configuration
  36. selinux --enforcing
  37.  
  38. # System services
  39. services --disabled="chronyd"
  40. #ignoredisk --only-use=vda
  41.  
  42. # Network information
  43. network --bootproto=static --device=ens3 --gateway=192.168.4.2 --ip=192.168.4.151 --nameserver=192.168.4.2 --netmask=255.255.255.0
  44. #network --bootproto=dhcp --device=None
  45.  
  46. # Halt after installation
  47. #halt
  48. reboot
  49.  
  50. # System timezone
  51. timezone America/Los_Angeles --nontp
  52.  
  53. # System bootloader configuration
  54. bootloader --location=mbr --boot-drive=sda
  55.  
  56. # Clear the Master Boot Record
  57. zerombr
  58.  
  59. # Partition clearing information
  60. clearpart --all --initlabel
  61.  
  62. # Disk partitioning information 7GB HArd Drive
  63. part /boot --fstype=xfs --size=512
  64. part pv.01 --size=1 --grow
  65. volgroup myvg pv.01
  66. logvol / --fstype=xfs --name=lv_root --vgname=myvg --size=5120
  67. logvol swap --name=lv_swap --vgname=myvg --grow --size=1024 --maxsize=1024
  68.  
  69. %packages
  70. #@^graphical-server-environment
  71. @base
  72. @core
  73. vim
  74. bash-completion
  75. #@desktop-debugging
  76. #dial-up
  77. #fonts
  78. #gnome-desktop
  79. #guest-agents
  80. #guest-desktop-agents
  81. #hardware-monitoring
  82. #input-methods
  83. #internet-browser
  84. #multimedia
  85. #print-client
  86. #x11
  87. #exec-tools
  88.  
  89. %end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement