Fedora 34 中缺少 cif

Fedora 34 中缺少 cif

尝试挂载 Windows 文件系统,-t cifs结果如下:

 mount error: cifs filesystem not supported by the system

果然:

lsmod | grep cifs

什么也没显示。做modprobe cifs给我:

modprobe: FATAL: Module cifs not found in directory /lib/modules/5.15.6-100.fc34.x86_64+debug

dnf install cifs-utils说:

Package cifs-utils-6.13-3.fc34.x86_64 is already installed.

我什至删除了该软件包并重新安装,但没有效果。我肯定做错了什么,Fedora 不会删除 cif,不是吗?谢谢。

答案1

您似乎缺少内核模块包。由于您使用的是调试内核,因此应该运行

sudo dnf install kernel-debug-modules

您可能需要常规内核。要切换到该选项,请确保已安装它,

sudo dnf install kernel

然后重新启动并删除调试内核(Fedora 默认不允许您删除正在运行的内核):

sudo dnf remove kernel-debug{,-core,-modules}

相关内容