1

I have been using Ubuntu from a long time but I had never been in the depth of Ubuntu. At present I am using Ubuntu 12.04 LTS. It was getting hanged randomly and fast when I was using Firefox. I search a bit and found that possible solution is to upgrade kernel.

Earlier my kernel was(I am not sure though) 3.5.x something and then I upgrade it to 3.8.8 using this link and then after reboot when I open Ubuntu, graphics which was ugly earlier was perfectly fine but no other peripheral work other then VGA port.

I don't know what I had done wrong, and I am unable to post any other related info as even internet is not working in Ubuntu. Had I done anything wrong like upgrading Linux kernel of Ubuntu 12.04 to a kernel version which is not supported?

please help me.

Saurav Kumar
  • 15,174

1 Answers1

0

Go through following steps to re-configure all the packages installed in you system.

  1. Open the terminal and execute these commands one after other.

    sudo dpkg-reconfigure $(dpkg -l | awk '{print $2}' | grep "^xserver" | tr '\n' ' ')
    sudo dpkg-reconfigure -a
    sudo update-initramfs -u
    sudo update-grub
    

    sudo dpkg-reconfigure -a would take some time approx. 5-10 minutes, bases on the packages installed in your system. So wait for it to finish. It won't give any error or message if executes successfully.

  2. Then restart your system once. You can use following command to restart:

    sudo reboot
    

Reply if all goes well or you get any trouble at any command or any error message.

Edit

Since it is confirmed that the kernel you installed doesn't support, I suggest you to install the kernel from the default Ubuntu Repository. Since you installed the kernel 3.8.x not from the repository but from other places, it would be the reason that you get that much trouble. You can install the same kernel version i,e 3.8.x from the repository in Ubuntu 12.04.

Since many have got similar issues, including me, I've already solved it before. I'm providing the link that can help you:

Experiences major issues on graphics displays

Except 3rd step just go through it precisely. Reply if you get any trouble.

Saurav Kumar
  • 15,174