Boot Partition is full because of updated kernel’s
1 |
df -h |
Clean Up the Boot Partition with he following commands:
1 2 3 4 5 |
sudo -s dpkg --get-selections|grep 'linux-image*'|awk '{print $1}'|egrep -v "linux-image-$(uname -r)|linux-image-generic" |while read n;do apt-get -y remove $n;done apt-get autoremove update-grub exit |
Sources:
http://ubuntuforums.org/showthread.php?t=1435818
updates – What is the safest way to clean up /boot partition? – Ask Ubuntu