Linux File System

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)