Linux 基础与应用教程 003(权限管理命令简单基础)
Posted mawenqi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux 基础与应用教程 003(权限管理命令简单基础)相关的知识,希望对你有一定的参考价值。
1.chmod (权限管理)[[email protected] tem]# chmod -R 777 /tem/a/b 递归改变权限;
权限数字法 所有者,root才能更改权限;
r ----4
w ---2
x ---1
2.chown 改变文件或者所有者;
[[email protected] tem]# touch fengjie
[[email protected] tem]# ls -l fengjie
-rw-r--r--. 1 root root 0 4月 12 11:42 fengjie
[[email protected] tem]# useradd shenchao
[[email protected] tem]#
[[email protected] tem]# chown shenchao fengjie
[[email protected] tem]# ls -l fengjie
-rw-r--r--. 1 shenchao root 0 4月 12 11:42 fengjie
3.chgrp(改变文件所属组)
[[email protected] tem]# groupadd lampbrother
[[email protected] tem]# chgrp lampbrother fengjie
[[email protected] tem]# ls -l fengjie
-rw-r--r--. 1 shenchao lampbrother 0 4月 12 11:42 fengjie
[[email protected] tem]#
[[email protected] tem]# chmod g+w fengjie
[[email protected] tem]# ls -l fengjie
-rw-rw-r--. 1 shenchao lampbrother 0 4月 12 11:42 fengjie
4.umask -S 显示,设置文件的缺省权限;
[[email protected] tem]# mkdir test1
[[email protected] tem]# ls -l test1
总用量 0
[[email protected] tem]# ls -ld test1
drwxr-xr--. 2 root root 6 4月 12 11:58 test1
[[email protected] tem]#(改变成统一的想要的权限)
以上是关于Linux 基础与应用教程 003(权限管理命令简单基础)的主要内容,如果未能解决你的问题,请参考以下文章