颇为阿娇978 发表于 2018-6-21 09:43:35

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系统的防火墙
页: [1]
查看完整版本: Linux中mount Windows中的共享文件夹