我在 fstab 中使用此命令挂载驱动器
//analyticstest/datadrive cifs vers=2.1,credentials=/home/ccruzado/.smbcredentials 0 0
问题是我在安装的单元内有 2 个文件夹,我希望授予不同的权限,默认权限为:
drwxr-xr-x 2 root root 0 Aug 26 21:59 tomcat7
drwxr-xr-x 2 root root 0 Aug 27 14:48 postgres
我想要以下内容:
drwxr-xr-x 2 tomcat7 tomcat7 0 Aug 26 21:59 tomcat7
drwxr-xr-x 2 postgres postgres 0 Aug 27 14:48 postgres
可能吗?我想用 chmod 更改权限,但不起作用,当我为两个文件夹添加两个 gid 或 uid 更改权限时,我使用以下命令执行此操作:
//analyticstest.file.core.windows.net/prueba /datadrive cifs vers=2.1,credentials=/home/ccruzado/.smbcredentials,uid=tomcat7,uid=postgres,gid=tomcat7,gid=postgres 0 0
答案1
您需要创建一个组(或将两个用户添加到 X 组)并将用户一起添加到组中。向组添加权限。