非root用户(普通用户)能够读写windows共享目录,比如查看文件、创建文件、修改文件、删除文件
# 让普通用户也可以正常读写
uid=value and gid=value
Set the owner and group of the root of the file system (default: uid=gid=0, but with option uid or gid without specified value, the uid and gid of the current process are taken).
先在 Windows 下面共享需要挂载的目录
指定需要共享的文件目录:Downloads
右键》共享》网络文件和文件夹共享》共享…》选择要与其共享的用户》默认用户即可
右键》共享》高级共享》高级共享…》勾选共享些文件夹
右键》共享》高级共享》高级共享…》权限》为指定用户赋予完全控制权限
mkdir -p ~/windows-downloads
cat /etc/passwd |grep xxx
cat /etc/group|grep users
sudo mount -t cifs -o uid=1000,gid=100,username=xxx,password=xxxxxx
//10.239.15.119/Users/xxx/Downloads /home/xxx/windows-downloads
# df -h
文件系统 容量 已用 可用 已用% 挂载点
//x.x.x.x/Users/xxx/Downloads 466G 58G 408G 13% /home/xxx/windows-downloads