Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matiasmasca/a541328a2879f949376d0201c2c57f5a to your computer and use it in GitHub Desktop.
Save matiasmasca/a541328a2879f949376d0201c2c57f5a to your computer and use it in GitHub Desktop.
¿Cómo limpiar versiones viejas del Kernel de Linux?
¿Cómo limpiar versiones viejas del Kernel de Linux?
Como usuario novato de linux me encontré que mi partición de arranque /boot de 400megas estaba re-llena, pero de que? ni idea.
Publique mi problema en StackOverflow, y un alma caritativa me dio la solución correcta. Ahora esta posteada aquí:
http://superuser.com/questions/1144753/how-to-clean-the-boot-directory-on-linux-mint/1145020#1145020
Todavía no sé si es seguro hacerlo, pero estoy borrando las versiones mas antiguas.
Listar versiones del kernel
dpkg --list | grep linux-image
dpkg --list | grep linux-headers
eliminar versiones
apt-get purge linux-image.x...
apt-get purge linux-headers.x...
actualizar el arrancador
sudo update-grub
sudo update-grub2
@matiasmasca
Copy link
Author

También despues de eliminar una imagen podes correr: sudo apt autoremove

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment