Skip to main content
added 304 characters in body
Source Link
Premraj
  • 2.7k
  • 2
  • 27
  • 28

File System is a methodology for logically organizing and storing large quantities of data such that the system is easy to manage. a file system consists of files, relationships to other files, as well as the attributes(file type, file name, file size, file owner, file timestamp) of each file.

Directories: for example, the Unix file system is essentially composed of files and directories. Directories are special files that may contain other files. the top-most directory is / (slash), with the directories directly beneath being system directories. enter image description here[![enter image description here][1]][1]

/ Root of Linux Filesystem

/bin Binary Executablecontains binary executable files that are kept hereused by all users on the system.

/boot Booting relatedcontains files that are kept hereused during the boot process of the system.

/dev Devicecontains files are kept herethat represent devices on the system, such as hard drives, CD-ROM drives, and network interfaces.

/etc System-widecontains configuration files are kept herefor the system and installed software

/home Location for the home directories of regular users

/lib64lib Libraries for binary executablescontains library files that are kept hereused by programs on the system

/mnt Temporarydirectory is used to mount pointfile systems temporarily, for DVD-Rom, USB flash drive.

/opt Optional Programs are installed here likecontains Program Filesopt in windowsional software that is not part of the core system.

/proc short for "process", Kernel pseudo(i.e. virtual) filesystem contains information about running processes and the system itself for example, '/proc/cpuinfo', '/proc/meminfo'.

/root Home directory of super user root

/sbin System Binary Executablecontains binary executable files that are kept hereused by the system administrator.

/tmp Temporary files are kept here

/usr User Filesystemcontains a variety of files and directories that are used by users and system administrators, such as documentation, library files, and other resources.

/var Variablecontains variable files are kept herethat change over time, such as log files and spool directories.

/srv directory is a serve folder, contains site-specifictypically used to store data whichthat is served by this system.

src and for more

The following two directories are user defined directories:the system, such as web pages, email, and file transfer data.

 /home/abc/xyzdir1 --is a directory
 /home/abc/xyzdir2 -- is a directory

File System is a methodology for logically organizing and storing large quantities of data such that the system is easy to manage. a file system consists of files, relationships to other files, as well as the attributes(file type, file name, file size, file owner, file timestamp) of each file.

Directories: for example, the Unix file system is essentially composed of files and directories. Directories are special files that may contain other files. the top-most directory is / (slash), with the directories directly beneath being system directories. enter image description here

/ Root of Linux Filesystem

/bin Binary Executable files are kept here

/boot Booting related files are kept here

/dev Device files are kept here

/etc System-wide configuration files are kept here

/home Location for the home directories of regular users

/lib64 Libraries for binary executables are kept here

/mnt Temporary mount point for DVD-Rom, USB flash drive.

/opt Optional Programs are installed here like Program Files in windows

/proc Kernel pseudo filesystem

/root Home directory of super user root

/sbin System Binary Executable files are kept here

/tmp Temporary files are kept here

/usr User Filesystem

/var Variable files are kept here

/srv is a serve folder, contains site-specific data which is served by this system.

src and for more

The following two directories are user defined directories:

 /home/abc/xyzdir1 --is a directory
 /home/abc/xyzdir2 -- is a directory

File System is a methodology for logically organizing and storing large quantities of data such that the system is easy to manage. a file system consists of files, relationships to other files, as well as the attributes(file type, file name, file size, file owner, file timestamp) of each file.

Directories: for example, the Unix file system is essentially composed of files and directories. Directories are special files that may contain other files. the top-most directory is / (slash), with the directories directly beneath being system directories. [![enter image description here][1]][1]

/ Root of Linux Filesystem

/bin contains binary executable files that are used by all users on the system.

/boot contains files that are used during the boot process of the system.

/dev contains files that represent devices on the system, such as hard drives, CD-ROM drives, and network interfaces.

/etc contains configuration files for the system and installed software

/home Location for the home directories of regular users

/lib contains library files that are used by programs on the system

/mnt directory is used to mount file systems temporarily, for DVD-Rom, USB flash drive.

