Linux File System Explained 2023 - The Complete Guide
Author -
Inderjeet Singh
December 02, 2023
0
Introduction
Explaining Linux file system in simple way! In this article, we will cover
about Linux file system hierarchy and all basic commands that needs to learn
for understanding more about file system. If you are beginners, then I would
recommend to watch the entire Linux Series from beginning on
YouTube.Â
Linux File System HierarchyÂ
The Linux File System Hierarchy or the Filesystem Hierarchy Structure(FHS)
describe the directory structure and each directory contains different files
which has their own meaning.Â
1. / (Root):Â
Root Directory is a top level directory which is denoted as "/" and it is a
parent directory.
2. /home:
Home Directory contains all other users data and if you have created any
new user then that particular user directory will create inside in home
directory.Â
3. /boot:Â
Boot Directory contains all bootable files which needs the operating system
for booting up the system
4. /bin:Â
Bin Directory contains all other user commands like ls, cat, cd and so on
but bin directory doesn't contains root user commands.Â
5. /sbin:Â
Sbin Directory is a system/super-user binaries which contains all commands
including root level commands.Â