美文网首页
三 Linux知识补充

三 Linux知识补充

作者: 王俏 | 来源:发表于2020-08-20 09:46 被阅读0次

    Mac文件属性

    1 Mac文件属性.png

    从文件属性看文件类型与文件权限

    2 文件类型与权限.png

    改变权限:chmod

    设置的方法有两种:数字类型改变和符号类型改变
    由于文件权限分为三种身份:[user][group][other]
    三种权限:[read][write][execute]

    • 数字类型
      各个权限数字 : r : 4 w : 2 x: 1
      0:[---]
      1:[--x]
      2:[-w-]
      3:[-wx]
      4:[r--]
      5:[r-x]
      6:[rw-]
      7:[rwx]

    如果一个文件权限为[-rwxr-xr-x]
    user : 4+2+1 = 7
    group: 4+0+1 = 5
    other: 4+0+1 = 5

    • 符号类型
      chmod [u、g、o、a] [+(加)、-(减)、=(设置)] [r、w、x] 文件名

    查看系统支持的shell

    cd /private/etc
    cat shells
    

    显示支持的shell列表

    # List of acceptable shells for chpass(1).
    # Ftpd will not allow users to connect who are not using
    # one of these shells.
    
    /bin/bash
    /bin/csh
    /bin/ksh
    /bin/sh
    /bin/tcsh
    /bin/zsh
    

    修改默认shell

    chsh -s  /bin/bash
    

    相关文章

      网友评论

          本文标题:三 Linux知识补充

          本文链接:https://www.haomeiwen.com/subject/kyxsjktx.html