SlideShare a Scribd company logo
2
Most read
3
Most read
6
Most read
Unix file system
Unix file system is logical method of organizing and
storing large amounts of information in a way that makes
it easy to manage.
A file is a smallest unit in which the information is
stored.
Unix file system has several important features.
->all data in Unix is organized into files.
->all files are organized into directories.
-> these directories are organized into a tree like
structure called the file system.
Unix file system structure
/(root)
File system
Directories Filsystem
/bin /dev
/etc
/lib
/usr /tmp /var /home
Directories or files and their description
/: the slash /character alone denotes the root of the file
system tree.
/bin: stands for “binaries” and contains certain fundamental
utilities, such as ls or cp, which are generally needed by all
users.
/boot: contains all the files that are required for successful
booting process.
/dev: stands for “devices”. file representations of peripheral
devices and pseudo-devices.
/etc: contains system-wide configuration files and system
databases. originally also contained “dangerous maintenance
utilities” such as init, but these have typically been moved to
/sbin or elsewhere.
/home: contains the home directories for the users.
Directories or files and their description
• /lib: contains system libraries, and some critical files
such as kernel modules or device drivers.
• /media: default mount point for removable devices,
such as USB sticks, media players, etc.
• /mnt : stands for “mount”. Contains file system
mount points. these are used, for example, if the
system uses multiple hard disks or hard disk
partitions. It is also often used for remote(network)
file system, CD-ROM/DVD dives, and so on.
• /proc : procfs virtual file system showing information
about processes as files.
Directories or files and their description
/root:
• The home directory for the super user “root”-
that is the system administrator.
• This account’s home directory is usually on the
initial file system , and hence not in /home (which
may be a mount point for another file system) in
case specific maintenance needs to be
performed. during which other file system are
not available.
• Such as case could occur. For example , if a hard
disk drive suffers physical failures and can not be
properly mounted.
Directories or files and their description
/tmp:
 A place for temporary files. Many systems
clear this directory upon startup;
 It might have tmpfs mounted a top it, in which
case its contents do not survive a reboot, or it
might be explicitly cleared by a startup script
at boot time.
/usr:
-> originally the directory holding user home
directories, its use has changed.

More Related Content

ODP
File system hiearchy
PDF
File system discovery
PPTX
Tahir Ashraf [Linux file system herarchy].pptx
PPTX
Files and directories in Linux 6
PPTX
Linux fundamentals
PPTX
Unix operating system architecture with file structure
PDF
Lesson 2 Understanding Linux File System
PPTX
Linux standard file system
File system hiearchy
File system discovery
Tahir Ashraf [Linux file system herarchy].pptx
Files and directories in Linux 6
Linux fundamentals
Unix operating system architecture with file structure
Lesson 2 Understanding Linux File System
Linux standard file system

Similar to Unix file system.pptx (20)

PPT
Linux filesystemhierarchy
DOC
PDF
File system discovery
PDF
linuxfilesystem-180727181106 (1).pdf
PPTX
Linux file system
PPT
Basic linux architecture
PPT
Tutorial 2
PPT
Edubooktraining
PPTX
Unix Administration
PPT
Linux fs structure (1)
PPT
managing-the-linux-file-system_suse_.ppt
PPT
managing-the-linux-file-system________________________
PDF
Linux course fhs file hierarchy standard
PPT
LinuxTraining_26_Sept_2021.ppt
PDF
File systems for Embedded Linux
PDF
Linux file
PDF
The unix file system
PPT
linux-file-system01.ppt
ODP
Root acme presentation
Linux filesystemhierarchy
File system discovery
linuxfilesystem-180727181106 (1).pdf
Linux file system
Basic linux architecture
Tutorial 2
Edubooktraining
Unix Administration
Linux fs structure (1)
managing-the-linux-file-system_suse_.ppt
managing-the-linux-file-system________________________
Linux course fhs file hierarchy standard
LinuxTraining_26_Sept_2021.ppt
File systems for Embedded Linux
Linux file
The unix file system
linux-file-system01.ppt
Root acme presentation
Ad

Recently uploaded (20)

