Guest User

fedora41 kickstart file

a guest
Nov 18th, 2024
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. # Use text based installation.
  2. text
  3.  
  4. # Language, keyboard, and timezone.
  5. lang en_US.UTF-8
  6. keyboard us
  7. timezone America/Los_Angeles --utc
  8.  
  9. # Network information.
  10. network --bootproto=dhcp
  11. network --hostname=vm
  12. #network --bootproto=dhcp --device=ens3 --ipv6=auto --activate
  13.  
  14. # Use CDROM installation media.
  15. cdrom
  16.  
  17. # Users and passwords.
  18. user --name=admin --groups=wheel --plaintext --password=PASSWORD
  19. rootpw --plaintext --allow-ssh PASSWORD
  20.  
  21. # Do not configure the X window system.
  22. skipx
  23.  
  24. # Disk partition.
  25. ignoredisk --only-use=sda
  26. autopart
  27. clearpart --none --initlabel
  28.  
  29. # Install packages.
  30. %packages
  31. @^minimal-environment
  32. @development
  33. @standard
  34. @system-tools
  35. %end
  36.  
  37. # Run the Setup Agent on first boot.
  38. firstboot --enable
  39.  
  40. # Reboot at the endo of installation.
  41. reboot
  42. EOF
Advertisement
Add Comment
Please, Sign In to add comment