在服务器部署的时候需要把文件夹设置在windows 的共享文件上。在使用mount命令挂载到linux上后。文件路径和文件都是可以访问,但是不能写入,导致系统在上传文件的时候提示“权限不够,没有写权限”。
mount error(13): Permission denied
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
用"ls-l" 查看挂载文件的权限设置是drwxr-xr-x, 很明显没有写权限。 想当然使用chmod 来更改文件夹权限,结果提示权限不够。root和当前用户都不能正常修改权限。于是无语,不知如何进行了。
mount -t smbfs -o username="***",password="***"
mount -t smbfs -o username="***",password="***",gid="***",uid="****" //hostname/sharefolder
属性中的gid,uid,是你想要让挂载属于哪个用户的 gid和uid.