天天看點

Linux中mount Windows中的共享檔案夾

執行如下指令:

 mount -t cifs  //ip位址/api /mnt/ -o user=user,pass=pass      

提示如下錯誤:

mount error(13): Permission denied
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)      

解決方法:

yum install cifs-utils      
 mount -t cifs  //ip位址/api /mnt/ -o user=user,pass=pass      

繼續閱讀