#kernel-panic — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #kernel-panic, aggregated by home.social.
-
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-genericY el kernel que provocaba el problema era:
6.17.0-20La 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
ShiftoEscdurante 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-genericSi 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 -rLa salida debería mostrar la versión estable, por ejemplo:
6.11.0-26-genericCongelar 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 showholdDespués, si se desea impedir que se actualicen los metapaquetes del kernel, se puede ejecutar:
sudo apt-mark hold linux-image-generic linux-headers-genericEsto 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-imageDespués se elimina el paquete correspondiente al kernel defectuoso, por ejemplo:
sudo apt remove linux-image-6.17.0-20-genericTambién puede ser necesario eliminar sus cabeceras asociadas:
sudo apt remove linux-headers-6.17.0-20-genericDespués conviene actualizar GRUB:
sudo update-grubAsí 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.bakY para guardar la lista de paquetes congelados:
apt-mark showhold > ~/paquetes_congelados.txtEsto 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-imageSi 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-genericDespué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:
- Localizar un kernel que sí funcione.
- Arrancar Ubuntu con esa versión.
- Eliminar el kernel defectuoso.
- Actualizar GRUB.
- Congelar el kernel estable.
- 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 -
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
-
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
-
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
-
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
-
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-netWorkarounds tested:
- Removing the network device: boots successfully
- Changing the NIC to e1000: boots successfullyThis seems to point to a virtio-net issue with this kernel under bhyve.
Has anyone else noticed this?
-
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-netWorkarounds tested:
- Removing the network device: boots successfully
- Changing the NIC to e1000: boots successfullyThis seems to point to a virtio-net issue with this kernel under bhyve.
Has anyone else noticed this?
-
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
-
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
-
@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.
-
@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.
-
Wellp….thats not supposed to happen🫠
#linux #linuxonchromebook #tech #opensource #degoogleyourlife #bigtech #fail #kernelpanic #IT #BackToSquareOne -
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
-
-
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
-
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
-
Perdí el invicto 😄
Agosto 2020 - marzo 2026My streak is broken😄
August 2020 - march 2026
-
#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? -
#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? -
@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 : https://ubuntuhandbook.org/index.php/2024/12/os-kernel-boot-default-ubuntu-linux/ 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 :)
-
@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 : https://ubuntuhandbook.org/index.php/2024/12/os-kernel-boot-default-ubuntu-linux/ 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 :)
-
DRM Panic su Fedora: QR code evoluti con pagina web per crash kernel più friendly. Proposta di José Expósito per BugZilla facili! #Linux #Fedora #DRMPanic #KernelPanic #OpenSource
-
DRM Panic su Fedora: QR code evoluti con pagina web per crash kernel più friendly. Proposta di José Expósito per BugZilla facili! #Linux #Fedora #DRMPanic #KernelPanic #OpenSource
-
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.https://freestreamers.btfree.org/event/enoent-live-kernel-panic-5
-
🔥 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é 🚀
-
🔥 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é 🚀
-
Well, hell. It happened again. Kernel panic. I wonder if my laptop has developed a hardware problem.
-
Well, hell. It happened again. Kernel panic. I wonder if my laptop has developed a hardware problem.
-
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.https://freestreamers.btfree.org/event/enoent-live-kernel-panic-4
-
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.https://freestreamers.btfree.org/event/enoent-live-kernel-panic-3
-
What was that, a crash, freeze or panic?
https://fed.brid.gy/r/https://eclecticlight.co/2026/01/26/what-was-that-a-crash-freeze-or-panic/
-
What was that, a crash, freeze or panic?
https://web.brid.gy/r/https://eclecticlight.co/2026/01/26/what-was-that-a-crash-freeze-or-panic/
-
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.https://freestreamers.btfree.org/event/enoent-live-kernel-panic-3
-
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.https://freestreamers.btfree.org/event/enoent-live-kernel-panic-2
-
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.
-
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.
-
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. 🍏🙄
https://www.theverge.com/tech/858910/linux-diary-gaming-desktop #LinuxTransition #BraveSoul #SudoCommands #KernelPanic #MacOSUtopia #HackerNews #ngated -
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. 🍏🙄
https://www.theverge.com/tech/858910/linux-diary-gaming-desktop #LinuxTransition #BraveSoul #SudoCommands #KernelPanic #MacOSUtopia #HackerNews #ngated -
I saw an info screen with a kernel panic at U6 in Vienna. At least they aren't using Windows. #wienerlinien #wien #kernelpanic
-
🚨 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:
-
🚨 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:
-
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
-
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
-
de retour après #KernelPanic , mon premier sous Arch . Mais quelle belle journée ensoleillée.
-
de retour après #KernelPanic , mon premier sous Arch . Mais quelle belle journée ensoleillée.
-
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 -
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 -
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
-
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
-
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 -
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 -
What to do when your Mac can’t get to the login window
-
What to do when your Mac can’t get to the login window
-
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 😅🤣🤣🤣🤣