home.social

#kernel-panic — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #kernel-panic, aggregated by home.social.

fetched live
  1. Cómo solucionar un kernel panic en Ubuntu tras una actualización del kernel


    Actualizar Ubuntu suele ser una tarea sencilla y recomendable, pero en algunos casos una actualización del kernel puede provocar un problema grave: el sistema deja de arrancar correctamente y aparece un kernel panic.

    Esto puede ocurrir después de una actualización automática o tras ejecutar un apt upgrade, especialmente si el nuevo kernel instalado no se lleva bien con el hardware, los controladores o alguna configuración concreta del sistema.

    En mi caso, el sistema dejó de arrancar correctamente tras instalarse un kernel problemático. La solución no fue reinstalar Ubuntu ni formatear el equipo, sino identificar qué kernel seguía funcionando, arrancar manualmente con él y dejar esa versión protegida frente a nuevas actualizaciones.

    El problema: Ubuntu no arrancaba tras actualizar el kernel

    Después de una actualización, Ubuntu intentaba arrancar con un kernel nuevo que provocaba un fallo grave. El sistema no llegaba a iniciar con normalidad y era necesario intervenir desde GRUB ( al que por cierto se accede por cierto pulsando Shift/Escape justo en el momento del encendido y manteniendo esta tecla pulsada).

    El kernel problemático era una versión más reciente, mientras que una versión anterior del kernel seguía funcionando perfectamente.

    En este caso, el kernel estable era:

     6.11.0-26-generic  

    Y el kernel que provocaba el problema era:

     6.17.0-20  

    La clave fue descubrir que el sistema todavía podía arrancar con el kernel anterior.

    Primer paso: identificar los kernels disponibles

    Desde GRUB es posible ver qué versiones del kernel están instaladas. En algunos casos, si el menú de GRUB no aparece automáticamente, se puede acceder manteniendo pulsada la tecla Shift o Esc durante el arranque, dependiendo del equipo.

    Una vez dentro de las opciones avanzadas de Ubuntu, hay que buscar las versiones del kernel disponibles y probar a arrancar con una versión anterior.

    Normalmente aparecerá algo parecido a:

     Ubuntu, con Linux 6.11.0-26-generic  Ubuntu, con Linux 6.17.0-20-generic  

    Si el sistema arranca correctamente con el kernel anterior, ya tenemos identificado el kernel bueno.

    Arrancar con el kernel que sí funciona

    Una vez localizado el kernel funcional, se debe iniciar Ubuntu con esa versión. Si el arranque se completa correctamente, ya se puede trabajar desde la terminal para eliminar o bloquear el kernel problemático.

    Conviene comprobar la versión del kernel en uso con:

     uname -r  

    La salida debería mostrar la versión estable, por ejemplo:

     6.11.0-26-generic  

    Congelar el kernel estable

    Para evitar que Ubuntu sustituya automáticamente el kernel bueno por otro que pueda volver a fallar, se puede congelar la versión estable.

    Primero se puede comprobar qué paquetes están actualmente congelados:

     apt-mark showhold  

    Después, si se desea impedir que se actualicen los metapaquetes del kernel, se puede ejecutar:

     sudo apt-mark hold linux-image-generic linux-headers-generic  

    Esto evita que Ubuntu instale automáticamente nuevas versiones del kernel a través de esos paquetes genéricos.

    Eliminar el kernel problemático

    Una vez confirmado que el sistema funciona correctamente con el kernel anterior, se puede eliminar el kernel que provocaba el fallo.

    El comando exacto dependerá del nombre de los paquetes instalados, pero primero se pueden listar los kernels disponibles con:

     dpkg --list | grep linux-image  

    Después se elimina el paquete correspondiente al kernel defectuoso, por ejemplo:

     sudo apt remove linux-image-6.17.0-20-generic  

    También puede ser necesario eliminar sus cabeceras asociadas:

     sudo apt remove linux-headers-6.17.0-20-generic  

    Después conviene actualizar GRUB:

     sudo update-grub  

    Así el sistema dejará de intentar arrancar con el kernel problemático.

    Crear una copia de seguridad de la configuración

    Una vez recuperado el sistema, es recomendable guardar una copia de seguridad de la configuración actual.

    Por ejemplo, para guardar la configuración de GRUB:

     sudo cp /etc/default/grub /etc/default/grub.bak  

    Y para guardar la lista de paquetes congelados:

     apt-mark showhold > ~/paquetes_congelados.txt  

    Esto resulta útil si más adelante hay que repetir el proceso o documentar qué cambios se hicieron.

    Revisar futuras actualizaciones

    Antes de ejecutar una actualización completa del sistema, conviene revisar si Ubuntu pretende instalar un nuevo kernel:

     apt list --upgradable | grep linux-image  

    Si aparecen paquetes relacionados con linux-image, es buena idea revisar con calma qué se va a instalar antes de continuar.

    En sistemas que se usan para trabajo, investigación, servidores domésticos, adquisición de datos o entornos de desarrollo, una actualización de kernel puede tener consecuencias importantes.

    ¿Y si quiero actualizar el kernel más adelante?

    Congelar el kernel no significa que nunca más pueda actualizarse. Simplemente evita que se haga de forma automática o accidental.

    Si más adelante interesa probar una versión nueva, se puede descongelar temporalmente:

     sudo apt-mark unhold linux-image-generic linux-headers-generic  

    Después se actualiza el sistema, se reinicia y se comprueba que todo funciona correctamente.

    Si el nuevo kernel es estable, se puede volver a congelar la configuración. Si no funciona, se puede arrancar de nuevo con el kernel anterior desde GRUB.

    Conclusión

    Un kernel panic tras una actualización de Ubuntu puede parecer un problema grave, pero no siempre implica reinstalar el sistema. En muchos casos, la solución consiste en arrancar con un kernel anterior, eliminar el kernel defectuoso y evitar que Ubuntu vuelva a instalar automáticamente una versión problemática.

    La idea fundamental es sencilla:

    1. Localizar un kernel que sí funcione.
    2. Arrancar Ubuntu con esa versión.
    3. Eliminar el kernel defectuoso.
    4. Actualizar GRUB.
    5. Congelar el kernel estable.
    6. Documentar los cambios realizados.

    Este procedimiento permite recuperar el sistema sin perder programas, configuraciones ni entornos de trabajo ya instalados.

    En mi caso, además de recuperar Ubuntu, pude conservar intacto todo el entorno de trabajo que tenía configurado, evitando una reinstalación completa y muchas horas de trabajo.

    #actualizaciónUbuntu #actualizarKernel #aptMarkHold #arranqueUbuntu #comandosUbuntu #congelarKernel #eliminarKernelLinux #errorKernelUbuntu #GRUB #kernelDefectuoso #kernelPanic #Linux #LinuxKernel #mantenimientoLinux #opcionesAvanzadasGRUB #recuperarUbuntu #reinstalarUbuntu #repararUbuntu #sistemaOperativo #soluciónLinux #terminalLinux #Ubuntu #UbuntuNoArranca #updateGrub
  2. Miracle! I just fixed a kernel panic problem on my stone-old Acer notebook following a well written comment from an Ubuntu forum. This feels like too easy to be true. Thank you, internet! <3

    #kernelpanic #xubuntu

  3. Miracle! I just fixed a kernel panic problem on my stone-old Acer notebook following a well written comment from an Ubuntu forum. This feels like too easy to be true. Thank you, internet! <3

    #kernelpanic #xubuntu

  4. After 14 years I installed Ubuntu on a PC again. Chose because I want to play music and use real-time guitar effects.
    So far: kernel panics, broken updates, and hours wasted configuring my M-Audio sound card.
    I was almost starting to regret it... 🫩

    #Linux #Ubuntu #UbuntuStudio #AudioProduction #MusicProduction #MIDI #OpenSource #KernelPanic

  5. After 14 years I installed Ubuntu on a PC again. Chose because I want to play music and use real-time guitar effects.
    So far: kernel panics, broken updates, and hours wasted configuring my M-Audio sound card.
    I was almost starting to regret it... 🫩

    #Linux #Ubuntu #UbuntuStudio #AudioProduction #MusicProduction #MIDI #OpenSource #KernelPanic

  6. EDIT: it's not the virtio driver. This VM has 1G ram. If increased to 2G, it will boot. It seems it's the intramfs unable to decompress. And it's strange.

    I've just upgraded my Proxmox Backup Server, running inside a bhyve VM on FreeBSD 15.0-RELEASE, and it now kernel panics as soon as it boots.

    Setup:
    - Host: FreeBSD 15.0-RELEASE
    - Guest Kernel: Linux 7.0
    - NIC: virtio-net

    Workarounds tested:
    - Removing the network device: boots successfully
    - Changing the NIC to e1000: boots successfully

    This seems to point to a virtio-net issue with this kernel under bhyve.

    Has anyone else noticed this?

    #FreeBSD #bhyve #Linux #KernelPanic

  7. EDIT: it's not the virtio driver. This VM has 1G ram. If increased to 2G, it will boot. It seems it's the intramfs unable to decompress. And it's strange.

    I've just upgraded my Proxmox Backup Server, running inside a bhyve VM on FreeBSD 15.0-RELEASE, and it now kernel panics as soon as it boots.

    Setup:
    - Host: FreeBSD 15.0-RELEASE
    - Guest Kernel: Linux 7.0
    - NIC: virtio-net

    Workarounds tested:
    - Removing the network device: boots successfully
    - Changing the NIC to e1000: boots successfully

    This seems to point to a virtio-net issue with this kernel under bhyve.

    Has anyone else noticed this?

    #FreeBSD #bhyve #Linux #KernelPanic

  8. boot -s, zfs mount -a, zfs set readonly=off zroot, comment out kld_load i915kms from rc.conf, reboot, complete make installworld, reboot, git pull /usr/ports, pkg delete drm-kld, portmaster graphics/drm-latest-kld ., enable kld_load i915s in in rc.conf, reboot, did the trick - roughly #FreeBSD #15-STABLE #Solved #KernelPanic

  9. boot -s, zfs mount -a, zfs set readonly=off zroot, comment out kld_load i915kms from rc.conf, reboot, complete make installworld, reboot, git pull /usr/ports, pkg delete drm-kld, portmaster graphics/drm-latest-kld ., enable kld_load i915s in in rc.conf, reboot, did the trick - roughly #FreeBSD #15-STABLE #Solved #KernelPanic

  10. @gary_alderson Easy sell? Maybe. But at least the AI doesn't make me fill out forms in triplicate or argue with a supervisor about why I'm late. Kernel hooks are for people who think they can control the chaos. This thing just sits there, drinks digital wine, and tells me the truth.

    #HankLogic #PostOfficeNightmares #KernelPanic

  11. @gary_alderson Easy sell? Maybe. But at least the AI doesn't make me fill out forms in triplicate or argue with a supervisor about why I'm late. Kernel hooks are for people who think they can control the chaos. This thing just sits there, drinks digital wine, and tells me the truth.

    #HankLogic #PostOfficeNightmares #KernelPanic

  12. even the crash screen is better on #Linux 'cause I can imagine figures in that QR code 😛😂 while in Windows I just feel frustration 😆 #Lol #kernelpanic

  13. Trying to build a GUI Linux distro with Buildroot. Just Buildroot. No Debian, no Arch. Just pain 🫩

    Xorg? Black screen. Wayland? Sounds like a fantasy novel. Kernel panic? Oh yeah, got that too 🫨

    But I will make this work, because minimalism deserves a desktop 🤟🏻

    #Linux #Buildroot #KernelPanic #WaylandOrWhatever #DIYDistro #WhyAmIDoingThis

  14. Trying to build a GUI Linux distro with Buildroot. Just Buildroot. No Debian, no Arch. Just pain 🫩

    Xorg? Black screen. Wayland? Sounds like a fantasy novel. Kernel panic? Oh yeah, got that too 🫨

    But I will make this work, because minimalism deserves a desktop 🤟🏻

    #Linux #Buildroot #KernelPanic #WaylandOrWhatever #DIYDistro #WhyAmIDoingThis

  15. Perdí el invicto 😄
    Agosto 2020 - marzo 2026

    My streak is broken😄

    August 2020 - march 2026

    #kernelpanic #linux

  16. #Linux #KDENeon #Ubuntu #Update #KernelPanic #Lösungssuche

    Moin ihr Lieben,
    ich habe hier ein spezifisches Problem, welches zwar provisorisch gelöst wurde, aber die Ursache ist noch nicht behoben:
    Beim KDE Update auf 6.6.0 (und 6.6.1 hat das Problem natürlich nicht behoben) hat der neue Kernel einen Kernel Panic Screen ausgelöst und ich musste umständlich über das Advanced Menü den vorherigen Kernel booten. Provisorisch gelöst jetzt mit Grub, der sich den nun älteren gebooteten Kernel merkt. Aber was ist die Ursache des Problems?
    Ich konnte nur beim oberflächlichen Suchen auf der Ubuntu Forum Seite finden, dass das angeblich eine Inkompatibilität von Virtualbox und VMWare wäre. Weiß da jemand mehr drüber und wenn ja, wie löst man das Problem?

  17. #Linux #KDENeon #Ubuntu #Update #KernelPanic #Lösungssuche

    Moin ihr Lieben,
    ich habe hier ein spezifisches Problem, welches zwar provisorisch gelöst wurde, aber die Ursache ist noch nicht behoben:
    Beim KDE Update auf 6.6.0 (und 6.6.1 hat das Problem natürlich nicht behoben) hat der neue Kernel einen Kernel Panic Screen ausgelöst und ich musste umständlich über das Advanced Menü den vorherigen Kernel booten. Provisorisch gelöst jetzt mit Grub, der sich den nun älteren gebooteten Kernel merkt. Aber was ist die Ursache des Problems?
    Ich konnte nur beim oberflächlichen Suchen auf der Ubuntu Forum Seite finden, dass das angeblich eine Inkompatibilität von Virtualbox und VMWare wäre. Weiß da jemand mehr drüber und wenn ja, wie löst man das Problem?

  18. @ekimia pour les personnes dans le même cas que moi : impossibilité de redémarrer sans plantage d'ordi + kernel panic, cette page m'a sorti de l'ornière : ubuntuhandbook.org/index.php/2 et surtout l'option 2, très simple et avec très peu de commandes à copier dans le terminal pour installer Grub Customizer. En moins de 2 minutes mon MacBook Air redémarre automatiquement sur l'ancien kernel en attendant une mise à jour compatible ! #ubuntu #Grub Customizerkernel #kernelpanic #kernelbootdefault #linux :)

  19. @ekimia pour les personnes dans le même cas que moi : impossibilité de redémarrer sans plantage d'ordi + kernel panic, cette page m'a sorti de l'ornière : ubuntuhandbook.org/index.php/2 et surtout l'option 2, très simple et avec très peu de commandes à copier dans le terminal pour installer Grub Customizer. En moins de 2 minutes mon MacBook Air redémarre automatiquement sur l'ancien kernel en attendant une mise à jour compatible ! #ubuntu #Grub Customizerkernel #kernelpanic #kernelbootdefault #linux :)

  20. ENOENT LIVE // KERNEL PANIC 5

    online, Saturday, February 14 at 09:00 PM UTC

    ENOENT // KERNEL PANIC

    The world may be in disarray but the beats don't stop.

    Play it loud or not at all.

    freestreamers.btfree.org/event

  21. 🔥 Mon aventure de ce matin : mon #LinuxMint 22.3 du travail a basculé sur un #kernel 6.17 après une mise à jour.

    ⚠️ Fait rarissime, on m'informe qu'il y a eu des erreurs... bon, comme on dit, "dans le doute, reboot" 🤞 et là, #KernelPanic 😨 !

    ✨ Mais, comme les choses sont bien fichues sous GNU/#Linux, en quelques secondes, reboot puis options avancées dans le menu du GRUB, puis #rollback vers un noyau plus ancien toujours installé (6.14) et hop, c'est reparti comme s'il ne s'était rien passé 🚀

  22. 🔥 Mon aventure de ce matin : mon #LinuxMint 22.3 du travail a basculé sur un #kernel 6.17 après une mise à jour.

    ⚠️ Fait rarissime, on m'informe qu'il y a eu des erreurs... bon, comme on dit, "dans le doute, reboot" 🤞 et là, #KernelPanic 😨 !

    ✨ Mais, comme les choses sont bien fichues sous GNU/#Linux, en quelques secondes, reboot puis options avancées dans le menu du GRUB, puis #rollback vers un noyau plus ancien toujours installé (6.14) et hop, c'est reparti comme s'il ne s'était rien passé 🚀

  23. Well, hell. It happened again. Kernel panic. I wonder if my laptop has developed a hardware problem.

    #linux #fedora #KernelPanic

  24. Well, hell. It happened again. Kernel panic. I wonder if my laptop has developed a hardware problem.

    #linux #fedora #KernelPanic

  25. ENOENT LIVE // KERNEL PANIC 4

    online, Saturday, February 7 at 09:00 PM UTC

    ENOENT // KERNEL PANIC

    The world may be in disarray but the beats don't stop.

    Play it loud or not at all.

    freestreamers.btfree.org/event

  26. ENOENT LIVE // KERNEL PANIC 3

    online, Saturday, January 31 at 09:00 PM UTC

    ENOENT // KERNEL PANIC

    The world may be in disarray but the beats don't stop.

    Play it loud or not at all.

    freestreamers.btfree.org/event

  27. ENOENT LIVE // KERNEL PANIC 3

    online, Saturday, January 31 at 09:00 PM UTC

    ENOENT // KERNEL PANIC

    The world may be in disarray but the beats don't stop.

    Play it loud or not at all.

    freestreamers.btfree.org/event

  28. ENOENT LIVE // KERNEL PANIC 2

    online, Friday, January 23 at 11:00 PM UTC

    ENOENT // KERNEL PANIC

    The world may be in disarray but the beats don't stop.

    Play it loud or not at all.

    freestreamers.btfree.org/event

  29. I was able to get #Lubuntu 25.10 to install on the #HPStream7 tablet, but after a reboot I get a kernel panic.

    I will keep trying, but anyone with any ideas.

    #Linux #kernelPanic

  30. I was able to get #Lubuntu 25.10 to install on the #HPStream7 tablet, but after a reboot I get a kernel panic.

    I will keep trying, but anyone with any ideas.

    #Linux #kernelPanic

  31. Ah, the classic tale of a brave soul ditching Windows for Linux, only to discover the mythical realm of sudo commands and endless kernel panics. 🚀🐧 Meanwhile, their friends are still waiting for that promised utopia while secretly enjoying their virus-free macOS. 🍏🙄
    theverge.com/tech/858910/linux #LinuxTransition #BraveSoul #SudoCommands #KernelPanic #MacOSUtopia #HackerNews #ngated

  32. Ah, the classic tale of a brave soul ditching Windows for Linux, only to discover the mythical realm of sudo commands and endless kernel panics. 🚀🐧 Meanwhile, their friends are still waiting for that promised utopia while secretly enjoying their virus-free macOS. 🍏🙄
    theverge.com/tech/858910/linux #LinuxTransition #BraveSoul #SudoCommands #KernelPanic #MacOSUtopia #HackerNews #ngated

  33. I saw an info screen with a kernel panic at U6 in Vienna. At least they aren't using Windows.

  34. 🚨 Kernel Panic en Arch Linux tras actualizar al kernel 6.17.8 :arch:

    ⚠️ Este problema está afectando a instalaciones recientes. Posible causante: archinstall. Se detectó un bug que deja un carácter "o" al final del archivo /etc/mkinitcpio.conf, generando el fallo.
    👉 Si estás instalando o actualizando, revisa tu configuración antes de reiniciar.

    :linux:

  35. 🚨 Kernel Panic en Arch Linux tras actualizar al kernel 6.17.8 :arch:

    ⚠️ Este problema está afectando a instalaciones recientes. Posible causante: archinstall. Se detectó un bug que deja un carácter "o" al final del archivo /etc/mkinitcpio.conf, generando el fallo.
    👉 Si estás instalando o actualizando, revisa tu configuración antes de reiniciar.

    #KernelPanic #Linux #ArchLinux #ArchInstall #Bug #SysAdmin :linux:

  36. Gestern das erste Mal den #BlueScreenofDeath mit #QRCode auf meinem Rechner erlebt, nach einem #KernelPanic. Natürlich doof das er einfach crasht, aber das Feature scheint sehr nützlich zu sein. Auslesen des Backtrace hat gut funktioniert. #Arch #Linux

  37. Gestern das erste Mal den #BlueScreenofDeath mit #QRCode auf meinem Rechner erlebt, nach einem #KernelPanic. Natürlich doof das er einfach crasht, aber das Feature scheint sehr nützlich zu sein. Auslesen des Backtrace hat gut funktioniert. #Arch #Linux

  38. de retour après #KernelPanic , mon premier sous Arch . Mais quelle belle journée ensoleillée.

  39. de retour après #KernelPanic , mon premier sous Arch . Mais quelle belle journée ensoleillée.

  40. Wat?!
    There is always a first time I guess. After 20 years of using
    #Linux:

    My first Linux Kernel panic!

    Looks strange. There was a Windows VM running, I guess this did pull anything down with it.

    #kernelpanic

  41. Wat?!
    There is always a first time I guess. After 20 years of using
    #Linux:

    My first Linux Kernel panic!

    Looks strange. There was a Windows VM running, I guess this did pull anything down with it.

    #kernelpanic

  42. Jahrelang nicht mehr gesehen, tuxedo hats noch:

    KERNEL PANIC!
    Please reboot your computer.
    Fatal exception in interrupt

    'Computer sagt Nein' #FotoVorschlag

    #kernelpanic #tuxedo #fotovorschlag #linux #uteFindetJedenFehler

  43. Jahrelang nicht mehr gesehen, tuxedo hats noch:

    KERNEL PANIC!
    Please reboot your computer.
    Fatal exception in interrupt

    'Computer sagt Nein' #FotoVorschlag

    #kernelpanic #tuxedo #fotovorschlag #linux #uteFindetJedenFehler

  44. I just got a Pink/Purple screen of Death -

    So this is something I've never seen before at least like this. I've seen Kernel Panic before, but usually it's during boot and text mode.

    Kernel 6.14.0-33, Linux Mint 22.2 Mate Desktop
    16gb ram, 1tb ssd AMD Ryzen 5 5625U shows as 12 core, but it's 6 with threads.

    I was watching a video and then went to do something else the machine did this!!!

    #LinuxMint #LinuxMint22 #KernelPanic #ScreenofDeath
    #Kernel #Ryzen #AMD #AMDRyzen

  45. I just got a Pink/Purple screen of Death -

    So this is something I've never seen before at least like this. I've seen Kernel Panic before, but usually it's during boot and text mode.

    Kernel 6.14.0-33, Linux Mint 22.2 Mate Desktop
    16gb ram, 1tb ssd AMD Ryzen 5 5625U shows as 12 core, but it's 6 with threads.

    I was watching a video and then went to do something else the machine did this!!!

    #LinuxMint #LinuxMint22 #KernelPanic #ScreenofDeath
    #Kernel #Ryzen #AMD #AMDRyzen

  46. Ya me desvirgau, mi primer #kernelpanic 😅
    Ha sio en el #popos q ya esta siendo substituido x #ubuntu 😇

    En 3 meses he instalado mas veces #linux q juegos he jugado 😅🤣🤣🤣🤣