Tools: Essential Guide: Day 1 of My DevOps Journey: Linux File System Basics & Navigation

Tools: Essential Guide: Day 1 of My DevOps Journey: Linux File System Basics & Navigation

Linux file system

Important directories

Basic navigation commands

Common Issues and Troubleshooting

What I Learned Today A Linux file system is the way Linux organizes and stores files and folders on a computer. /home → user files

/etc → configuration files/bin → basic commands/dev → device files/var → logs, dynamic data Viewing Your Current Directory Explanation: The pwd command (Print Working Directory) displays the full path of your current location in the file system. For example, it might output something like /home/<username>/ Listing Directory Contents Explanation: The lscommand shows all files and directories inside your current location. It helps you quickly see what’s available in that directory. Explanation: The ls -la command lists all files and directories, including hidden ones (those starting with .), in a detailed format. It shows permissions, owner, size, and last modified time for each item. Explanation: The mkdir(make directory) command is used to create a new folder in the current location. If the command runs successfully, it usually doesn’t show any output—you’ll see the new directory when you list files using ls. Explanation: The mkdir -p command creates directories, including any parent folders that do not already exist. Here, it creates a nested folder structure in one go. The ~ symbol means your home directory. For example, if your username is bond007, then ~ represents /home/bond007 . So ~/code means /home/bond007/code . The -p flag means create parent directories as needed, so even if code, lab, or documents do not exist yet, Linux will create them automatically. Explanation: The echo command prints text, and the > symbol redirects that text into a file, creating it if it doesn’t exist (or overwriting it if it already exists). For example, echo "Hello World" > index.html creates a file named index.html and writes "Hello World" inside it. Explanation: The ls ~/code/lab/projects command shows the contents of the projects directory without needing to navigate into it. The ~ represents your home directory (e.g., /home/bond007), so this command lists everything inside /home/bond007/code/lab/projects. Navigating to directories Explanation: The cd (change directory) command is used to navigate between directories in the file system. It changes your current location to the specified folder. Explanation: The cd .. command moves you one level up from your current directory to its parent. The .. represents the parent directory in the file system. Finding Files with find The find command is used to search files and directories in Linux based on different conditions like name, type, size, time, etc. Find by name and Find by type are two most important types of find commands Explanation: The find command is used to search for files and directories. find . -name "*.txt" searches from the current directory (.) and finds all files ending with .txt. find ./documents/notes -type f searches only inside the notes folder and returns only files (-type f), ignoring directories. The -name option specifies a pattern, and -type f limits the search to files. Searching File Contents with grep Explanation: The grep command is used to search for specific text inside files. The -r flag means recursive search, so it will go through all folders and subfolders inside the given path. Here, it searches for the word "Meeting" inside ~/code/lab/documents and shows the file name and the matching line where the text is found. Explanation: The grep command is used to search for text inside files. Here, it looks for the word "Plan" only inside .txt files located in subfolders of documents. The pattern */*.txt means:First * → any subdirectory inside documents (like reports, notes)

Second *.txt → all text files inside those subdirectories Permission Denied: Use ls -la to check permissions. Modify permissions with chmodif necessary. No such file or directory: Verify the path you entered. Use tab completion to avoid typos. Command not found: Ensure the command syntax is correct and the required tools are installed. Templates let you quickly answer FAQs or store snippets for re-use. Are you sure you want to ? It will become hidden in your post, but will still be visible via the comment's permalink. Hide child comments as well For further actions, you may consider blocking this person and/or reporting abuse

Command

Copy

$ pwd # where am I? (print working directory) pwd # where am I? (print working directory) pwd # where am I? (print working directory) /home/<username>/ ls # list files and folders in the current directory ls # list files and folders in the current directory ls # list files and folders in the current directory Documents Downloads my_folder notes.txt Documents Downloads my_folder notes.txt Documents Downloads my_folder notes.txt ls -la # list all files (including hidden) with detailed information ls -la # list all files (including hidden) with detailed information ls -la # list all files (including hidden) with detailed information drwxr-xr-x 5 user user 4096 Apr 27 10:00 . drwxr-xr-x 3 user user 4096 Apr 26 09:00 .. -rw-r--r-- 1 user user 45 Apr 25 14:20 notes.txt drwxr-xr-x 2 user user 4096 Apr 27 09:50 my_folder -rw-r--r-- 1 user user 220 Apr 20 08:00 .bashrc drwxr-xr-x 5 user user 4096 Apr 27 10:00 . drwxr-xr-x 3 user user 4096 Apr 26 09:00 .. -rw-r--r-- 1 user user 45 Apr 25 14:20 notes.txt drwxr-xr-x 2 user user 4096 Apr 27 09:50 my_folder -rw-r--r-- 1 user user 220 Apr 20 08:00 .bashrc drwxr-xr-x 5 user user 4096 Apr 27 10:00 . drwxr-xr-x 3 user user 4096 Apr 26 09:00 .. -rw-r--r-- 1 user user 45 Apr 25 14:20 notes.txt drwxr-xr-x 2 user user 4096 Apr 27 09:50 my_folder -rw-r--r-- 1 user user 220 Apr 20 08:00 .bashrc mkdir my_folder # create a new directory named "my_folder" mkdir my_folder # create a new directory named "my_folder" mkdir my_folder # create a new directory named "my_folder" # (no output if successful) ls my_folder # (no output if successful) ls my_folder # (no output if successful) ls my_folder # Create main directory structure mkdir -p ~/code/lab/projects/website mkdir -p ~/code/lab/documents/reports mkdir -p ~/code/lab/documents/notes # Create main directory structure mkdir -p ~/code/lab/projects/website mkdir -p ~/code/lab/documents/reports mkdir -p ~/code/lab/documents/notes # Create main directory structure mkdir -p ~/code/lab/projects/website mkdir -p ~/code/lab/documents/reports mkdir -p ~/code/lab/documents/notes # (no output if successful) ls ~/code/lab documents projects # (no output if successful) ls ~/code/lab documents projects # (no output if successful) ls ~/code/lab documents projects /home/bond007 /home/bond007/code # Create some sample files echo "Hello World" > ~/code/lab/projects/website/index.html echo "Project Plan" > ~/code/lab/documents/reports/plan.txt echo "Meeting Notes" > ~/code/lab/documents/notes/meeting.txt echo "Todo List" > ~/code/lab/documents/notes/todo.txt # Create some sample files echo "Hello World" > ~/code/lab/projects/website/index.html echo "Project Plan" > ~/code/lab/documents/reports/plan.txt echo "Meeting Notes" > ~/code/lab/documents/notes/meeting.txt echo "Todo List" > ~/code/lab/documents/notes/todo.txt # Create some sample files echo "Hello World" > ~/code/lab/projects/website/index.html echo "Project Plan" > ~/code/lab/documents/reports/plan.txt echo "Meeting Notes" > ~/code/lab/documents/notes/meeting.txt echo "Todo List" > ~/code/lab/documents/notes/todo.txt "Hello World" > index.html ls ~/code/lab/projects # list files and folders inside the projects directory ls ~/code/lab/projects # list files and folders inside the projects directory ls ~/code/lab/projects # list files and folders inside the projects directory website ls ~/code/lab/projects /home/bond007 /home/bond007/code/lab/projects cd my_folder # move into the "my_folder" directory cd my_folder # move into the "my_folder" directory cd my_folder # move into the "my_folder" directory pwd /home/user/my_folder pwd /home/user/my_folder pwd /home/user/my_folder cd .. # move one level up (to the parent directory) cd .. # move one level up (to the parent directory) cd .. # move one level up (to the parent directory) pwd /home/user pwd /home/user pwd /home/user find . -name "file.txt" find . -name "*.txt" find . -name "file.txt" find . -name "*.txt" find . -name "file.txt" find . -name "*.txt" find . -type f # files only find . -type d # directories only find . -type f # files only find . -type d # directories only find . -type f # files only find . -type d # directories only find . -name "*.txt" # find all .txt files in current directory and subdirectories find . -name "*.txt" # find all .txt files in current directory and subdirectories find . -name "*.txt" # find all .txt files in current directory and subdirectories ./documents/notes/meeting.txt ./documents/notes/todo.txt ./documents/reports/plan.txt ./documents/notes/meeting.txt ./documents/notes/todo.txt ./documents/reports/plan.txt ./documents/notes/meeting.txt ./documents/notes/todo.txt ./documents/reports/plan.txt find ./documents/notes -type f # find only files inside notes directory find ./documents/notes -type f # find only files inside notes directory find ./documents/notes -type f # find only files inside notes directory ./documents/notes/meeting.txt ./documents/notes/todo.txt ./documents/notes/meeting.txt ./documents/notes/todo.txt ./documents/notes/meeting.txt ./documents/notes/todo.txt find . -name "*.txt" find ./documents/notes -type f # Search for "Meeting" in all files under documents grep -r "Meeting" ~/code/lab/documents # Search for "Meeting" in all files under documents grep -r "Meeting" ~/code/lab/documents # Search for "Meeting" in all files under documents grep -r "Meeting" ~/code/lab/documents ~/code/lab/documents/notes/meeting.txt:Meeting Notes ~/code/lab/documents/notes/meeting.txt:Meeting Notes ~/code/lab/documents/notes/meeting.txt:Meeting Notes ~/code/lab/documents Command # Search for "Plan" in all .txt files grep "Plan" ~/code/lab/documents/*/*.txt Command # Search for "Plan" in all .txt files grep "Plan" ~/code/lab/documents/*/*.txt Command # Search for "Plan" in all .txt files grep "Plan" ~/code/lab/documents/*/*.txt ~/code/lab/documents/reports/plan.txt:Project Plan ~/code/lab/documents/reports/plan.txt:Project Plan ~/code/lab/documents/reports/plan.txt:Project Plan - A Linux terminal or Windows Subsystem for Linux (WSL) - Basic familiarity with using a terminal - Everything starts from one root directory: / - No C: or D: drives — all files, folders, and devices live somewhere under / - It's a tree structure: / → subdirectories → files - In Linux, devices and directories are also treated as files — everything is considered a file in the system. - Paths matter: # Absolute path → starts with / # Relative path → starts from current folder. - Case-sensitive: file.txt ≠ File.txt - Permissions exist: Every file has read, write, execute permissions - Navigating directories using cd - Viewing my current location with pwd - Listing directory contents with ls - Finding files using find - Searching file contents with grep