Supprimer les KERNEL anciens

Solution 1 : Utiliser SYNAPTIC  :
http://askubuntu.com/questions/2793/how-do-i-remove-old-kernel-versions-to-clean-up-the-boot-menu

Solution 2 :

  1. Ouvrir un terminal et vérifier quel est le noyau actif / courant ?
uname -r 

SURTOUT : NE PAS SUPPRIMER CE NOYAU (actif) !

2. Lister les noyaux / kernels installés ?
( Les paquets linux-image-extra-NNN sont supprimés avec les paquets linux-image-NNN )

dpkg --list | grep linux-image 

3. Find all the kernels that lower than your current kernel. When you know which kernel to remove, continue below to remove it. Run the commands below to remove the kernel you selected.

apt-get purge linux-image-4.4.0-x*-generic 

4. Ne garder que 2 ou 3 noyaux maximum.
Enfin (si cela n’a pas déjà été réalisé par la commande purge) , exécuter la Mise à Jour GRUB

sudo update-grub2 

5. Reboot your system.