/boot : Contains file that is used by the boot loader (grub.cfg)
/root : root user home directory. It is not same as /
/dev : System devices (e.g. disk, cdrom, speakers, flashdrive, keyboard etc.)
/etc : Configuration files
/bin → /usr/bin : Everyday user commands
/sbin → /user/sbin : System/filesystem commands
/opt : Optional add-on applications (Not part of OS apps)
/proc : Running processes (Only exist in Memory)
/lib → user/lib : C programming library files needed by commands and apps
/tmp : Directory for temporary files
/home : Directory for user
/var : System logs
/run : System daemons that start very early (e.g. systemd and udev) to store temporary runtime files like PID files
/mnt : To mount external filesystem. (e.g.NFS)
/media : For cdrom mounts.

'개인기록 > 개발공부' 카테고리의 다른 글
| 2024.11.20 개발일지 | 리액트 오디오 재생 삽질과 배움 (2) | 2024.11.20 |
|---|---|
| Node.js 환경에서 환경 변수 파일(.env)을 쉽게 관리할 수 있도록 도와주는 라이브러리 : dotenv 패키지 (1) | 2024.11.18 |
| Window에서 CodeIgniter 세팅 (1) | 2023.08.31 |
| [JS] history.replaceState() 란? (1) | 2023.08.22 |
| [JS] 모듈(Module) 기본 사용 방법 (0) | 2023.08.09 |