Linux Directories
The default display manager in RHEL 9 is called GDM(GNOME Display Manager) Linux Directory Structure: Linux files are organized logically in a hierarchy for ease of administration and recognition. This organization is maintained in hundreds of directories located in larger containers called file systems. Red Hat Enterprise Linux follows the Filesystem Hierarchy Standard (FHS) for file organization, which describes names, locations, and permissions for many file types and directories. The Linux directory structure is analogous to an inverted tree, where the top of the tree is the root of the directory, tree branches are subdirectories, and leaves are files. Path example: /etc/rc.d/init.d/README The etc directory is located under / -> here / is the parent and etc is the child. rc.d(child) is located under etc(parent) . init.d(child) is located under rc.d(parent) . README(leaf) is located under init.d(parent) . ==SUB-DIRECTORY:== A directory that has a parent directory. Note The root directory has no parent, and the lowest level subdirectory has no child. ...