본문 바로가기

Job Notes/File System

(45)
NTFS Security 1. NTFS Encryption 2. NTFS Decryption
JFFS2 overview & JFFS3 Requirements Abstract JFFS2, the Journalling Flash File System version 2, is widely used in the embedded systems world. It was designed for relatively small flash chips and has serious problems when it is used on large flash devices. Unfortunately, these scalability problems are deep inside the design of the file system, and cannot be solved without full redesign. This document describes JFFS3 – a new flash ..
YAFFS Garbage Collection New garbage collector If we're very low on erased blocks then we do aggressive garbage collection otherwise we do "leasurely" garbage collection. Aggressive gc looks further (whole array) and will accept less dirty blocks. Passive gc only inspects smaller areas and will only accept more dirty blocks. The idea is to help clear out space in a more spread-out manner. Dunno if it really does anythin..
파일 시스템의 원리와 리눅스에서의 제어구조 3 파일 시스템의 원리와 리눅스에서의 제어구조 3 (* 마이크로소프트웨어 2002년 11월호에 수록된 기사입니다.) 유닉스의 파일 시스템 가상파일시스템 리눅스도 유닉스처럼 VFS를 이용해 매우 다양한 파일 시스템을 지원한다. 예를 들면, 기존 유닉스 파일 시스템인 UFS, 리눅스 기본 파일 시스템인 ext2와 ext3, 썬에서 개발한 네트워크 파일 시스템인 NFS, 작은 쓰기(small write)에 좋은 성능을 제공하는 LFS, CMU 대학에서 개발했으며 disconnected 연산 기능을 제공하는 CODA, CD를 위한 iso9660, MS의 도스 파일 시스템, 윈도우 NT 파일 시스템, 프로세스 파일 시스템(proc) 등이 있다. 리 눅스에서 각 파일 시스템의 위치와 커널 내의 다른 부분과의 상호 관계..
파일 시스템의 원리와 리눅스에서의 제어구조 2 파일 시스템의 원리와 리눅스에서의 제어구조 2 (* 마이크로소프트웨어 2002년 11월호에 수록된 기사입니다.) 유닉스의 파일 시스템 파일 시스템의 역사 초기의 상용 유닉스 버전들은 시스템 Ⅴ 파일 시스템(s5fs)이라고 알려진 단순한 파일 시스템을 포함하고 있었다. 모든 시스템 Ⅴ유닉스와 4.2BSD 이전의 버클리 유닉스 버전들은 이 파일 시스템을 지원한다. 4.2BSD는 새로운 파일 시스템인 FFS(Fast FileSystem)를 지원했는데, 이것은 s5fs보다 월등한 성능과 기능을 제공한다. 따라서 FFS는 그 이후부터 더 널리 사용됐다. FFS가 처음 소개됐을 때 유닉스 파일 시스템은 하나의 파일 시스템 유형만 지원할 수 있었다. 이것은 사용자들에게 s5fs와 FFS 중에서 하나의 파일 시스템만을..
Files and Directories [POSIX Section 5] Files and Directories [POSIX Section 5] Functions Implemented DIR *opendir( const char *dirname ); struct dirent *readdir( DIR *dirp ); int readdir_r( DIR *dirp, struct dirent *entry, struct dirent **result ); void rewinddir( DIR *dirp ); int closedir( DIR *dirp ); int chdir( const char *path ); char *getcwd( char *buf, size_t size ); int open( const char * path , int oflag , ... ); int creat( c..
eCos - Filesystem Support VI. File System Support Infrastructure Table of Contents 19. Introduction 20. File System Table 21. Mount Table 22. File Table 23. Directories 24. Synchronization 25. Initialization and Mounting 26. Sockets 27. Select 28. Devices 29. Writing a New Filesystem Chapter 19. Introduction This document describes the filesystem infrastructure provided in eCos. This is implemented by the FILEIO package ..
파일 시스템의 원리와 리눅스에서의 제어구조 1 파일 시스템의 원리와 리눅스에서의 제어구조 홍지만, 허선웅 (* 마이크로소프트웨어 2002년 11월호에 수록된 기사입니다.) 파일 시스템이란 컴퓨터 운영체제(OS)에서 파일의 명칭 부여, 저장, 편성 등을 총괄적으로 유지 관리하는 구조 또는 체제로서 파일의 집합, 디렉토리, 위치 결정과 접근에 필요한 정보 등이 모두 포함된다. 즉, 디스크 장치를 관리하는 커널 기능이다(물론 파일 시스템도 구현에 따라서는 메모리를 관리하거나 태스크의 정보를 관리하도록 구현될 수도 있다. 예로 proc 파일 시스템을 들 수 있다). 디스크의 구조 그렇다면 디스크란 무엇인가(너무 쉬운 질문인가)? 디스크란 우리가 흔히 볼 수 있는 플로피 디스크나 하드 디스크처럼 디지털 형식(2진 형식)으로 정보를 기록할 수 있는 기억매체다...