1
How To's / How To Update the Kernel Version in CentOS
« on: May 20, 2016, 12:23:08 AM »
It's pretty easy to update server's kernel version in CentOS distro. Just run the command given below to finish the task.
However, we recommend to use -y flag just in case to secure vulnerability and to ensure you've the latest kernel in run.
The flag -y also replies 'Yes' to every question raised whilst the command runs.
Now reboot the server and confirm the kernel has been updated to the latest version by firing:
That's easy !
Code: [Select]
# yum update kernel
However, we recommend to use -y flag just in case to secure vulnerability and to ensure you've the latest kernel in run.
Code: [Select]
# yum -y update kernel
The flag -y also replies 'Yes' to every question raised whilst the command runs.
Now reboot the server and confirm the kernel has been updated to the latest version by firing:
Code: [Select]
# uname -r
That's easy !
