问题背景: 今天想把自己的数据集开放给同事a,只允许其读,不允许写. 操作: step1: 查看该文件夹属于哪一个用户,哪一个组 ls 文件夹 -lstep2: usermod -a -G 指定文件夹的组名 要分配的用户名step3: chmod 754 指定文件夹名 延伸: 1 权限的设置 chmod -rwxrwxrwx 三个rwx分别属于user,group,others把一个文件的权限全部放开 就是chmod 777 filechmod a+rwx 其实相当于 chmod 777a:al…