-rw-r--r--
-
文件 d
目录 l
软链接文件chmod [选项] 模式 文件名
-R
递归chmod 000 1.txt
chmod u+w 1.txt
chmod g+x 1.txt
chmod o+r 1.txt
chmod g+x,o+x 1.txt
chmod u-w 1.txt
chmod u=rwx 1.txt
chmod 777 1.txt
x
w
,只有读权限没有意义,对目录有了写权限,里面可以做任何事情权限 | 含义 | 示例 |
---|---|---|
r | 读取文件内容 | cat more head tail |
w | 编辑、新增、修改文件内容,不能删除文件,除非对目录有写权限 | vi echo |
x | 可执行 |
权限 | 含义 | 示例 |
---|---|---|
r | 可以查看目录下的文件名 | ls |
w | 具有修改目录结构的权限。如新建、删除和重命名此目录下的文件和目录 | touch rm mv cp |
x | 进入目录 | cd |
useradd zf1
passwd zf1
cd /home/zf1
mkdir folder
touch folder/1.txt 默认755
chmod 750 folder
chmod 640 folder/1.txt
chmod 754 folder
chmod 755 folder
chmod 644 folder/1.txt
chmod 646 folder/1.txt
chmod 757 folder
chmod 755 folder
chown zf1 folder
chgrp zf1 folder
chown root:root folder
666
666 - 022 = 744
777 - 022 = 755
umask 0002
vi /etc/profile
visudo
可以由超级用户赋权/etc/sudoers
文件root ALL=(ALL) ALL
用户名 被管理主机地址=(可使用的身份) 授权命令(绝对路径)
stu2 ALL=(root) ALL //新增加用户行