/opt contains optional software that is not part of the core system.

/proc short for "process", Kernel pseudo(i.e. virtual) filesystem contains information about running processes and the system itself for example, '/proc/cpuinfo', '/proc/meminfo'.

/root Home directory of super user root

/sbin contains binary executable files that are used by the system administrator.

/tmp Temporary files are kept here

/usr contains a variety of files and directories that are used by users and system administrators, such as documentation, library files, and other resources.

/var contains variable files that change over time, such as log files and spool directories.

/srv directory is typically used to store data that is served by the system, such as web pages, email, and file transfer data.

added 84 characters in body
Source Link
Premraj
  • 2.7k
  • 2
  • 27
  • 28

File System is a methodology for logically organizing and storing large quantities of data such that the system is easy to manage. a file system consists of files, relationships to other files, as well as the attributes(file type, file name, file size, file owner, file timestamp) of each file.

Directories: for example, the Unix file system is essentially composed of files and directories. Directories are special files that may contain other files. the top-most directory is / (slash), with the directories directly beneath being system directories. enter image description here

/ Root of Linux Filesystem

/bin Binary Executable files are kept here

/boot Booting related files are kept here

/dev Device files are kept here

/etc System-wide configuration files are kept here

/home Location for the home directories of regular users

/lib64 Libraries for binary executables are kept here

/mnt Temporary mount point for DVD-Rom, USB flash drive.

/opt Optional Programs are installed here like Program Files in windows

/proc Kernel pseudo filesystem

/root Home directory of super user root

/sbin System Binary Executable files are kept here

/tmp Temporary files are kept here

/usr User Filesystem

/var Variable files are kept here

/srv is a serve folder, contains site-specific data which is served by this system.

src and for more

The following two directories are user defined directories:

 /home/abc/xyzdir1 --is a directory
 /home/abc/xyzdir2 -- is a directory

File System is a methodology for logically organizing and storing large quantities of data such that the system is easy to manage. a file system consists of files, relationships to other files, as well as the attributes(file type, file name, file size, file owner, file timestamp) of each file.

Directories: for example, the Unix file system is essentially composed of files and directories. Directories are special files that may contain other files. the top-most directory is / (slash), with the directories directly beneath being system directories. enter image description here

/ Root of Linux Filesystem

/bin Binary Executable files are kept here

/boot Booting related files are kept here

/dev Device files are kept here

/etc System-wide configuration files are kept here

/home Location for the home directories of regular users

/lib64 Libraries for binary executables are kept here

/mnt Temporary mount point for DVD-Rom, USB flash drive.

/opt Optional Programs are installed here like Program Files in windows

/proc Kernel pseudo filesystem

/root Home directory of super user root

/sbin System Binary Executable files are kept here

/tmp Temporary files are kept here

/usr User Filesystem

/var Variable files are kept here

/srv is a serve folder, contains site-specific data which is served by this system.

src

The following two directories are user defined directories:

 /home/abc/xyzdir1 --is a directory
 /home/abc/xyzdir2 -- is a directory

File System is a methodology for logically organizing and storing large quantities of data such that the system is easy to manage. a file system consists of files, relationships to other files, as well as the attributes(file type, file name, file size, file owner, file timestamp) of each file.

Directories: for example, the Unix file system is essentially composed of files and directories. Directories are special files that may contain other files. the top-most directory is / (slash), with the directories directly beneath being system directories. enter image description here

/ Root of Linux Filesystem

/bin Binary Executable files are kept here

/boot Booting related files are kept here

/dev Device files are kept here

/etc System-wide configuration files are kept here

/home Location for the home directories of regular users

/lib64 Libraries for binary executables are kept here

/mnt Temporary mount point for DVD-Rom, USB flash drive.

/opt Optional Programs are installed here like Program Files in windows

/proc Kernel pseudo filesystem

/root Home directory of super user root

/sbin System Binary Executable files are kept here

/tmp Temporary files are kept here

/usr User Filesystem

/var Variable files are kept here

/srv is a serve folder, contains site-specific data which is served by this system.

src and for more

