1

Splash screen flickers heavily during boot on my dell inspiron N5010 laptop,but disappears after some time by press Esc button(several times)..This happens everytime I boot... The problem exists in all linux-distros currently on ubuntu 12.10 64 bit... My laptop doesnt hav any dedicated graphics card but oly intel hd 3000

I hav enclosed boot.log,Dmesg.log ,Xorg.log and my system info respectively

Boot.log
Xorg.log

lambda23
  • 3,232
Droidmaniac
  • 11
  • 1
  • 3
  • You could try to remove splash from the boot part: sudo nano /etc/default/grub and remove GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" splash from this line. – Dr_Bunsen Nov 08 '12 at 09:29
  • http://dl.dropbox.com/u/46854640/Xorg.log

    http://dl.dropbox.com/u/46854640/System%20info

    – Droidmaniac Nov 08 '12 at 09:44

3 Answers3

1

Do you have a USB keyboard/Mouse/Wifi receiver? I had this same issue whenever I had my logitech wireless keyboard and mouse hooked up. The problem was fixed by removing it...

Matthew
  • 489
1

Put The following line instead of:

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"

in /etc/default/grub :

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nomodeset"

Save it. And run sudo update-grub

It usually works.

Seth
  • 58,122
Orko
  • 11
0

Summary:

Actually, you should remove everything from GRUB_CMDLINE_LINUX_DEFAULT="quiet splash", so it will become GRUB_CMDLINE_LINUX_DEFAULT="".


Temporary solution:

Before logging in (during boot process):

Press E in the Grub menu while Ubuntu is selected.

Update the GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" portion of the file to GRUB_CMDLINE_LINUX_DEFAULT="".

Press F10 to boot.


Permanent solution:

After logging in:

sudo apt install gedit
sudo gedit /etc/default/grub

Update the GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" portion of the file to GRUB_CMDLINE_LINUX_DEFAULT=""

Then,

sudo update-grub
Rawnak Yazdani
  • 153
  • 2
  • 8