カーネルサポートなしで 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 のアドバイスに従ってカーネルを再構築する必要があるため、curlftpfs を使用して FTP をマウントするという別のオプションを見つけました。

クレジット:

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

関連情報