File system interfaces

Jin Hur·2021년 7월 1일
0

[Linux] File system

목록 보기
5/22

reference: https://pages.cs.wisc.edu/~remzi/OSTEP/, 시스템 프로그래밍, 운영체제 수업(최종무 교수님)

APIs


System call: 유저가 볼 수 있음.

  • open(return a file descriptor)
  • I/O: read/write
  • attribute: chmod
  • create
  • name resolution(directory hierarchy traverse)
  • file system management: mount
  • directory management
  • ...

Internals: OS 내부에 구현 되어있는 인터페이스

  • allocate/free block
  • allocate/free inode
  • namei(name to inode)
  • buffer related

0개의 댓글