리눅스에서 mount 명령이나 moun.cifs 명령으로 cifs마운트를 할 때 아래같은 에러가 나면서 마운트가 안될 때가 있다.
mount error(95): Not supported
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs) and kernel log messages (dmesg)
커널메세지는 아래처럼 나온다.
No dialect specified on mount. Default has changed to a more secure dialect, SMB2.1 or later (e.g. SMB3), from CIFS (SMB1). To use the less secure SMB1 dialect to access old servers which do not support SMB3 (or SMB2.1) specify vers=1.0 on mount.
해결 방법은 마운트할 때 vser옵션으로 smb 버전을 정확히 지정해주면 된다.
예
mount.cifs //192.168.1.200/path1 /mnt/cifs -o iocharset=utf8,username=root,password=root,uid=1024,vers=3.0
'IT' 카테고리의 다른 글
도커에서 rclone mount시 fuse device not found, try 'modprobe fuse' first 에러 (0) | 2017.12.07 |
---|---|
시놀로지에서 rclone 마운트 후 no space left on device 에러 나올 때 (0) | 2017.12.06 |
리눅스 - 특정 디렉토리안의 파일명만 똑같은 더미파일 만들기 (0) | 2017.12.04 |
rclone 전송량 제한 옵션 팁(구글드라이브 하루 전송량 제한에 유용) (0) | 2017.12.01 |
rclone 마운트 한 폴더가 Plex 서버에서 접근할 수 없는 경우 (0) | 2017.11.24 |
Comments