NAS에서 공유를 시도하고 있지만 SMB 공유를 마운트할 수 없습니다. 기반으로우분투 smb 문서SMB/CIFS를 마운트하는 명령은 다음과 같아야 합니다.
sudo mount -t cifs -o username=test,password=pw1234 //<server>/home ~/test
오류 메시지는 다음과 같습니다.
mount error(2): No such file or directory
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
나는 다음을 시도했습니다 :
- ~/test를 절대 경로 /home/pi/test로 바꾸십시오 - 변경 사항 없음
- /home/pi/test가 있는지 확인하십시오. 폴더가 존재합니다.
- Windows 7(사용자 + 비밀번호)을 사용하여 공유 마운트를 시도했습니다. 작동했습니다.
- 핑 서버 - 서버에 접근 가능
smbclient의 공유를 확인하세요.
smbclient -U test -L //<server> WARNING: The "syslog" option is deprecated Enter test's password: Domain=[WORKGROUP] OS=[Windows 6.1] Server=[Samba 4.4.16] Sharename Type Comment --------- ---- ------- ... home Disk Home directory of test Domain=[WORKGROUP] OS=[Windows 6.1] Server=[Samba 4.4.16]
-o 플래그에 "vers=1.0", "vers=2.0", "vers=2.1", "vers=3.0"을 추가해 보세요.
sudo mount -t cifs -o username=test,password=pw1234,vers=1.0 //<server>/home /home/pi/test/ mount error(2): No such file or directory Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
-o 플래그에 "sec=ntlm"을 추가해 보세요.
sudo mount -t cifs -o username=test,password=pw1234,sec=ntlm //<server>/home /home/pi/test/ mount error(22): Invalid argument Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
mount의 -v 플래그를 시도했습니다.
sudo mount -v -t cifs -o username=test,password=pw1234 //<server>/home /home/pi/test/ mount.cifs kernel mount options: ip=<correct_ip>,unc=\\<server>\home,user=test,pass=******** mount error(2): No such file or directory Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
-o 플래그에 "nodfs"를 추가해 보세요. 이 unix-stackexchange 게시물에서
pi의 사양은 다음과 같습니다.
- uname -a :Linux 4.14.52-v7+ #1123 SMP 수요일 6월 27일 17:35:49 BST 2018 armv7l GNU/Linux