This chapter is a whirlwind tour of Unix from a programmer's perspective. ... ... We will give some brief descriptions and examples of terms and concepts that will be encountered throughout the text. ... ... This chapter also provides an introduction and overview of the services provieded by Unix, for programmers new to Unix.

로그인

passwd 파일

passwd 파일은 우리가 로그인을 할 때 시스템이 사용자에 대한 정보를 알아내기 위해 사용하는 파일이다. 이 파일을 열어보면 콜론으로 구분된 일곱가지 필드로 구성되어있다.

login name password (encrypted) user ID group ID comment field home directory shell program

6장에서 이 파일과 관련된 시스템 함수들을 자세히 살펴본다.

Shell

로그인을 하면 통상 쉘 프로그램을 만나게 된다. 보통, 유저는 터미널을 통해 쉘 프로그램에 입력하지만 파일(쉘 스크립트)을 통해 입력하게 되는 경우도 있다.

파일과 디렉토리

파일 시스템

챕터 4에서 아주 자세히 살펴본다.

파일 이름

The only two character that cannot appear in a filename are the slash character and the null character.