커널 지원 없이 Ubuntu에 SMB 공유 마운트 [Linux 배포 - Android 앱의 Linux]

커널 지원 없이 Ubuntu에 SMB 공유 마운트 [Linux 배포 - Android 앱의 Linux]

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

관련 정보