Centos 시스템이 있고 NAS에서 파일을 마운트하고 싶지만 게스트 사용자를 전달할 때 비밀번호가 필요합니다.
mount.cifs //192.168.96.2/b/files/ /mnt/files -o guests,nocase
이 가상 머신 근처의 다른 머신(centos)에서는 마운트가 성공합니다.
/etc/fstab도 추가했습니다.
//192.168.96.2/files /mnt/files cifs nocase,username=guests,password= 0 0
시작 로그를 확인하세요.
localhost mount: mount error(112): Host is down
localhost mount: Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
localhost systemd: mnt-files.mount mount process exited, code=exited status=32
localhost systemd: Failed to mount /mnt/files.
문제는 무엇입니까?
답변1
마침내 -o vers=1.0 옵션을 사용하여 설치해야 한다는 것을 알게 되었습니다.