天天看点

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      

继续阅读