LinuxQuestions.org
Register a domain and help support LQ
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Ubuntu
User Name
Password
Ubuntu This forum is for the discussion of Ubuntu Linux.

Notices

Reply
 
LinkBack Search this Thread
Old 10-30-2009, 08:48 AM   #1
adityavpratap
Member
 
Registered: Dec 2004
Location: Hyderabad, India
Distribution: Slackware 13, Ubuntu 10.04
Posts: 421

Rep: Reputation: 32
missing bootsplash


HI!

I have upgraded to Karmic Koala today, from its beta version. I was having some problem in installing grub, which were sorted out after I installed grub2.

One problem remains though. There is no boot splash while the booting process goes on. In the previous versions of Ubuntu, there used to be a nice bootsplash and I was hopping something better in Karmic Koala. So was mighty disappointed to find it missing. Moreover I don't find any way to enable it.

Is there any way I can get boot splash to work here?
 
Old 10-31-2009, 10:06 AM   #2
ronlau9
Senior Member
 
Registered: Dec 2007
Location: In front of my LINUX OR MAC BOX
Distribution: Mandriva 2009 X86_64 suse 11.3 X86_64 Centos X86_64 Debian X86_64 Linux MInt 86_64 OS X
Posts: 2,298

Rep: Reputation: Disabled
What is the contents of you're menu.cfg ?
 
Old 10-31-2009, 11:59 AM   #3
adityavpratap
Member
 
Registered: Dec 2004
Location: Hyderabad, India
Distribution: Slackware 13, Ubuntu 10.04
Posts: 421

Original Poster
Rep: Reputation: 32
I don't find a menu.cfg in /boot/grub/.
 
Old 10-31-2009, 02:43 PM   #4
ronlau9
Senior Member
 
Registered: Dec 2007
Location: In front of my LINUX OR MAC BOX
Distribution: Mandriva 2009 X86_64 suse 11.3 X86_64 Centos X86_64 Debian X86_64 Linux MInt 86_64 OS X
Posts: 2,298

Rep: Reputation: Disabled
Quote:
Originally Posted by adityavpratap View Post
I don't find a menu.cfg in /boot/grub/.
Sorry do you a grub.cfg ?
 
Old 11-01-2009, 12:14 AM   #5
adityavpratap
Member
 
Registered: Dec 2004
Location: Hyderabad, India
Distribution: Slackware 13, Ubuntu 10.04
Posts: 421

Original Poster
Rep: Reputation: 32
Ok, here are the contents of /boot/grub/grub.cfg

