Advertisement
Guest User

Untitled

a guest
Jul 4th, 2018
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.01 KB | None | 0 0
  1. bash-4.3$ cat /etc/lilo.conf
  2. # LILO configuration file
  3. # generated by 'liloconfig'
  4. #
  5. # Start LILO global section
  6. # Append any additional kernel parameters:
  7. append=" vt.default_utf8=0"
  8. boot = /dev/sda
  9.  
  10. #compact # faster, but won't work on all systems.
  11.  
  12. # Boot BMP Image.
  13. # Bitmap in BMP format: 640x480x8
  14. bitmap = /boot/slack.bmp
  15. # Menu colors (foreground, background, shadow, highlighted
  16. # foreground, highlighted background, highlighted shadow):
  17. bmp-colors = 255,0,255,0,255,0
  18. # Location of the option table: location x, location y, number of
  19. # columns, lines per column (max 15), "spill" (this is how many
  20. # entries must be in the first column before the next begins to
  21. # be used. We don't specify it here, as there's just one column.
  22. bmp-table = 60,6,1,16
  23. # Timer location x, timer location y, foreground color,
  24. # background color, shadow color.
  25. bmp-timer = 65,27,0,255
  26.  
  27. # Standard menu.
  28. # Or, you can comment out the bitmap menu above and
  29. # use a boot message with the standard menu:
  30. #message = /boot/boot_message.txt
  31.  
  32. # Wait until the timeout to boot (if commented out, boot the
  33. # first entry immediately):
  34. prompt
  35. # Timeout before the first entry boots.
  36. # This is given in tenths of a second, so 600 for every minute:
  37. timeout = 1200
  38. # Override dangerous defaults that rewrite the partition table:
  39. change-rules
  40. reset
  41. # Normal VGA console
  42. vga = normal
  43. # Ask for video mode at boot (time out to normal in 30s)
  44. #vga = ask
  45. # VESA framebuffer console @ 1024x768x64k
  46. #vga=791
  47. # VESA framebuffer console @ 1024x768x32k
  48. #vga=790
  49. # VESA framebuffer console @ 1024x768x256
  50. #vga=773
  51. # VESA framebuffer console @ 800x600x64k
  52. #vga=788
  53. # VESA framebuffer console @ 800x600x32k
  54. #vga=787
  55. # VESA framebuffer console @ 800x600x256
  56. #vga=771
  57. # VESA framebuffer console @ 640x480x64k
  58. #vga=785
  59. # VESA framebuffer console @ 640x480x32k
  60. #vga=784
  61. # VESA framebuffer console @ 640x480x256
  62. #vga=769
  63. # End LILO global section
  64. # Linux bootable partition config begins
  65. image = /boot/vmlinuz
  66. root = /dev/sdb1
  67. label = Linux
  68. read-only
  69. # Linux bootable partition config ends
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement