Advertisement
Guest User

isolinux.cfg

a guest
Jan 31st, 2020
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.05 KB | None | 0 0
  1. serial 0 115200 0
  2. default vesamenu.c32
  3. timeout 4
  4.  
  5. display boot.msg
  6.  
  7. # Clear the screen when exiting the menu, instead of leaving the menu displayed.
  8. # For vesamenu, this means the graphical background is still displayed without
  9. # the menu itself for as long as the screen remains in graphics mode.
  10. menu clear
  11. menu background splash.png
  12. menu title CentOS Linux 8
  13. menu vshift 8
  14. menu rows 18
  15. menu margin 8
  16. menu helpmsgrow 15
  17. menu tabmsgrow 13
  18.  
  19. # Border Area
  20. menu color border * #00000000 #00000000 none
  21.  
  22. # Selected item
  23. menu color sel 0 #ffffffff #00000000 none
  24.  
  25. # Title bar
  26. menu color title 0 #ff7ba3d0 #00000000 none
  27.  
  28. # Press [Tab] message
  29. menu color tabmsg 0 #ff3a6496 #00000000 none
  30.  
  31. # Unselected menu item
  32. menu color unsel 0 #84b8ffff #00000000 none
  33.  
  34. # Selected hotkey
  35. menu color hotsel 0 #84b8ffff #00000000 none
  36.  
  37. # Unselected hotkey
  38. menu color hotkey 0 #ffffffff #00000000 none
  39.  
  40. # Help text
  41. menu color help 0 #ffffffff #00000000 none
  42.  
  43. # A scrollbar of some type? Not sure.
  44. menu color scrollbar 0 #ffffffff #ff355594 none
  45.  
  46. # Timeout msg
  47. menu color timeout 0 #ffffffff #00000000 none
  48. menu color timeout_msg 0 #ffffffff #00000000 none
  49.  
  50. # Command prompt text
  51. menu color cmdmark 0 #84b8ffff #00000000 none
  52. menu color cmdline 0 #ffffffff #00000000 none
  53.  
  54. # Do not display the actual menu unless the user presses a key. All that is displayed is a timeout message.
  55.  
  56. menu tabmsg Press Tab for full configuration options on menu items.
  57.  
  58. menu separator # insert an empty line
  59.  
  60. label vesa
  61. menu label Install CentOS Linux 8 in ^basic graphics mode
  62. menu default
  63. text help
  64. Try this option out if you're having trouble installing
  65. CentOS Linux 8.
  66. endtext
  67. kernel vmlinuz
  68. append initrd=initrd.img inst.vnc inst.vncpassword=password inst.headless ip=dhcp inst.stage2=hd:LABEL=CENTOS-8-1 nomodeset
  69.  
  70. menu separator # insert an empty line
  71.  
  72. label local
  73. menu label Boot from ^local drive
  74. localboot 0xffff
  75.  
  76. menu separator # insert an empty line
  77.  
  78. label returntomain
  79. menu label Return to ^main menu
  80. menu exit
  81.  
  82. menu end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement