manjaro-deepin 报错Failed to start Load Kernel Modules

1. 查看日志:

sudo systemctl status systemd-modules-load.service

报错原因:Failed to find module 'vfs_monitor'


深度截图_选择区域_20191102160009.png

分别查看vfs_monitor\dmks,正常情况如图,若报错可能没有updates这个目录

modinfo vfs_monitor 
dkms status
深度截图_选择区域_20191102161750.png

深度截图_选择区域_20191102162003.png

用于查看vfs_monitor是否运行:

lsmod | grep vfs_monitor
sudo modprobe vfs_monitor
lsmod | grep vfs_monitor

2.重新安装deeppin-anything,若报错找不到kernel headers,则进行第三步

查看版本:


深度截图_选择区域_20191102160952.png
uname -a
sudo dkms remove deepin-anything/0.0.1 -k 4.14.150-1-ARCH
sudo dkms install deepin-anything/0.0.1 -k 4.14.150-1-ARCH

3.查看是否安装:

pacman -Q dkms linux linux-headers
深度截图_选择区域_20191102161313.png

若报错找不到,安装linux-headers,查看对应可安装版本,选择第二个
查看存在版本:

yay -Ss linux-headers

安装:

yay -S linux414-headers
深度截图_选择区域_20191102162921.png

检查是否安装:

pacman -Q dkms linux linux-headers
深度截图_选择区域_20191102163215.png

再次查看服务:

sudo systemctl restart systemd-modules-load.service

sudo systemctl status systemd-modules-load.service

成功启动:


深度截图_选择区域_20191104132232.png

参考:

https://stackoverflow.com/questions/51544232/cannot-find-the-appropriate-linux-header
https://bbs.archlinux.org/viewtopic.php?id=238115&p=1

你可能感兴趣的:(manjaro-deepin 报错Failed to start Load Kernel Modules)