Linux Directory Structure Overview
One of the most noticeable differences between Linux and Windows is the directory structure. Not only is the format different, but the logic of where to find things is different.Introduction
In Windows, you use this format to access a directory
D:\Folder\subfolder\file.txt
In Linux, this is the basic format
/Folder/subfolder/file.txt
You’ll notice that the slashes are forward slashes in Linux versus backslashes in Windows. Also, there is no drive name (C:, D:, etc.) in Linux. At boot, the ‘root partition’ is mounted at /. All files, folders, devices and drives are mounted under /. Though it is not apparent from this example, it is important to note that files and folders in Linux are case sensitive.
Leave a Reply