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
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.
linux-image-extra-3.13.0-62-generic
. Without this WiFi and external monitor were not working after downgrading on my laptop. – luator Oct 22 '18 at 07:21