what is the lowest messange showing up on the bottom of the screen when the splash screen screws?
Main Topics
Browse All TopicsHello everybody!
I recently installed Ubuntu Jaunty. Things are running fine but when I first installed it there were some graphic card issues that I later fixed.
Now when it is booting up and showing the splash screen, it only shows it until about 30% loaded, then it shows the actual prompt commands while the operating system loads. Anybody know what caused it to stop showing the splash screen the whole way through the OS load process?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
I had the exact same problem after my Ubuntu (and other Linux distros) had become unbootable and I had to repair Grub.
In my case it was clear that the drive identifiers (UUIDs) had been messed up somehow, and it turned out that a missing UUID of my swap partition had caused this behaviour. The repair was easy enough.
Just to make sure that a similar issue may be the cause of your problem, run the following commands in a terminal:
sudo blkid
cat /etc/initramfs-tools/conf.
cat /etc/fstab
Comparing the results of the first command and the two other ones, do you get different number codes for the Swap partition? Or even none at all?
In that case, here's the easy way to solve this:
-- sudo fdisk -l (that is a small "L")
-- write down the device name of your swap partition (sdxx)
-- sudo cp /boot/grub/menu.lst /boot/grub/menu.lst.repair
-- gksudo gedit /boot/grub/menu.lst
-- browse down to your main Ubuntu start menu entry (it will most likely be the first one in the list; in any case, it's the one with the highest kernel number)
-- in the "kernel" line, behind "root=/dev/....." insert "resume=/dev/sdxx", replacing sdxx by the device name of your swap partition
-- save, exit and reboot.
There is also a more complicated solution which recreates the swap UUID described here: http://ubuntuforums.org/sh
The other participating experts posted a question and a recommendation on first steps for troubleshooting; in ID:24302511 I posted an explanation of the issue (Grub menu containing an unidentifiable swap drive) and a step-by-step solution which is proven to have worked in an identical case (Ubuntu boot screen disappearing halfway through the boot process).
Hence I recommend my comment ID:24302511 to be accepted as the solution.
Business Accounts
Answer for Membership
by: fmarzoccaPosted on 2009-05-02 at 00:37:25ID: 24285223
Open from root the file /boot/grub/menu.lst and remove all occurencies of the word "quiet". Then reboot and look at the last message before screen switches to terminal, so that you can investigate on which process is causing the problem.