文件权限管理

chmod 修改文件、目录权限
    chmod u+x /tmp/testfile
    chmod 755 /tmp/testfile
chown 更改属主、属组


权限限制针对非root用户,root用户可以操作左右文件,即便是ls出来的结果是“没有对应操作权限”

修改/tmp/testfile 所属用户组为g1
chmod :g1 /tmp/testfile

ctr + r:根据输入的关键字搜索使用过的命令

chmod u+x file:给当前用户授权file的x权限
chmod r+x file:给当前用户组授权file的x权限
chmod o+rx file:给其他用户组授权file的rx权限
chmod u-x file:将当前用户取消授权file的x权限
chmod a+w file:将当前用户、用户组、其他用户组 添加file的 w权限

chmod u=rwx file:给当前用户设定file的rwx权限

chmod 644 file:将 file 的权限设定如下:
    当前用户:     rw(4 2)
    当前用户组:    r(4)
    其他用户组:    r(4)

创建一个文件的默认权限就是 644

上一篇:leetcode-821-Shortest Distance to a Character


下一篇:chmod命令