美文网首页
Linux File System

Linux File System

作者: 蔽芾棠 | 来源:发表于2017-09-25 01:20 被阅读0次

    Components

    • Data: 存放文件内容(日常编辑使用)
    • Metadata: 存放文件元数据信息在Inode结构中(大小,创建修改时间,使用权限)
    • Directory Entry: 文件名

    They are storing in the system in following way;
    eg. hello.txt -> Inode(metadata) -> Data

    Inode

    using ls -l
    Input: ls -l test.sh
    Output: -rw-r--r-- 1 username staff 36 Sep 24 10:14 test.sh

    第一个 ‘-’ 代表文件类型,后面的9位代表文件权限

    • 文件类型
      ‘-’ 代表普通文件
    • 文件权限
      可分成 3 × 3,分别是:所有者(u),用户组(g),其他(o)

    相关文章

      网友评论

          本文标题:Linux File System

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