DEV Community

Cover image for LINUX FILE SYSTEM HIERARCHY
Kalpesh Zankar
Kalpesh Zankar

Posted on

LINUX FILE SYSTEM HIERARCHY

πŸ’» Understanding the Linux filesystem hierarchy

πŸ’« Linux File System, the backbone of how Linux manages data, configurations, binaries, logs, and user environments.

πŸ’« I explored the purpose of key directories like /etc, /usr, /var, /home, /bin, /sbin, /tmp, and understood how Linux keeps everything organized under a unified hierarchy starting from /.

βœ… How Linux organizes files and directories, making system management structured

πŸ”Ή / – Root of the entire filesystem
πŸ”Ή /root – Home directory of the superuser
πŸ”Ή /etc – System-wide configuration files
πŸ”Ή /boot – Kernel and bootloader files
πŸ”Ή /home – User home directories
πŸ”Ή /mnt – Temporary mount point for filesystems
πŸ”Ή /proc – Virtual filesystem showing kernel & process info
πŸ”Ή /srv - service data
πŸ”Ή /dev – Device files
πŸ”Ή /bin & /sbin – Essential system executables
πŸ”Ή /lib – Shared libraries
πŸ”Ή /usr – User applications, binaries, and libraries

Top comments (0)