红联Linux门户
Linux帮助

umask 权限

发布时间:2014-01-22 09:28:06来源:红联作者:boff1314
一直以为 umask 设置以后 root 也无法操作,结果今天试了一下,汗颜。。。。。还是要多学 不能自以为是
文章评论

共有 6 条评论

  1. qxfsy 于 2014-02-07 17:58:13发表:

    不知

  2. 相思爱文 于 2014-01-29 09:49:51发表:

    man chattr

    The 'e' attribute indicates that the file is using extents for mapping the blocks on disk. It may not be removed using chattr(1).
    在'e'的属性,表示该文件是使用盘区上的磁盘映射块。它可能不能用chattr(1)移除。

    ------------------------------------------

    sudo 可以实现root权限的部分命令(或所有命令)

  3. boff1314 于 2014-01-24 14:21:28发表:

    4# YQ_Linux


    这个是我自己弄的虚拟机 所以用的root 因为有些命令什么的 只能root才可以用

  4. YQ_Linux 于 2014-01-22 19:21:51发表:

    路过学习了;我现在一般都不用root登录,改用sudo

  5. boff1314 于 2014-01-22 17:28:24发表:

    2# 相思爱文


    受教了,下午刚刚看了 文件的隐藏属性,觉得很有用 那个 用lsattr查看后那个----e---代表什么呢???

  6. 相思爱文 于 2014-01-22 10:43:33发表:

    root拥有最高权限。
    用chattr命令修改属性,可防修改和删除

    root@debian7:/tmp/test# touch test.txt
    root@debian7:/tmp/test# chattr +i test.txt
    root@debian7:/tmp/test# lsattr test.txt
    ----i--------e-- test.txt
    root@debian7:/tmp/test# rm test.txt
    rm: 无法删除"test.txt": 不允许的操作
    root@debian7:/tmp/test# chattr -i test.txt
    root@debian7:/tmp/test# rm test.txt
    root@debian7:/tmp/test#