将cifs文件夹挂载到linux并具有所有权限

将cifs文件夹挂载到linux并具有所有权限

是否有能力以所有权限将 Windows 共享文件夹挂载到 Linux:

我想尝试这个命令:

mount -t cifs -o username=<share user>,password=<share password>,umask=0777 //WIN_PC_IP/<share name> /home/backup

目前我无法在平静的条件下启动任何 Vbox 机器来测试它。

我浏览了http://unix.stackexchange.com并发现了很多疑问:权限1,权限2,权限3。但我不确定自己的命令是否正确。

请对此解决方案提出建议。该命令正确还是我需要向其添加更多参数?

答案1

umask不适合我

因此,授予 cifs(samba) 文件夹所有权限的最佳方法是使用以下命令:

mount -t cifs -o username=<share user>,password=<share password>,file_mode=0777,dir_mode=0777 //WIN_PC_IP/<share name> /home/backup

相关内容