DOC
Soft-furnishing-By-Architect-A.F.M.Mohiuddin-Akhand.doc
PDF
Module 4: Burden of Disease Tutorial Slides S2 2025
PDF
Microbial disease of the cardiovascular and lymphatic systems
PDF
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PDF
RMMM.pdf make it easy to upload and study
PDF
Classroom Observation Tools for Teachers
PPTX
Orientation - ARALprogram of Deped to the Parents.pptx
PPTX
human mycosis Human fungal infections are called human mycosis..pptx
PDF
Anesthesia in Laparoscopic Surgery in India
PDF
STATICS OF THE RIGID BODIES Hibbelers.pdf
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PDF
Computing-Curriculum for Schools in Ghana
PDF
Weekly quiz Compilation Jan -July 25.pdf
PPTX
Tissue processing ( HISTOPATHOLOGICAL TECHNIQUE
PDF
VCE English Exam - Section C Student Revision Booklet
PPTX
master seminar digital applications in india
PDF
FourierSeries-QuestionsWithAnswers(Part-A).pdf
PDF
RTP_AR_KS1_Tutor's Guide_English [FOR REPRODUCTION].pdf
Soft-furnishing-By-Architect-A.F.M.Mohiuddin-Akhand.doc
Module 4: Burden of Disease Tutorial Slides S2 2025
Microbial disease of the cardiovascular and lymphatic systems
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
Final Presentation General Medicine 03-08-2024.pptx
RMMM.pdf make it easy to upload and study
Classroom Observation Tools for Teachers
Orientation - ARALprogram of Deped to the Parents.pptx
human mycosis Human fungal infections are called human mycosis..pptx
Anesthesia in Laparoscopic Surgery in India
STATICS OF THE RIGID BODIES Hibbelers.pdf
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
Pharmacology of Heart Failure /Pharmacotherapy of CHF
Computing-Curriculum for Schools in Ghana
Weekly quiz Compilation Jan -July 25.pdf
Tissue processing ( HISTOPATHOLOGICAL TECHNIQUE
VCE English Exam - Section C Student Revision Booklet
master seminar digital applications in india
FourierSeries-QuestionsWithAnswers(Part-A).pdf
RTP_AR_KS1_Tutor's Guide_English [FOR REPRODUCTION].pdf
Ad

Unix file system.pptx

  • 1. Unix file system Unix file system is logical method of organizing and storing large amounts of information in a way that makes it easy to manage. A file is a smallest unit in which the information is stored. Unix file system has several important features. ->all data in Unix is organized into files. ->all files are organized into directories. -> these directories are organized into a tree like structure called the file system.
  • 2. Unix file system structure /(root) File system Directories Filsystem /bin /dev /etc /lib /usr /tmp /var /home
  • 3. Directories or files and their description /: the slash /character alone denotes the root of the file system tree. /bin: stands for “binaries” and contains certain fundamental utilities, such as ls or cp, which are generally needed by all users. /boot: contains all the files that are required for successful booting process. /dev: stands for “devices”. file representations of peripheral devices and pseudo-devices. /etc: contains system-wide configuration files and system databases. originally also contained “dangerous maintenance utilities” such as init, but these have typically been moved to /sbin or elsewhere. /home: contains the home directories for the users.
  • 4. Directories or files and their description • /lib: contains system libraries, and some critical files such as kernel modules or device drivers. • /media: default mount point for removable devices, such as USB sticks, media players, etc. • /mnt : stands for “mount”. Contains file system mount points. these are used, for example, if the system uses multiple hard disks or hard disk partitions. It is also often used for remote(network) file system, CD-ROM/DVD dives, and so on. • /proc : procfs virtual file system showing information about processes as files.
  • 5. Directories or files and their description /root: • The home directory for the super user “root”- that is the system administrator. • This account’s home directory is usually on the initial file system , and hence not in /home (which may be a mount point for another file system) in case specific maintenance needs to be performed. during which other file system are not available. • Such as case could occur. For example , if a hard disk drive suffers physical failures and can not be properly mounted.
  • 6. Directories or files and their description /tmp:  A place for temporary files. Many systems clear this directory upon startup;  It might have tmpfs mounted a top it, in which case its contents do not survive a reboot, or it might be explicitly cleared by a startup script at boot time. /usr: -> originally the directory holding user home directories, its use has changed.