Unix File System

  • https://refspecs.linuxfoundation.org/FHS_3.0/fhs/index.html

Summmary

  • πŸ“‚ /bin:

    • Contains essential system binaries that are required for booting and basic system operations.

  • πŸ“‚ /boot:

    • Contains files required for booting the system, including the Linux kernel, initial RAM disk, and boot loader files.

  • πŸ“‚ /dev:

    • Contains device files that represent hardware devices connected to the system.

  • πŸ“‚ /etc:

    • Contains system-wide configuration files for various applications and services.

  • πŸ“‚ /home:

    • Contains user home directories, where user-specific data and settings are stored.

  • πŸ“‚ /lib:

    • Contains shared libraries required by system binaries and other executables.

  • πŸ“‚ /media:

    • Mount point for removable media such as USB drives, CDs, DVDs, etc. πŸ“€πŸ’Ύ

  • πŸ“‚ /mnt:

    • Mount point for temporary file systems, such as network file systems.

  • πŸ“‚ /opt:

    • Contains optional software packages that are not part of the default system installation.

  • πŸ“‚ /proc:

    • Contains virtual files that represent system and process information.

  • πŸ“‚ /root:

    • Home directory for the root user.

  • πŸ“‚ /run:

    • Contains temporary files that are created by system daemons and other processes.

  • πŸ“‚ /sbin:

    • Contains system binaries that are required for system administration.

  • πŸ“‚ /srv:

    • Contains data for services provided by the system.

  • πŸ“‚ /sys:

    • Contains virtual files that represent the system's hardware devices and drivers.

  • πŸ“‚ /tmp:

    • Contains temporary files that are created by applications and system processes.

  • πŸ“‚ /usr:

    • Contains user binaries, libraries, documentation, and source-code for the system.

  • πŸ“‚ /var:

    • Contains variable files, such as log files, spool directories, and caches for various applications and services. πŸ“ˆπŸ—‚οΈπŸ’»

Last updated

Was this helpful?