home.social

#kernelpanic — Public Fediverse posts

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

fetched live
  1. Haven't seen a #Linux #KernelPanic since like 2005 or something... it has a #qrcode now! Cool!
  2. Haven't seen a #Linux #KernelPanic since like 2005 or something... it has a #qrcode now! Cool!
  3. So etwas hatte ich noch nie. Ist da die Festplatte totgegangen, oder wo fange ich da an zu suchen?

    #Linux #KernelPanic #Upsi

  4. So etwas hatte ich noch nie. Ist da die Festplatte totgegangen, oder wo fange ich da an zu suchen?

    #Linux #KernelPanic #Upsi

  5. ENOENT LIVE // KERNEL PANIC

    online, Saturday, July 18 at 06: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.

    @[email protected]

    freestreamers.btfree.org/event

  6. ENOENT LIVE // KERNEL PANIC

    online, Saturday, July 18 at 06: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.

    @[email protected]

    freestreamers.btfree.org/event

  7. ENOENT LIVE // KERNEL PANIC

    online, Wednesday, July 8 at 06: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

  8. 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
  9. 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

  10. 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

  11. 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

  12. 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

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

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

  15. @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

  16. @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

  17. 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

  18. 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

  19. 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

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

    My streak is broken😄

    August 2020 - march 2026

    #kernelpanic #linux

  21. #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?

  22. #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?

  23. @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 :)

  24. @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 :)

  25. 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

  26. 🔥 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é 🚀

  27. 🔥 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é 🚀

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

    #linux #fedora #KernelPanic

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

    #linux #fedora #KernelPanic

  30. 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

  31. 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

  32. 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

  33. 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

  34. 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

  35. 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

  36. 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

  37. 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

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

  39. 🚨 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:

  40. 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

  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