How to upgrade JUST the kernel? [duplicate]
You can upgrade just the kernel by running the following command:
sudo apt-get update && sudo apt-get install linux-image-generic
If you need headers for building kernel modules as well, you can also install them like so:
sudo apt-get update && sudo apt-get install linux-generic
It will update both linux-image-generic
& linux-headers-generic
.