The following two directories are user defined directories:

 /home/abc/xyzdir1 --is a directory
 /home/abc/xyzdir2 -- is a directory
updated information
Source Link
Premraj
  • 2.7k
  • 2
  • 27
  • 28

File System is a methodology for logically organizing and storing large quantities of data such that the system is easy to manage. a file system consists of files, relationships to other files, as well as the attributes(file type, file name, file size, file owner, file timestamp) of each file.

Directories: for example, the Unix file system is essentially composed of files and directories. Directories are special files that may contain other files. the top-most directory is / (slash), with the directories directly beneath being system directories. enter image description here

// Root of Linux Filesystem

/bin/bin Binary Executable files are kept here

/boot/boot Booting related files are kept here

/dev/dev Device files are kept here

/etc/etc System-wide configuration files are kept here

/home/home Location for the home directories of regular users

/lib64/lib64 Libraries for binary executables are kept here

/mnt/mnt Temporary mount point for DVD-Rom, USB flash drive.

/opt/opt Optional Programs are installed here like Program Files in windows

/proc/proc Kernel pseudo filesystem

/root/root Home directory of super user root

/sbin/sbin System Binary Executable files are kept here

/tmp/tmp Temporary files are kept here

/usr/usr User Filesystem

/var/var Variable files are kept here

/srv is a serve folder, contains site-specific data which is served by this system.

src

The following two directories are user defined directories:

 /home/abc/xyzdir1 --is a directory
 /home/abc/xyzdir2 -- is a directory

File System is a methodology for logically organizing and storing large quantities of data such that the system is easy to manage. a file system consists of files, relationships to other files, as well as the attributes(file type, file name, file size, file owner, file timestamp) of each file.

Directories: for example, the Unix file system is essentially composed of files and directories. Directories are special files that may contain other files. the top-most directory is / (slash), with the directories directly beneath being system directories. enter image description here

/ Root of Linux Filesystem

/bin Binary Executable files are kept here

/boot Booting related files are kept here

/dev Device files are kept here

/etc System-wide configuration files are kept here

/home Location for the home directories of regular users

/lib64 Libraries for binary executables are kept here

/mnt Temporary mount point

/opt Optional Programs are installed here

/proc Kernel pseudo filesystem

/root Home directory of super user root

/sbin System Binary Executable files are kept here

/tmp Temporary files are kept here

/usr User Filesystem

/var Variable files are kept here

src

The following two directories are user defined directories:

 /home/abc/xyzdir1 --is a directory
 /home/abc/xyzdir2 -- is a directory

File System is a methodology for logically organizing and storing large quantities of data such that the system is easy to manage. a file system consists of files, relationships to other files, as well as the attributes(file type, file name, file size, file owner, file timestamp) of each file.

Directories: for example, the Unix file system is essentially composed of files and directories. Directories are special files that may contain other files. the top-most directory is / (slash), with the directories directly beneath being system directories. enter image description here

/ Root of Linux Filesystem

/bin Binary Executable files are kept here

/boot Booting related files are kept here

/dev Device files are kept here

/etc System-wide configuration files are kept here

/home Location for the home directories of regular users

/lib64 Libraries for binary executables are kept here

/mnt Temporary mount point for DVD-Rom, USB flash drive.

/opt Optional Programs are installed here like Program Files in windows

/proc Kernel pseudo filesystem

/root Home directory of super user root

/sbin System Binary Executable files are kept here

/tmp Temporary files are kept here

/usr User Filesystem

/var Variable files are kept here

/srv is a serve folder, contains site-specific data which is served by this system.

src

The following two directories are user defined directories:

 /home/abc/xyzdir1 --is a directory
 /home/abc/xyzdir2 -- is a directory
update info
Source Link
Premraj
  • 2.7k
  • 2
  • 27
  • 28
Loading
add diff b/w filesystem and directory structure
Source Link
Premraj
  • 2.7k
  • 2
  • 27
  • 28
Loading
added some description
Source Link
Premraj
  • 2.7k
  • 2
  • 27
  • 28
Loading
Source Link
Premraj
  • 2.7k
  • 2
  • 27
  • 28
Loading