首页 > 其他 > 详细

权限和归属

时间:2018-11-07 10:15:33      阅读:97      评论:0      收藏:0      [点我收藏+]

查看权限: 

    ls -l  file_path      查看文本文件权限

    ls -ld dir_path     查看目录文件权限

[root@server0 ~]# mkdir -p /test/test01
[root@server0 ~]# ls -ld /test/test01
drwxr-xr-x. 2 root root 6 11月  6 20:39 /test/test01
[root@server0 ~]# touch /test/test01.txt
[root@server0 ~]# ls -l /test/test01.txt
-rw-r--r--. 1 root root 0 11月  6 20:40 /test/test01.txt
[root@server0 ~]# 

 

修改权限:

  chmod o+x file_path          给其他用户添加执行权限

  chmod o-x file_path        除去其他用户的执行权限

  chmod u+x,g-w,o-w  file_path        给所有者添加执行权限,所属组除去写权限,其他用户除去写权限 

  chmod u=rwx,g=rx,o=rx                 所有者读写执行权限,所属组和其他用户都执行权限

    chmod ugo=rwx         所有人读写执行权限 

  chmod 777           所有人读写执行权限

[root@server0 ~]# ls -ld /test/
drwxr-xr-x. 3 root root 36 11月  6 20:40 /test/
[root@server0 ~]# chmod o+w /test/
[root@server0 ~]# ls -ld /test/
drwxr-xrwx. 3 root root 36 11月  6 20:40 /test/
[root@server0 ~]# chmod u-w,g-x,o-w /test/
[root@server0 ~]# ls -ld /test/
dr-xr--r-x. 3 root root 36 11月  6 20:40 /test/
[root@server0 ~]# chmod u=rwx,g=rw,o=r /test/
[root@server0 ~]# ls -ld /test/
drwxrw-r--. 3 root root 36 11月  6 20:40 /test/
[root@server0 ~]# chmod ugo=--- /test/
[root@server0 ~]# ls -ld /test/
d---------. 3 root root 36 11月  6 20:40 /test/
[root@server0 ~]# chmod 777 /test/
[root@server0 ~]# ls -ld /test/
drwxrwxrwx. 3 root root 36 11月  6 20:40 /test/
[root@server0 ~]# 

修改组

  chown 所有者:所属组  文件

  修改文件的所有者,所属组

[root@S opt]# mkdir /opt/test
[root@S opt]# ls -ld /opt/test/
drwxr-xr-x. 2 root root 6 11月  7 09:08 /opt/test/
[root@S opt]# chown harry:harry /opt/test/
[root@S opt]# ls -ld /opt/test/
drwxr-xr-x. 2 harry harry 6 11月  7 09:08 /opt/test/
[root@S opt]# 

 

权限和归属

原文:https://www.cnblogs.com/ray-mmss/p/9915495.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!