系统启动时出现 systemd-modules-load.service 错误

系统启动时出现 systemd-modules-load.service 错误

在我的家庭服务器(RHEL9)启动期间,我注意到有关systemd一些内核模块的错误消息。

我检查了以下内容:

[root@homeserver ~]# systemctl status systemd-modules-load.service
× systemd-modules-load.service - Load Kernel Modules
     Loaded: loaded (/usr/lib/systemd/system/systemd-modules-load.service; static)
     Active: failed (Result: exit-code) since Thu 2024-01-04 19:17:22 CET; 15h ago
   Duration: 1.845s
       Docs: man:systemd-modules-load.service(8)
             man:modules-load.d(5)
    Process: 631 ExecStart=/usr/lib/systemd/systemd-modules-load (code=exited, status=1/FAILURE)
   Main PID: 631 (code=exited, status=1/FAILURE)
        CPU: 9ms


[root@homeserver ~]# journalctl _PID=631
Jan 04 19:17:22 homeserver systemd-modules-load[631]: Failed to look up module alias 'fuse': Function not implemented


[root@homeserver modules-load.d]# pwd
/usr/lib/modules-load.d


[root@homeserver modules-load.d]# ls -l
total 4
-rw-r--r--. 1 root root 5 May 12  2023 fuse-overlayfs.conf


[root@homeserver modules-load.d]# cat fuse-overlayfs.conf
fuse

我不确定需要更改/加载/重命名什么才能使该服务无错误运行。

相关内容