处理 Archlinux 报错

时间:2023-03-08 16:18:41

failed to kernel

1
sudo pacman -S linux-headers

tpm_crb, uvcvideo 等错误

sudo vim /etc/modprobe.d/blacklist.confblacklist tpm_crb# 摄像头blacklist uvcvideo# 无效模块blacklist aic94xxblacklist wd719x# 看门狗blacklist iTCO_wdt

pci 报错

123
sudo vim /etc/default/grubGRUB_CMDLINE_LINUX_DEFAULT="quiet pcie_aspm=off"sudo grub-mkconfig -o /boot/grub/grub.cfg

failled unmount /oldroot

12
sudo vim /etc/mkinitcpio.confHOOKS 中添加 shutdown

屏蔽错误的启动项

12345
# 找到出错的启动项systemctl --all | grep not-found

# 屏蔽启动项systemctl mask plymouth-start.service

  https://lixi.fun/2018/10/10/handling-archlinux-error/