✨ Introduction

✨ Indexed and Extensible Files

✨ Subdirectories and Soft Links

Subdirectories


Indexed and Extensible Files

/* 파일 시스템에서 inode의 디스크 표현 */
struct inode_disk {
	disk_sector_t start;                /* 파일의 첫 번째 데이터 섹터 */
	off_t length;                       /* 파일의 크기를 바이트 단위로 나타냄(할당된 블록 길이) */
	unsigned magic;                     /* 매직 넘버 */
	uint32_t unused[125];               /* Not used. */
};

스크린샷 2023-05-28 오후 3.07.47.png

스크린샷 2023-05-28 오후 4.25.26.png