Quote:
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by /usr/sbin/grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s /boot/grub/grubenv ]; then
have_grubenv=true
load_env
fi
set default="0"
if [ ${prev_saved_entry} ]; then
saved_entry=${prev_saved_entry}
save_env saved_entry
prev_saved_entry=
save_env prev_saved_entry
fi
insmod ext2
set root=(hd0,12)
search --no-floppy --fs-uuid --set 755c4331-4619-4024-b119-081ab9b4dd4a
if loadfont /share/grub/unicode.pf2 ; then
set gfxmode=640x480
insmod gfxterm
insmod vbe
if terminal_output gfxterm ; then true ; else
# For backward compatibility with versions of terminal.mod that don't
# understand terminal_output
terminal gfxterm
fi
fi
if [ ${recordfail} = 1 ]; then
set timeout=-1
else
set timeout=10
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/white
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
menuentry "Ubuntu, Linux 2.6.31-14-generic" {
recordfail=1
if [ -n ${have_grubenv} ]; then save_env recordfail; fi
set quiet=1
insmod ext2
set root=(hd0,10)
search --no-floppy --fs-uuid --set 46ab2b69-e3e0-4f50-980d-a6ba88cff0f7
linux /boot/vmlinuz-2.6.31-14-generic root=UUID=46ab2b69-e3e0-4f50-980d-a6ba88cff0f7 ro splash quiet splash
initrd /boot/initrd.img-2.6.31-14-generic
}
menuentry "Ubuntu, Linux 2.6.31-14-generic (recovery mode)" {
recordfail=1
if [ -n ${have_grubenv} ]; then save_env recordfail; fi
insmod ext2
set root=(hd0,10)
search --no-floppy --fs-uuid --set 46ab2b69-e3e0-4f50-980d-a6ba88cff0f7
linux /boot/vmlinuz-2.6.31-14-generic root=UUID=46ab2b69-e3e0-4f50-980d-a6ba88cff0f7 ro single splash vga=769
initrd /boot/initrd.img-2.6.31-14-generic
}
menuentry "Ubuntu, Linux 2.6.31-13-generic" {
recordfail=1
if [ -n ${have_grubenv} ]; then save_env recordfail; fi
set quiet=1
insmod ext2
set root=(hd0,10)
search --no-floppy --fs-uuid --set 46ab2b69-e3e0-4f50-980d-a6ba88cff0f7
linux /boot/vmlinuz-2.6.31-13-generic root=UUID=46ab2b69-e3e0-4f50-980d-a6ba88cff0f7 ro splash vga=769 quiet splash
initrd /boot/initrd.img-2.6.31-13-generic
}
menuentry "Ubuntu, Linux 2.6.31-13-generic (recovery mode)" {
recordfail=1
if [ -n ${have_grubenv} ]; then save_env recordfail; fi
insmod ext2
set root=(hd0,10)
search --no-floppy --fs-uuid --set 46ab2b69-e3e0-4f50-980d-a6ba88cff0f7
linux /boot/vmlinuz-2.6.31-13-generic root=UUID=46ab2b69-e3e0-4f50-980d-a6ba88cff0f7 ro single splash vga=769
initrd /boot/initrd.img-2.6.31-13-generic
}
menuentry "Ubuntu, Linux 2.6.27-11-generic" {
recordfail=1
if [ -n ${have_grubenv} ]; then save_env recordfail; fi
set quiet=1
insmod ext2
set root=(hd0,10)
search --no-floppy --fs-uuid --set 46ab2b69-e3e0-4f50-980d-a6ba88cff0f7
linux /boot/vmlinuz-2.6.27-11-generic root=UUID=46ab2b69-e3e0-4f50-980d-a6ba88cff0f7 ro splash vga=769 quiet splash
initrd /boot/initrd.img-2.6.27-11-generic
}
menuentry "Ubuntu, Linux 2.6.27-11-generic (recovery mode)" {
recordfail=1
if [ -n ${have_grubenv} ]; then save_env recordfail; fi
insmod ext2
set root=(hd0,10)
search --no-floppy --fs-uuid --set 46ab2b69-e3e0-4f50-980d-a6ba88cff0f7
linux /boot/vmlinuz-2.6.27-11-generic root=UUID=46ab2b69-e3e0-4f50-980d-a6ba88cff0f7 ro single splash vga=769
initrd /boot/initrd.img-2.6.27-11-generic
}
menuentry "Ubuntu, Linux 2.6.24-19-generic" {
recordfail=1
if [ -n ${have_grubenv} ]; then save_env recordfail; fi
set quiet=1
insmod ext2
set root=(hd0,10)
search --no-floppy --fs-uuid --set 46ab2b69-e3e0-4f50-980d-a6ba88cff0f7
linux /boot/vmlinuz-2.6.24-19-generic root=UUID=46ab2b69-e3e0-4f50-980d-a6ba88cff0f7 ro splash vga=769 quiet splash
initrd /boot/initrd.img-2.6.24-19-generic
}
menuentry "Ubuntu, Linux 2.6.24-19-generic (recovery mode)" {
recordfail=1
if [ -n ${have_grubenv} ]; then save_env recordfail; fi
insmod ext2
set root=(hd0,10)
search --no-floppy --fs-uuid --set 46ab2b69-e3e0-4f50-980d-a6ba88cff0f7
linux /boot/vmlinuz-2.6.24-19-generic root=UUID=46ab2b69-e3e0-4f50-980d-a6ba88cff0f7 ro single splash vga=769
initrd /boot/initrd.img-2.6.24-19-generic
}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry "Memory test (memtest86+)" {
linux16 /boot/memtest86+.bin
}
menuentry "Memory test (memtest86+, serial console 115200)" {
linux16 /boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry "Microsoft Windows XP Professional (on /dev/sda1)" {
insmod fat
set root=(hd0,1)
search --no-floppy --fs-uuid --set 20e6-1dd7
drivemap -s (hd0) ${root}
chainloader +1
}
menuentry "Linux (on /dev/sda2)" {
insmod ext2
set root=(hd0,2)
search --no-floppy --fs-uuid --set 04849200-d680-48bf-9068-c812254e53a8
linux /boot/vmlinuz root=/dev/sda2 ro vt.default_utf8=0 vga = 773
}
menuentry "linux (on /dev/sda7)" {
insmod ext2
set root=(hd0,7)
search --no-floppy --fs-uuid --set 5e93945c-ae6c-11dd-a182-ad4f53ce72f3
linux /boot/vmlinuz BOOT_IMAGE=linux root=UUID=5e93945c-ae6c-11dd-a182-ad4f53ce72f3 resume=UUID=c2cccd0e-acea-11dd-9e0a-693958b5c82b splash=silent vga=788
initrd (hd0,6)/boot/initrd.img
}
menuentry "linux-nonfb (on /dev/sda7)" {
insmod ext2
set root=(hd0,7)
search --no-floppy --fs-uuid --set 5e93945c-ae6c-11dd-a182-ad4f53ce72f3
linux /boot/vmlinuz BOOT_IMAGE=linux-nonfb root=UUID=5e93945c-ae6c-11dd-a182-ad4f53ce72f3 resume=UUID=c2cccd0e-acea-11dd-9e0a-693958b5c82b splash=silent
initrd (hd0,6)/boot/initrd.img
}
menuentry "failsafe (on /dev/sda7)" {
insmod ext2
set root=(hd0,7)
search --no-floppy --fs-uuid --set 5e93945c-ae6c-11dd-a182-ad4f53ce72f3
linux /boot/vmlinuz BOOT_IMAGE=failsafe root=UUID=5e93945c-ae6c-11dd-a182-ad4f53ce72f3 failsafe
initrd (hd0,6)/boot/initrd.img
}
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###
 
Old 11-01-2009, 06:04 AM   #6
ronlau9
Senior Member
 
Registered: Dec 2007
Location: In front of my LINUX OR MAC BOX
Distribution: Mandriva 2009 X86_64 suse 11.3 X86_64 Centos X86_64 Debian X86_64 Linux MInt 86_64 OS X
Posts: 2,298

Rep: Reputation: Disabled
Try to change the ro splash quiet splash in ro quiet splash so remove the first splash
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Bootsplash bookie General 16 04-17-2008 12:45 AM
Missing "bootsplash.de" Website Exeis Linux - Software 1 01-30-2008 05:07 PM
Problem running UT Demo, Xlib missing on 0.0.. gldrv missing etc. RHLinuxGUY Linux - Games 3 05-22-2006 12:02 AM
Bootsplash raysr Mandriva 3 05-17-2006 03:41 AM
Bootsplash ski3r Debian 4 10-18-2004 05:48 PM


All times are GMT -5. The time now is 09:58 PM.

Main Menu
 
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
identi.ca: @linuxquestions
Facebook: @linuxquestions
Open Source Consulting | Domain Registration