在沒有核心支援的 Ubuntu 上掛載 SMB 共享

在沒有核心支援的 Ubuntu 上掛載 SMB 共享

我正在嘗試在 Ubuntu 上安裝 SMB 共享,但此安裝位於 Android 應用程式 Linux Deploy 中。

這個版本的Ubuntu核心中似乎沒有cifs模組。

$ find /lib/modules/ -name cifs.ko
find: '/lib/modules/': No such file or directory

在這些情況下可以掛載 SMB 資料夾嗎?

掛載命令:

sudo mount.cifs //192.168.1.105/share /mnt/share -o user=my_user,pass=my_pass

此命令後出錯:

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)

核心版本:

$ uname -r
3.4.42-g3a1ecea-00026-g0a0ded4

答案1

根據 Irfan Latif 的建議,我需要重建內核,所以我找到了另一個選項,即使用 curftpfs 掛載 FTP。

致謝:

https://linuxconfig.org/mount-remote-ftp-directory-host-locally-into-linux-filesystem

相關內容