惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

S
SegmentFault 最新的问题
爱范儿
爱范儿
博客园 - 三生石上(FineUI控件)
Microsoft Security Blog
Microsoft Security Blog
Google DeepMind News
Google DeepMind News
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
GbyAI
GbyAI
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
V
V2EX
酷 壳 – CoolShell
酷 壳 – CoolShell
量子位
博客园_首页
T
Tailwind CSS Blog
aimingoo的专栏
aimingoo的专栏
A
About on SuperTechFans
T
The Blog of Author Tim Ferriss
Stack Overflow Blog
Stack Overflow Blog
Recent Announcements
Recent Announcements
P
Proofpoint News Feed
博客园 - 司徒正美
有赞技术团队
有赞技术团队
Engineering at Meta
Engineering at Meta
Last Week in AI
Last Week in AI
MongoDB | Blog
MongoDB | Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Day 1 of My DevOps Journey: Linux File System Basics & Na...
Asaduzzaman · 2026-04-27 · via DEV Community

Prerequisites

  • A Linux terminal or Windows Subsystem for Linux (WSL)
  • Basic familiarity with using a terminal

Linux file system

A Linux file system is the way Linux organizes and stores files and folders on a computer.

  • 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.txtFile.txt
  • Permissions exist: Every file has read, write, execute permissions

Important directories

/home → user files
/etc → configuration files
/bin → basic commands
/dev → device files
/var → logs, dynamic data

Basic navigation commands

Viewing Your Current Directory

Command

pwd     # where am I? (print working directory)

Enter fullscreen mode Exit fullscreen mode

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

Command

ls     # list files and folders in the current directory

Enter fullscreen mode Exit fullscreen mode

Example o/p:

Documents  Downloads  my_folder  notes.txt

Enter fullscreen mode Exit fullscreen mode

Explanation: The lscommand shows all files and directories inside your current location. It helps you quickly see what’s available in that directory.

Command

ls -la     # list all files (including hidden) with detailed information

Enter fullscreen mode Exit fullscreen mode

Example o/p:

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

Enter fullscreen mode Exit fullscreen mode

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.


Creating Directory

Command

mkdir my_folder     # create a new directory named "my_folder"

Enter fullscreen mode Exit fullscreen mode

Example o/p:

# (no output if successful)

ls
my_folder

Enter fullscreen mode Exit fullscreen mode

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.

Command

# Create main directory structure
mkdir -p ~/code/lab/projects/website
mkdir -p ~/code/lab/documents/reports
mkdir -p ~/code/lab/documents/notes

Enter fullscreen mode Exit fullscreen mode

Example o/p:

# (no output if successful)

ls ~/code/lab
documents  projects

Enter fullscreen mode Exit fullscreen mode

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.

Command

# 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

Enter fullscreen mode Exit fullscreen mode

Example o/p:

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.


Command

ls ~/code/lab/projects     # list files and folders inside the projects directory

Enter fullscreen mode Exit fullscreen mode

Example o/p:

website

Enter fullscreen mode Exit fullscreen mode

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

Command

cd my_folder     # move into the "my_folder" directory

Enter fullscreen mode Exit fullscreen mode

Example o/p:

pwd
/home/user/my_folder

Enter fullscreen mode Exit fullscreen mode

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.

Command

cd ..     # move one level up (to the parent directory)

Enter fullscreen mode Exit fullscreen mode

Example o/p:

pwd
/home/user

Enter fullscreen mode Exit fullscreen mode

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

Find by name

find . -name "file.txt"
find . -name "*.txt"

Enter fullscreen mode Exit fullscreen mode

Find by type

find . -type f     # files only
find . -type d     # directories only

Enter fullscreen mode Exit fullscreen mode

Command

find . -name "*.txt"     # find all .txt files in current directory and subdirectories

Enter fullscreen mode Exit fullscreen mode

Example o/p:

./documents/notes/meeting.txt
./documents/notes/todo.txt
./documents/reports/plan.txt

Enter fullscreen mode Exit fullscreen mode

Command

find ./documents/notes -type f     # find only files inside notes directory

Enter fullscreen mode Exit fullscreen mode

Example o/p:

./documents/notes/meeting.txt
./documents/notes/todo.txt

Enter fullscreen mode Exit fullscreen mode

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

Command

# Search for "Meeting" in all files under documents
grep -r "Meeting" ~/code/lab/documents

Enter fullscreen mode Exit fullscreen mode

Example o/p:

~/code/lab/documents/notes/meeting.txt:Meeting Notes

Enter fullscreen mode Exit fullscreen mode

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.

Command

# Search for "Plan" in all .txt files
grep "Plan" ~/code/lab/documents/*/*.txt

Enter fullscreen mode Exit fullscreen mode

Example o/p:

~/code/lab/documents/reports/plan.txt:Project Plan

Enter fullscreen mode Exit fullscreen mode

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


Common Issues and Troubleshooting

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.

What I Learned Today

  • Navigating directories using cd
  • Viewing my current location with pwd
  • Listing directory contents with ls
  • Finding files using find
  • Searching file contents with grep