- home directory
- documents
- downloads
- desktop
File System and Path Map
File System and Path Map
Most file mistakes come from not seeing where you are, what the root means, and how path references relate to actual structure.
- shared folders
- temporary files
- logs
- configuration
- binaries
- services
- package data
- external drive
- network share
- recovery media
- Paths are addresses inside a hierarchy, not just text you type into a terminal.
- Home folders, shared locations, system directories, and mounted devices all live in one navigable model.
- Search, copy, move, and delete commands become safer when the map is clear first.
- Confusing the current working directory with the full filesystem.
- Thinking drives and mounts are the same concept across all systems.
- Treating relative paths and absolute paths as interchangeable.
Understand the map of the file system well enough to recognize Windows drive-letter paths, Linux root-tree paths, and the difference between a file name and the data behind it.
Field-verified M05 - Navigation: GUI FirstUse the graphical file manager to build a reliable spatial map of paths, hidden files, and frequent locations before translating those actions to the command line.
Field-verified M06 - Navigation: CLI TranslationTranslate basic GUI navigation into terminal navigation using the current directory, listing commands, absolute and relative paths, and a few high-value movement shortcuts.
Field-verified M07 - File Operations: View and ReadRead files safely from the terminal, inspect the beginning or end of long output, and search inside text without opening a GUI editor.
Field-verified M24 - Storage ArchitectureUnderstand how disks, partitions, filesystems, and mount points fit together so storage changes make sense before any formatting or mounting commands are used.
Field-verifiedConfidently navigate the Linux file system using pwd, ls, and cd - the three commands you will use constantly.
Field-verified LAB-FS-01 - The Linux File System TreeNavigate the standard Linux directory tree well enough to predict where configs, logs, programs, and user files usually live.
Field-verified LAB-DISK-01 - Disk Usage (df and du)Use df and du to understand where disk space is going before deciding what to clean up.
Field-verified