I upgraded my Arch Linux using pacman -Syu
, and then reboot
. The machine failed to boot, thus I switched to tty
to troubleshoot. The following is my findings.
systemctl --failed
shows thatsystemd-modules-load.service
failed.sudo journalctl -u systemd-modules-load.service
shows that:
Failed to look up module alias `crypto_user`: Function not implemented
Failed to look up modules alias `sg`: Function not implemented
Failed to look up modules alias `vboxdrv`: Function not implemented
Failed to look up modules alias `vboxnetadp`: Function not implemented
Failed to look up modules alias `vboxnetflt`: Function not implemented
uname -r
shows that5.4.8-arch1-1
.Pacman -Q linux
shows thatlinux 5.7.8.arch1-1
.ls /lib/modules
shows that5.7.8.arch1-1
.ls /boot
shows that:
initramfs-linux-fallback.img initramfs-linux.img intel-code.img vmlinuz-linux
Can you please help me to resolve (recover) the issue? Thank you!