Advertisement
JuanDeLemos

grub.cfg

May 20th, 2016
22,516
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # Config file for GRUB2 - The GNU GRand Unified Bootloader
  2. # /boot/grub/grub.cfg
  3.  
  4. set menu_color_normal=yellow/blue
  5. set menu_color_highlight=blue/yellow
  6.  
  7. function load_video {
  8. insmod efi_gop
  9. insmod efi_uga
  10. insmod video_bochs
  11. insmod video_cirrus
  12. insmod all_video
  13. }
  14.  
  15. load_video
  16. set gfxpayload=keep
  17.  
  18. # Timeout for menu
  19. set timeout=5
  20.  
  21. # Set default boot entry as Entry 0
  22. set default=0
  23. set color_normal=yellow/blue
  24.  
  25. menuentry "Kali - Boot Non Persistent Mode" {
  26. set root=(hd0,1)
  27. linuxefi /live/vmlinuz boot=live noconfig=sudo username=root hostname=kali
  28. initrdefi /live/initrd.img
  29. }
  30.  
  31. menuentry "Kali - Boot Persistent" {
  32. set root=(hd0,1)
  33. linuxefi /live/vmlinuz boot=live noconfig=sudo username=root hostname=kali persistence
  34. initrdefi /live/initrd.img
  35. }
  36.  
  37. menuentry "Kali Failsafe" {
  38. set root=(hd0,1)
  39. linuxefi /live/vmlinuz boot=live config memtest noapic noapm nodma nomce nolapic nomodeset nosmp nosplash vga=normal
  40. initrdefi /live/initrd.img
  41. }
  42.  
  43. menuentry "Kali Forensics - No Drive or Swap Mount" {
  44. set root=(hd0,1)
  45. linuxefi /live/vmlinuz boot=live noconfig=sudo username=root hostname=kali noswap noautomount
  46. initrdefi /live/initrd.img
  47. }
  48.  
  49. menuentry "Kali Graphical Install" {
  50. set root=(hd0,1)
  51. linuxefi /install/gtk/vmlinuz video=vesa:ywrap,mtrr vga=788
  52. initrdefi /install/gtk/initrd.gz
  53. }
  54.  
  55. menuentry "Kali Text Install" {
  56. set root=(hd0,1)
  57. linuxefi /install/vmlinuz video=vesa:ywrap,mtrr vga=788
  58. initrdefi /install/initrd.gz
  59. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement