You are not logged in.
After running "sudo pacman -Syu" my installation crashed and on the next reboot I have encountered a kernel panic.
Last edited by Brolupyr777 (2024-12-10 02:09:34)
Offline
it tells you right in the error message - your root uuid is wrong
Offline
That error is the kernel trying to mount root directly because no initramfs is being used. Boot an install disk, mount everything, chroot in, and reinstall your kernel. Really, reinstall all packages that were part of the failed update.
Offline
Problem fixed!
Commands used:
mount /dev/sdXn /mnt
mount /dev/sdYp /mnt/boot
arch-chroot /mnt
pacman -Syu linux
pacman -Syu base
mkinitcpio -P
grub-mkconfig -o /boot/grub/grub.cfg
exit
umount -R /mnt
rebootLast edited by Brolupyr777 (2024-12-09 02:21:39)
Offline
swapping the pacman lines - or rather combine them - avoids the manual mkinitcpio after them
otherwise: glad you were able to fix your system and thanks for reporting back with something that is helpful for others
Offline
Problem fixed!
\o/
Please always remember to mark resolved threads by editing your initial posts subject - so others will know that there's no task left, but maybe a solution to find.
Thanks.
Offline
Had similar issue, commands mentioned helped me restore ability to boot, yet it remained unusable, so I had to forcefully reinstall all packages:
pacman -Qqen > pkglist.txt
pacman --overwrite=* -S $(< pkglist.txt)Even though it is not recommended, it was the only thing that helped.
Offline
Not only nort recommended, hardly necessary.
You wanted to have sanitized the database w/ a --dbonly pass first so you would not run into file collisions in a second pass for the actual re-installation.
Offline