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)

解决方法:

    安装cifs协议包,cifs是什么协议,自己百度去

yum install cifs-utils

    然后执行

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

注意一定要关闭,windows系统的防火墙

你可能感兴趣的:(linux,mount,CIFS,samba共享)