본문 바로가기

Linux

Linux directory structure




/ - Root directory that forms the base of the file system.All files and directories are logically contained inside the rootdirectory regardless of their physical locations.

/bin - Contains the executable programs that are part of theLinux operating system. Many Linux commands, such as cat, cp, ls, more,and tar, are locate in /bin

/boot - Contains the Linux kernel and other files needed by LILO and GRUB boot managers.

/etc - Contains most system configuration files and the initialisation scripts in /etc/rc.d subdirectory.

/usr - Contains subdirectories for many programs such as the X Window System.

/usr/local - Contains local files. It has a similar directories as /usr contains.

/usr/share - Contains files that are shared, like, default configuration files, images, documentation, etc.

/usr/bin - Contains executable files for many Linux commands. It is not part of the core Linux operating system.

/usr/include - Contains header files for C and C++ programming languages

/usr/lib - Contains libraries for C and C++ programming languages.

/usr/sbin - Contains administrative commands.

/var - Contains various system files such as log, maildirectories, print spool, etc. which tend to change in numbers and sizeover time.

/var/cache - Storage area for cached data for applications.

/var/lib - Contains information relating to the current state of applications. Programs modify this when they run.

/var/lock - Contains lock files which are checked by applications so that a resource can be used by one application only.

/var/opt - Contains variable data for packages stored in /opt directory.

/var/run - Contains data describing the system since it was booted.

/var/tmp - Contains temporary files preserved between system reboots.

/var/spool - Contains data that is waiting for some kind of processing.

/var/log - Contains log files for differenct applications.

/sbin - Contains administrative binary files. Commands such as mount, shutdown, umount, reside here.

/tmp - Temporary directory which can be used as a scratchdirectory (storage for temporary files). The contents of this directoryare cleared each time the system boots.

/dev - Contains all device files. Linux treats each device as a special file. All such files are located in /dev.

/home - Home directory is the parent to the home directories of users.

/lib - Contains library files, including loadable driver modules needed to boot the system.

/mnt - A directory for temporarily mounted filesystems.

/opt - Optional software packages copy/install files here.

/root - Home directory of the root user.


/lost+found - Directory for lost files. Every disk partition has a lost+found directory.

/media - Directory for mounting files systems on removable media like CD-ROM drives, floppy disks, and Zip drives.

/proc - A special directory in a virtual filesystem. It contains the information about various aspects of a Linux system.

/srv - Contains data for services (HTTP, FTP, etc.) offered by the system.

/sys - A special directory that contains information about the devices, as seen by the Linux kernel.

/usr/src - Contains the source code for the Linux kernel.

/var/mail - Contains users’ emails.

'Linux' 카테고리의 다른 글

USB 드라이브에 CentOS 5.2 Live CD 설치하기  (0) 2009.03.01
7zip - 압축 프로그램  (0) 2009.02.10
Centos 5.2에서 MP3재생하기  (0) 2008.12.13
쉘프로그래밍  (0) 2008.11.24
쉘프로그래밍 비교연산  (0) 2008.11.24
리눅스 커널 정보 변경  (0) 2008.11.20