Ubuntu 7.10 Gutsy Gibbon blank screen during boot
Ubuntu 7.10 "Gutsy Gibbon" was released a couple of days ago and I immediately installed it on my laptop, which is kind of my test lab for operating systems.
It looks good so far. Very smooth.
I only had one problem: the screen was completely black during boot and shutdown. I could only see a blank screen during startup or shutdown, and although I could still switch to the other consoles along with the fact that the boot splash screen isn't properly informative, the boot process was taking over 3 minutes. Unacceptable.
I searched Google and after tweaking the keywords once, I reached the golden combination: "gutsy gibbon blank screen during boot"
Turns out this is an already known bug in Gutsy and I quickly found out how to solve it, thanks to the folks at Launchpad:
1) Change the resolution in /etc/usplash.conf to 1280x800
2) Run "sudo update-initramfs -u -k `uname -r`"
Note that the 1280x800 resolution is the "default" resolution for my laptop's monitor - I have an Acer TravelMate 4001 WLMi, with an ATI Mobility Radeon 9700. The resolution for your laptop's monitor may be different.
You may want to take a look at Xorg.conf or go to System -> Preferences -> Screen Resolution to see what you should use in /etc/usplash.conf (assuming the installer correctly detected the supported resolutions, of course).

Thanks - just what I was
Thanks - just what I was looking for!
Thanks so much =D i just got
Thanks so much =D i just got the gutsy gibbon live cds i ordered and then i installed them to get that blank screen. almost freaked me out except for the fact that i have had exaperience with knowing to find fixes for this stuff XD
funny thing, i installed on
funny thing, i installed on a desktop, and didn't get any problem, only get problems on the laptop, that i've needed to change the boot paramters to include "acpi=off".
but you kow, IT isn't an absolute science...
Check this out
Hi!
I'm finally turning over to linux and I found out this site (http://www.pendrivelinux.com) that explains how to use some distributions directly on a pen drive. It's nice to load linux inside of a windows session :D
I'm currently trying out 64Studio and it is somewhat slow (comparing to a "real" linux boot), but I guess it's ok to find out what. Wish me luck!
Thanks! I needed this info!
Thanks! I needed this info!
THANKYOU SO EFFIN MUCH
OMG YOU SAVED ME i did want to use gutsy for that reason and now i can thank you so much
Run "sudo update-initramfs -u -k `uname -r`" didn't work for me
Dear Sir
when I run the above command I get the following:
update-initramfs: Generating /boot/initrd.img-uname -r
Cannot find /lib/modules/uname -r
update-initramfs: failed for /boot/initrd.img-uname -r
I checked /lib/modules and could not find a "uname -r"
If you have any ideas how to get around this please send an email to «removed to prevent spammer happiness»
george314, you probably ran
george314, you probably ran the command without enclosing `uname -r` in single quotes.
"uname -r" is a command that tells you the version of the Linux kernel your computer is running. You can execute it independently. Give it a try.
The whole "sudo update-initramfs -u -k `uname -r`" is a bit more complex. Let's break it apart.
The first part, "sudo", is a command that will execute whatever follows it, with root privileges. This is necessary because you're going to make some changes to some important files, which could damage the whole system if done without care.
After the "sudo" command there is another command, the one that will be executed with root privileges: "update-initramfs". This one takes a few parameters.
The "-u" parameter tells "update-initramfs" to update an existing initrafms (the important files that are going to be changed).
The "-k" paramenter lets you determine which version of the file you want to change (you can have multiple Linux kernels installed on your machine, so you need to tell update-initramfs which one you want to change). Now this is the tricky part. You usually want to update the initramfs for the kernel your computer is running at the time, so you need to know exactly what version it is, which is not as simple as "2.6.22", because Linux distributions usually append other stuff to their kernels. So how do you know what to write there? Simple: you ask Linux to write it for you.
And that's what the `uname -r` part is for. This is yet another command that will be executed and its result will be passed on to the first command. It's a command that can take several parameters, depending on what you want it to tell you. In this case, you want the kernel version your computer is currently running, so you pass it the "-r" parameter. But in order for this command to be executed instead of interpreted as just some text you wrote yourself, you need to wrap it in single quotes. That's what tells the interpreter that there is something there that needs to be executed before the final command gets to run.
So, for instance, if you're running kernel "2.6.22-14-generic", which is the latest from Ubuntu, and you run "sudo update-initramfs -u -k `uname -r`" (without the double quotes, of course), this command will be parsed first and the `uname -r` command will be executed, resulting in "sudo update-initramfs -u -k 2.6.22-14-generic".
This is why you have to include the single quotes around `uname -r`. If you don't, "uname -r" will have no meaning for the interpreter and update-initramfs will have no idea which version it should update. Try to copy and paste the whole command from here.
Hope this helps.
PS - I removed your e-mail from your comment because of spammers.
thanks
That helped. It works now.
Thank you soo much!
You have helped so much!
THANKS!
Infact, thank you soo much!
thanks! that did it!
thanks! that did it!
Yup, has worked for me
Yup, has worked for me also... kinda. heh, I still get some screen screw ups during the load, but it does at least show now. (before was black and then screw ups appear just before login screen) Thinking my laptop might be needing a less demanding distro, xubuntu seems popular, any thoughts?
Xubuntu is nice. It is
Xubuntu is nice. It is basicaly Ubuntu with a different default desktop environment - instead of Gnome, it installs Xfce - but the repositories are exactly the same, the packages are the same, everything is the same.
If you want to, you can also change from Ubuntu to Xubuntu. You just need to install the package "xubuntu-desktop" and everything will be put in place for you.
Want to try Kubuntu? Install "kubuntu-desktop".
Easy. :)
Xfce is a very light desktop, so it is a good alternative to the heavier (but more feature-rich) Gnome.
In this case, though, I'm not sure it will make much of a difference, since the problem is more likely caused by the graphics drivers or some of their configuration options.
But it's worth a try. Good luck! :)