知识屋:更实用的电脑技术知识网站
所在位置:首页 > 操作系统 > linux

linux下创建只有某个用户组可用的文件夹

发布时间:2013-08-21 22:21:20作者:知识屋

linux下创建只有某个用户组可用的文件夹
 
 
 
su root
 
 
 
mkdir testdir
 
 
 
ll
 
 
 
 drwxr-xr-x  2 root   root       4096  7月 31 23:51 testdir/
 
 
 
chmod g+w,o-rx testdir——————————修改权限,拥有者、群组有rwx权限,其他没有任何权限
 
 
 
ll
 
 
 
drwxrwx---  2 root   root       4096  7月 31 23:51 testdir/
 
 
 
groupadd testgroup—————————创建群组testgroup
 
 
 
useradd -G testgroup testuser——————添加用户testuser到testgroup中
 
 
 
chgrp testgroup testdir/————————修改testgroup所属群组
 
 
 
useradd user2
 
 
 
su user2
 
 
 
cd testdir————————无权限
 
 
 
su testuser
 
 
 
cd testdir————————OK
(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