Guest User

Untitled

a guest
Feb 24th, 2023
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.29 KB | None | 0 0
  1. grub.cfg
  2.  
  3. if loadfont /font.pf2 ; then
  4. set gfxmode=640x480
  5. insmod efi_gop
  6. insmod efi_uga
  7. insmod video_bochs
  8. insmod video_cirrus
  9. insmod gfxterm
  10. insmod jpeg
  11. insmod png
  12. terminal_output gfxterm
  13. fi
  14.  
  15. background_image /boot/grub/splash.png
  16. set menu_color_normal=white/black
  17. set menu_color_highlight=dark-gray/white
  18. set timeout=6
  19.  
  20. menuentry "devuan-live (amd64)" {
  21. set gfxpayload=keep
  22. linux /live/vmlinuz boot=live username=devuan apparmor=0
  23. initrd /live/initrd.img
  24. }
  25.  
  26. menuentry "Other language" {
  27. set gfxpayload=keep
  28. linux /live/vmlinuz boot=live username=devuan apparmor=0 locales=it_IT.UTF-8 keyboard-layouts=it
  29. initrd /live/initrd.img
  30. }
  31.  
  32. menuentry "devuan-live (load to RAM)" {
  33. set gfxpayload=keep
  34. linux /live/vmlinuz boot=live username=devuan toram apparmor=0
  35. initrd /live/initrd.img
  36. }
  37.  
  38. menuentry "devuan-live (failsafe)" {
  39. set gfxpayload=keep
  40. linux /live/vmlinuz boot=live username=devuan noapic noapm nodma nomce nolapic nosmp vga=normal apparmor=0
  41. initrd /live/initrd.img
  42. }
  43.  
  44. menuentry "Persistence" {
  45. set gfxpayload=keep
  46. linux /live/vmlinuz boot=live hostname=linux quiet splash components noautomount persistence
  47. initrd /live/initrd.img
  48. }
  49.  
  50. menuentry "devuan-persistence" {
  51. set gfxpayload=keep
  52. linux /live/vmlinuz boot=live persistence username=devuan noapic noapm nodma nomce nolapic nosmp vga=normal apparmor=0
  53. initrd /live/initrd.img
  54. }
  55.  
  56. menuentry "Memory test" {
  57. linux16 /live/memtest86+.bin
  58. }
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67. isolinux.cfg
  68.  
  69. ui vesamenu.c32
  70. prompt 0
  71. menu title devuan-live boot menu
  72. timeout 70
  73. menu background /isolinux/splash.png
  74.  
  75. menu color title * #FFFFFFFF *
  76. menu color border * #00000000 #00000000 none
  77. menu color sel * #ffffff #1E4E6E *
  78. menu color hotsel 1;7;37;40 #DCDDDE #1E4E6E *
  79. menu color tabmsg * #DCDDDE #00000000 *
  80. menu color cmdline 0 #DCDDDE #00000000
  81. menu color help 37;40 #ffdddd00 #00000000 none
  82. menu vshift 9
  83. menu rows 12
  84. #menu helpmsgrow 15
  85. #menu cmdlinerow 25
  86. menu timeoutrow 16
  87. menu tabmsgrow 14
  88. menu tabmsg Press ENTER to boot or TAB to edit a menu entry
  89.  
  90.  
  91. label live
  92. menu label devuan-live (amd64)
  93. menu default
  94. linux /live/vmlinuz
  95. append initrd=/live/initrd.img boot=live username=devuan apparmor=0
  96.  
  97. label lang
  98. menu label Other language (TAB to edit)
  99. linux /live/vmlinuz
  100. append initrd=/live/initrd.img boot=live username=devuan apparmor=0 locales=it_IT.UTF-8 keyboard-layouts=it
  101.  
  102. label toram
  103. menu label devuan-live (amd64) (load to RAM)
  104. linux /live/vmlinuz
  105. append initrd=/live/initrd.img boot=live username=devuan toram apparmor=0
  106.  
  107. label failsafe
  108. menu label devuan-live (amd64) (failsafe)
  109. kernel /live/vmlinuz noapic noapm nodma nomce nolapic nosmp nomodeset vga=normal username=devuan apparmor=0
  110. append initrd=/live/initrd.img boot=live
  111.  
  112. label persistence
  113. menu label persistence
  114. linux /live/vmlinuz boot=live persistence hostname=linux quiet splash components noautomount
  115. initrd /live/initrd.img
  116. }
  117.  
  118. label devuan-persistence
  119. menu label devuan-persistence
  120. linux /live/vmlinuz boot=live persistence username=devuan noapic noapm nodma nomce nolapic nosmp vga=normal apparmor=0
  121. initrd /live/initrd.img
  122.  
  123. label memtest
  124. menu label Memory test
  125. kernel /live/memtest
  126.  
  127. endtext
  128.  
Advertisement
Add Comment
Please, Sign In to add comment