Re: Dark screen
Posted: 30. Dec 2013, 16:20
No, you press TAB before that, at the Lilo screen; you only have a second or two to do so, but once you have pressed a key, you can compose the text you want to input at your leisure.
I pressed TAB before the texts roll, still zilch.mimosa wrote:No, you press TAB before that, at the Lilo screen; you only have a second or two to do so, but once you have pressed a key, you can compose the text you want to input at your leisure.
My desktop boots from grub2; however when booting salix, it is then using LILO.mimosa wrote:So are you booting from Lilo or Grub? If grub, I'm sure there's a similar way to boot into runlevel 3, but I'm afraid I don't know grub at all. Google knows, though
Good News now that you mentioned it, I do believe I set the delay to 0 on the installation of salix. Sooomimosa wrote:Unless you set the delay to 0 seconds, you should definitely be seeing the lilo screen immediately after BIOS, with a message to "Press TAB for boot options" or words to that effect. The standard delay is 5 seconds, so you do have to be reasonably quick. I always change mine to 30 seconds.
Code: Select all
menuentry 'Slackware Linux (Slackware 14.0) (on /dev/sda12)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-e3103027-de1e-48f7-8a06-96c5ada400cd' {
insmod part_msdos
insmod ext2
set root='hd0,msdos12'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos12 --hint-efi=hd0,msdos12 --hint-baremetal=ahci0,msdos12 --hint='hd0,msdos12' e3103027-de1e-48f7-8a06-96c5ada400cd
else
search --no-floppy --fs-uuid --set=root e3103027-de1e-48f7-8a06-96c5ada400cd
fi
linux /boot/vmlinuz root=/dev/sda12 ro quiet vt.default_utf8=1 vga = normal
}
submenu 'Advanced options for Slackware Linux (Slackware 14.0) (on /dev/sda12)' $menuentry_id_option 'osprober-gnulinux-advanced-e3103027-de1e-48f7-8a06-96c5ada400cd' {
menuentry 'Linux (on /dev/sda12)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz--e3103027-de1e-48f7-8a06-96c5ada400cd' {
insmod part_msdos
insmod ext2
set root='hd0,msdos12'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos12 --hint-efi=hd0,msdos12 --hint-baremetal=ahci0,msdos12 --hint='hd0,msdos12' e3103027-de1e-48f7-8a06-96c5ada400cd
else
search --no-floppy --fs-uuid --set=root e3103027-de1e-48f7-8a06-96c5ada400cd
fi
linux /boot/vmlinuz root=/dev/sda12 ro quiet vt.default_utf8=1 vga = normal
}
}
Code: Select all
menuentry 'Salix Xfce 14.0 (on /dev/sda12)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-e3103027-de1e-48f7-8a06-96c5ada400cd' {
insmod part_msdos
insmod ext2
set root='hd0,msdos12'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos12 --hint-efi=hd0,msdos12 --hint-baremetal=ahci0,msdos12 --hint='hd0,msdos12' e3103027-de1e-48f7-8a06-96c5ada400cd
else
search --no-floppy --fs-uuid --set=root e3103027-de1e-48f7-8a06-96c5ada400cd
fi
linux /boot/vmlinuz root=/dev/sda12 ro quiet vt.default_utf8=1 vga = normal
}
Code: Select all
# LILO configuration file
# generated by 'liloconfig'
#
# Start LILO global section
# Append any additional kernel parameters:
append="quiet vt.default_utf8=1"
boot = /dev/sda12
# Boot BMP Image.
# Bitmap in BMP format: 640x480x8
bitmap = /boot/salix.bmp
# Menu colors (foreground, background, shadow, highlighted
# foreground, highlighted background, highlighted shadow):
bmp-colors = 255,20,255,20,255,20
# Location of the option table: location x, location y, number of
# columns, lines per column (max 15), "spill" (this is how many
# entries must be in the first column before the next begins to
# be used. We don't specify it here, as there's just one column.
bmp-table = 60,6,1,16
# Timer location x, timer location y, foreground color,
# background color, shadow color.
bmp-timer = 65,29,0,255
# Standard menu.
# Or, you can comment out the bitmap menu above and
# use a boot message with the standard menu:
#message = /boot/boot_message.txt
# Wait until the timeout to boot (if commented out, boot the
# first entry immediately):
prompt
# Timeout before the first entry boots.
# This is given in tenths of a second, so 600 for every minute:
timeout = 50
# Override dangerous defaults that rewrite the partition table:
change-rules
reset
# Normal VGA console
vga = normal
# VESA framebuffer console @ 1024x768x64k
# vga=791
# VESA framebuffer console @ 1024x768x32k
# vga=790
# VESA framebuffer console @ 1024x768x256
# vga=773
# VESA framebuffer console @ 800x600x64k
# vga=788
# VESA framebuffer console @ 800x600x32k
# vga=787
# VESA framebuffer console @ 800x600x256
# vga=771
# VESA framebuffer console @ 640x480x64k
# vga=785
# VESA framebuffer console @ 640x480x32k
# vga=784
# VESA framebuffer console @ 640x480x256
# vga=769
# End LILO global section
# Linux bootable partition config begins
image = /boot/vmlinuz
root = /dev/sda12
label = Linux
read-only
# Linux bootable partition config ends