3

I need to downgrade kernel version in my Ubuntu 14.04.3 LTS production server from 3.19.0-26-generic to 3.13.0-62-generic.

How I can do it in safe way ? I only have console access.

Thanks

Roberto
  • 31

1 Answers1

3

You can install a specific kernel with (just change the kernel version here):

sudo apt-get install linux-image-3.13.0-62-generic linux-headers-3.13.0-62 linux-headers-3.13.0-62-generic 

Or use the following command to to install the latest Trusty kernel (it's 3.13.0-62 for now), not any specific version:

sudo apt-get install linux-generic-lts-trusty

After that, reboot your server and hit ESC after the vendor splash screen to enter GRUB menu. Select "Advanced options for Ubuntu" there, boot with the 3.13 kernel that you just installed to make sure it's working as expected.

If everything works well, you can remove the 3.19 kernel later.

P.-H. Lin
  • 2,824