이전에 Debian 시스템에 NAS를 설치할 때 작성한 메모를 따랐습니다.
sudo mount -t cifs -o user=***,password=***,vers=1.0 //NAS_IP_ADDRESS/NAS_DIR /mnt/NAS
이로 인해 다음 오류가 발생합니다.
mount error(95): Operation not supported
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
NAS를 처음 설치했을 때 제대로 작동하려면 vers=1.0을 추가해야 했던 기억이 납니다. 이제 버전을 1에서 2로 변경하면 NAS가 설치됩니다.
sudo mount -t cifs -o user=***,password=***,vers=2.0 //NAS_IP_ADDRESS/NAS_DIR /mnt/NAS
그러나 /etc/fstab에 다음 줄을 추가하고 컴퓨터를 다시 시작한 후에는 NAS가 더 이상 마운트되지 않습니다.
//NAS_IP_ADDRESS/NAS_DIR /mnt/NAS cifs user=***,password=***,vers=2.0,iocharset=utf8,sec=ntlm 0 0
이것은 잘 작동했습니다. 내가 뭘 잘못했나요?
답변1
fstab에서 ",sec=ntlm"을 제거하면 작동합니다.