Skip to main content
Topic solved
This topic has been marked as solved and requires no further attention.
Topic: [SOLVED] ERROR: device 'UUID=...' not found. Skipping fsck (Read 2941 times) previous topic - next topic
0 Members and 2 Guests are viewing this topic.

[SOLVED] ERROR: device 'UUID=...' not found. Skipping fsck

Hello,

I have tried to make custom kernel and when I finished this guide wiki.archlinux.org I rebooted and I got stuck on  "loading initial ramdisk". So I had to select advanced options in grub and boot the old kernel. It worked but it was annoying for me every to do this every time I boot. I have removed everything what I have created:
Quote
/etc/modules/linux516
/boot/vmlinuz-linux516
/etc/mkinitcpio.d/linux516.present
/boot/System.map-linux516

It was still there. I found that i need to update grub so i did it with:
Quote
sudo pacman -Syu
sudo pacman -S grub
sudo pacman -S grub-customizer
sudo grub-mkconfig -o /boot/grub/grub.cfg
sudo update-grub
sudo reboot

After reboot I got this issue. I can't even go into fallback because it's the same.

Full error:
Quote
::  running early hook [udev]
Starting version 250.3-1-artix
:: running hook [udev]
:: Triggering uevents...
:: running hook [keymap]
:: Loading keymap...done.
:: running hook [encrypt]
Waiting 10 seconds for device /dev/disk/by-uuid/d83ee605-.. ...
Waiting 10 seconds for device /dev/disk/by-uuid/d83ee605-.. ...
ERROR: device 'UUID=d83ee605-..' not found. Skipping fsck.
:: mounting 'UUID=d83ee605-..' on real boot
mount: /new_root: can't find UUID=d83ee605-..
You are now being dropped into an emergency shell.
sh: can't access tty; job control turned off
[rootfs ]#

I found some articles on the internet but everyone got into fallback. I can only work in emergency shell.
Please help me, thank you.


Re: ERROR: device 'UUID=...' not found. Skipping fsck

Reply #2
Boot with the live ISO, mount the root partition under /mnt and artix-chroot into it. NOT just chroot, artix-chroot!
From there, re-install the kernel (pacman -S linux) and run grub-mkconfig -o /boot/grub/grub.cfg

Re: ERROR: device 'UUID=...' not found. Skipping fsck

Reply #3
Thank you guys for quick response and help. It worked.