Make space for /boot - Remove old kernels
Here is a post from an email thread that I thought might be good to share for many of you asking the same question:
Thanks to Ravi S. for the steps!
You can remove old kernels that are not being used as follows.
- Check current kernel being used
uname -a - List kernels that have been installed
rpm -qa | grep kernel - List the files present in the boot directory
ls -al /boot - Remove old kernel - take care not to delete the current kernel that was identified in the first step
rpm -e <old_kernel> - Remove older kernels until you have about 50MB space in the boot partition
2