뉴질랜드 건강식품 직구, 공동구매, 생활, 음식, 현지 뉴스 번역, 정보등을 공유합니다.
TODAY TOTAL
cifs 마운트 에러 95 mount error(95): Not supported

리눅스에서 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

  Comments