Skip to content

A short abstract about FHS used by Linux distros.

Notifications You must be signed in to change notification settings

LinuxLab-ESGI/FHS-Directory-Structure

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 

Repository files navigation

FHS-Directory-Structure

A short abstract about FHS used by Linux distros.

Linux is essentially composed of directories et files but every directories have its utility. Whatever Linux distro you are using it is certainly using the FHS (Filesytem Hierarchy Standard). FHS defines the hierarchy and all the directorires to have for a GNU/Linux disto and Unix systems.

A filesystem has two meaning which is generally clear from the context. The first meaning is the hierarchy of directories (directory tree) that is used to organize files on a computer system. The second meaning is the type of filesystem, it is how the storage of data is organized on the physical disk. Each type of filesystem has its own set of rules for controlling the allocation of disk space to files and for associating meta-data about each file with that file (filename, permissions, creation date, ...) Examples of filesystem : ext4, btrfs, xfs, ...

Filesystem

The file system on Linux is organized like a tree. At the very top of the tree, there is the root wich contains folders that have a particular purpose.
Any file path in the Linux system starts from the root. This root is noted with a slash /.

This root could be compare to the C:\ of Windows.

Paths

A path is the location of a folder from the root. Moving from the root trough the folders is called When you start from the root and then move through the folders, the whole location is called path.
There are 2 types of a path :

  • Absolute path, which starts from the root : /home/user/docs/example (the pwd command show your current path)

This mean wherever we are located we can go to example by typing cd */home/user/docs/example*

  • Relative path, which starts from the place where we are located. For example, if we are in /home/user, the relative path to go to example is docs/example.

This means we have to be in the parent folder to go to example by typing cd docs/example

Main directories

Here are the main directories present in most distros :

Directory Utility
/ Root directory of the entire filesystem
/bin (binaries) Essential binaries usable by every users
/boot Files for Linux startup (Bootloader, kernel, initrd, ...)
/dev (device) representation of an entry point for devices (scree, disks, partitions, null, TTY, webcam, ...)
/etc (editing text config) Files for services and system configurations
/etc/opt (optional) Configuration files for additionnal programs and software stored in /opt
/home users' home directory for peronnal data and settings
/lib (lib32, lib64) (libraries) Libraries for all the essential binaries for the system (.so => equivalent of dll for Windows)
/media Permanent mounting point for removable devices (CD-ROMs)
/mnt (mount) Temporary mounting point for removable devices
/opt (optional) Additionnal softwares and programs installed out of the distro's repo
/proc (process) Vitual directory containing informations about the kernel and process
/root Home directory of the user root
/run (runtim system) Files about the running system (executed services and users informations)
/sbin (super binaries)
/srv (services) Essential binaries only usable by root user (usually system binaries)
/sys (system) Information between OS and physical componenents such as devices, drivers and kernels features
/tmp (temporary) Directory to store temporary files for users and system (cleared after a reboot)
/usr (unix system ressources) Non essential binaries, documentation (/usr/share), source code, icons, libraries for second level program.
/var (variables) logs, databases, web sites, ...

Updated : 09/01/2021
Author : AnthonyF

About

A short abstract about FHS used by Linux distros.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published