Roadmap to becoming a developer in 2022
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

971 B

Understanding Directory Hierarchy

In Linux, understanding the directory hierarchy is crucial for efficient navigation and file management. A Linux system's directory structure, also known as the Filesystem Hierarchy Standard (FHS), is a defined tree structure that helps to prevent files from being scattered all over the system and instead organise them in a logical and easy-to-navigate manner.

  • /: Root directory, the top level of the file system.
  • /home: User home directories.
  • /bin: Essential binary executables.
  • /sbin: System administration binaries.
  • /etc: Configuration files.
  • /var: Variable data (logs, spool files).
  • /usr: User programs and data.
  • /lib: Shared libraries.
  • /tmp: Temporary files.

Visit the following resources to learn more: