Cifs

RockyLinux:無法載入 cifs 模組

  • January 12, 2022

我已經安裝了 RockyLinux 8.5 並試圖通過 cifs 掛載一個目錄。我收到以下錯誤消息:

# mount -t cifs -o user=<remarked>,domain=<remarked>,password=<remarked> //<remarked>/backups /mnt/backups
mount error: cifs filesystem not supported by the system 
mount error(19): No such device 
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs) and kernel log messages (dmesg)

RPM 軟體包cifs-utilssamba-utils都已安裝,但似乎核心無法找到該cifs模組,因為無法載入它:

# find / -name "cifs"
/usr/lib/modules/4.18.0-348.el8.0.2.x86_64/kernel/fs/cifs
# lsmod | grep cifs
# modprobe cifs
modprobe: FATAL: Module cifs not found in directory /lib/modules/4.18.0-348.el8.0.2.x86_64

有誰知道為什麼 RockyLinux 無法載入cifs模組?這可能是安裝不工作的問題。

這裡還有我的dmesg 日誌。我找不到任何關於 cifs 的資訊。

我找到了解決我的問題的方法。我已經安裝了這樣一個最小版本的 RockyLinux,RPMkernel-moduleskernel-core失去了。

安裝完後,cifs可以通過modprobe cifs.

因為你沒有 cifs 模組,否則你會看到

# find / -name "cifs"
/usr/lib/modules/4.18.0-348.el8.0.2.x86_64/kernel/fs/cifs
/usr/lib/modules/4.18.0-348.el8.0.2.x86_64/kernel/fs/cifs/cifs.ko

引用自:https://serverfault.com/questions/1089770