Advertisement
digimer

Untitled

Feb 10th, 2021
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. [root@mk-striker01 ~]# cat /var/lib/tftpboot/grub.cfg
  2. set default="1"
  3.  
  4. function load_video {
  5. insmod efi_gop
  6. insmod efi_uga
  7. insmod video_bochs
  8. insmod video_cirrus
  9. insmod all_video
  10. }
  11.  
  12. load_video
  13. set gfxpayload=keep
  14. insmod gzio
  15. insmod part_gpt
  16. insmod ext2
  17.  
  18. set timeout=60
  19. ### END /etc/grub.d/00_header ###
  20.  
  21. search --no-floppy --set=root -l 'RHEL-8-3-0-BaseOS-x86_64'
  22.  
  23. ### BEGIN /etc/grub.d/10_linux ###
  24. menuentry 'Install Red Hat Enterprise Linux 8.3' --class fedora --class gnu-linux --class gnu --class os {
  25. linuxefi /images/rhel8.3/vmlinuz ip=dhcp inst.repo=http://download-ipv4.eng.brq.redhat.com/released/rhel-6-7-8/rhel-8/RHEL-8/8.3.0/BaseOS/x86_64/os/
  26. initrdefi /images/rhel8.3/initrd.img
  27. }
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement