Root directory & Home directory
Root Directory ( / ) Root Directory: The root directory ( / ) is the top-level directory of the filesystem hierarchy in Linux. It is the starting point for the directory tree, and all other directories and files are placed under this root directory. Root User's Home Directory: The root user (the superuser) has a specific home directory, typically /root or (~) . This is separate from other users' home directories. Home Directory ( /home ) Home Directory : Each non-root user has their own home directory under /home . For example, if you have a user named alice , her home directory would typically be /home/alice . Purpose : The home directory is where users store their personal files, configuration settings, and other data. It is a dedicated space for each user to manage their own files and environment settings without interfering with other users. Example of Home Directory Structure Root User : The home directory for the root user is /root . Regular Users : The home directori...