1. 程式人生 > 其它 >mount error(95): Operation not supported

mount error(95): Operation not supported

技術標籤:大運維linux

掛載A伺服器的共享檔案到B伺服器

[[email protected] /]# mount -t cifs -o username=test,password='[email protected]' //192.168.6.19/share /share
mount error(95): Operation not supported
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)

解決辦法
增加vers=2.0

[[email protected] /]# mount -t cifs //192.168.6.19/share /share -o username=test,password='
[email protected]
',domain=DOMAIN,vers=2.0