我无法mount.cifs
尊重user
传递给安装的旗帜。进入的/etc/fstab
是
//10.0.1.205/rm /home/robert/remote/rm cifs user,uid=robert,gid=users,file_mode=0644,dir_mode=0755,credentials=/etc/samba/navision,rw,noauto 0 0
但是在执行时
robert@rm:~/remote> mount rm
我收到
mount error(1): Operation not permitted
Refer to the mount.cifs(8) manual page (e.g.man mount.cifs)
看起来
mount.cifs
必须setuid
允许普通用户安装共享。不要在 Linux 下将驱动器卷命名为“rm”。你在要求灾难。
这是我认为您想要使用的格式 - 看起来您可能在上面粘贴的命令中使用了错误的用户减速
对于那些在安装 LanDrive (Android) 共享文件夹或安装点文件夹和带有重音字符的文件时遇到问题的用户。
sudo mount -t cifs '//SERVER_IP_HERE/Shared_Folder' /mnt/MountPoint_Here -o port=Port_Here,iocharset=utf8,user=USER,password= PASSWORD,file_mode=0777,dir_mode=0777