centos8 kickstart

From Obese Hamerkop, 2 Years ago, written in Plain Text, viewed 199 times.
URL https://paste.steamr.com/view/dcc0fe1c Embed
Download Paste or View Raw
  1. #version=RHEL8
  2. # Use graphical install
  3. graphical
  4.  
  5. repo --name="Minimal" --baseurl=file:///run/install/sources/mount-0000-cdrom/Minimal
  6.  
  7. %packages
  8. @^minimal-environment
  9. @standard
  10.  
  11. %end
  12.  
  13. # Keyboard layouts
  14. keyboard --xlayouts='us'
  15. # System language
  16. lang en_US.UTF-8
  17.  
  18. # Network information
  19. network  --bootproto=dhcp --device=ens160 --ipv6=auto --activate
  20. network  --hostname=rocky
  21.  
  22. # Use CDROM installation media
  23. cdrom
  24.  
  25. # Run the Setup Agent on first boot
  26. # firstboot --enable
  27.  
  28. ignoredisk --only-use=nvme0n1
  29. # Partition clearing information
  30. clearpart --none --initlabel
  31. # Disk partitioning information
  32. part /boot --fstype="xfs" --ondisk=nvme0n1 --size=488
  33. part / --fstype="xfs" --ondisk=nvme0n1 --size=7703
  34.  
  35.  
  36. # System timezone
  37. timezone America/Edmonton --isUtc --nontp
  38.  
  39. # Root password
  40. rootpw --iscrypted $6$ne1H.s2XHWktKM23$nNss8xVLKQMi9ftZJKeSKqdc1VsdC0d4R3R.wI6jU16VXan3I2I0lM0DPUBobqRVK2Dmbb6j4KC9H/quLcWUY.
  41.  
  42. %addon com_redhat_kdump --disable --reserve-mb='auto'
  43.  
  44. %end
  45.  
  46. %anaconda
  47. pwpolicy root --minlen=6 --minquality=1 --notstrict --nochanges --notempty
  48. pwpolicy user --minlen=6 --minquality=1 --notstrict --nochanges --emptyok
  49. pwpolicy luks --minlen=6 --minquality=1 --notstrict --nochanges --notempty
  50. %end
  51.  

Replies to centos8 kickstart rss

Title Name Language When
Re: centos8 kickstart Chartreuse Lion text 2 Years ago.

Reply to "centos8 kickstart"

Here you can reply to the paste above