1

I'm using a Ubuntu 12.04 LTS.

Yesterday I did an update of the system. Now I cannot open either the graphical part or the console (Alt+Maj+F1). On the console, when I tape the password, the system is freezing, same with the graphical interface.

Surprisingly, I can connect to the guest session.

I restart the computer and go the grub option to open the old version (3.12.0-65) and the system is working fine.

I want to inform you that the 3.12.0-66 has a problem to log on a session.

Is someone can give me the process to ask Grub to launch the 3.12.0-65 automatically instead of the 3.12.0-66.

hg8
  • 13,462

2 Answers2

1

Quick fix

Boot from 3.13.0-65 and just remove the problem kernel

sudo apt-get purge linux-image-3.13.0-66-generic 

Update GRUB

sudo grub-update

Better fix

Alternatively if you would like to keep 3.13.0-66 you can edit this file

sudo nano /etc/default/grub

You will need to know the number in which the kernel you want appears in the grub menu.

Example

0 Ubuntu with 3.13.0-66-generic

1 Advanced options for Ubuntu

2 Ubuntu with 3.13.0-65-generic

You can see in the example the kernel you want is the third one down, so number two because computers count from zero, in this example scenario you would

Find the line GRUB_DEFAULT=0 and change it too GRUB_DEFAULT=2 to boot with 3.13.0-65-generic by default.

Don't forget to update your grub

sudo grub-update
Mark Kirby
  • 18,529
  • 19
  • 78
  • 114
0

You have this problem because you enabled proposed software source.

Kernel 3.13.0-66 is in proposed repository and is not stable.

I recommend to disable proposed in System Settings to avoid this kind of problems.

proposed is for testing purposes, not for normal use.

Pilot6
  • 90,100
  • 91
  • 213
  • 324