这三个都是与文件权限有关的
- chmod #更改文件权限
- chown #更改文件所属用户
- chgrp #更改文件所属组
1. chmod
chmod a+x file #给file文件的ugo都赋予执行的权限
chmod o-x file #将file文件o减去执行权限
chmod 755 file #设置file文件的权限为rwxr-xr-x
chmod u=rwx,go=rx file #设置file文件的权限为rwxr-xr-x
2.chown
chown username:groupname file #修改file的所属用户是username,所属组为groupname
chown -R username:groupname directory #修改目录directory及目录下的所有文件的所属用户是username,所属组为groupname
chown username file #修改file的所属用户为username
3. chgrp
chgrp root file #修改file所属的组为root
评论 (0)