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

推荐订阅源

G
Google Developers Blog
S
SegmentFault 最新的问题
Jina AI
Jina AI
D
DataBreaches.Net
人人都是产品经理
人人都是产品经理
罗磊的独立博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
爱范儿
爱范儿
大猫的无限游戏
大猫的无限游戏
C
Check Point Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
WordPress大学
WordPress大学
博客园 - 三生石上(FineUI控件)
B
Blog
博客园 - 【当耐特】
博客园 - Franky
M
MIT News - Artificial intelligence
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
L
LangChain Blog
MyScale Blog
MyScale Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 叶小钗
Last Week in AI
Last Week in AI
Engineering at Meta
Engineering at Meta

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
📘 Filesystem vs Storage Area (Disk or Partition)
Shiva Charan · 2026-05-13 · via DEV Community

📂 What is a Filesystem?

A filesystem is the set of rules and organization tools an operating system uses to manage files.

Without a filesystem, a computer wouldn't know:

  • Where one file begins
  • Where another file ends
  • How files are stored and retrieved

🧠 The Word "Filesystem" Has 3 Meanings

The word filesystem is often used in three different ways:

🔢 Meaning 📝 Description
1️⃣ The Method The specific way files are organized
2️⃣ The Space A specific partition or disk used to store files
3️⃣ The Type The specific format being used, such as EXT2

Example:

"I have two filesystems"

Enter fullscreen mode Exit fullscreen mode

could mean:

  • Two partitions
  • Two mounted storage areas
  • Two filesystem structures

💽 The Partition vs. The Filesystem

  • A disk or partition is just a raw, empty storage space.

  • A filesystem is the structure written onto that space to make it usable.


🔹 Disk / Partition

Think of it as:

An empty piece of land

Enter fullscreen mode Exit fullscreen mode

It has storage capacity but no organization.


🔹 Filesystem

Think of it as:

Roads, buildings, addresses, and maps built on the land

Enter fullscreen mode Exit fullscreen mode

The filesystem organizes the storage space so files can be stored properly.


⚙️ Initialization

Before you can save files on a new partition, you must initialize it.

This process is called:

Making a filesystem

Enter fullscreen mode Exit fullscreen mode

During initialization, Linux writes important bookkeeping structures onto the disk, such as:

📘 Structure 📝 Purpose
Superblocks Store filesystem metadata
Inodes Store information about files
Allocation Tables Track used and free space

🔗 Mounting

In Linux, the system does not automatically access files on a partition.

You must:

Mount the filesystem

Enter fullscreen mode Exit fullscreen mode

Mounting attaches the filesystem to a folder called a:

Mount point

Enter fullscreen mode Exit fullscreen mode

Example:

sudo mount /dev/sdb1 /mnt/data

Enter fullscreen mode Exit fullscreen mode

This makes the files accessible through:

/mnt/data

Enter fullscreen mode Exit fullscreen mode


⚠️ Why the Difference Matters

Understanding the difference between:

  • The storage device
  • The filesystem

is extremely important.


🖥️ Most Programs Need a Filesystem

Almost every application you use:

  • Web browsers
  • Word processors
  • Media players
  • Editors

requires a filesystem to work properly.

These programs cannot communicate directly with a raw disk.


💽 1. Examples of a "Raw, Unformatted Disk"

A "raw" disk or partition is simply the physical or logical storage space before any organization (a filesystem) has been added to it.

In Linux, these are represented by device files found in the:

/dev

Enter fullscreen mode Exit fullscreen mode

directory.


🔹 Entire Hard Drive

Example:

/dev/hda

Enter fullscreen mode Exit fullscreen mode

This represents an entire raw hard drive.


🔹 Partitions on a Hard Drive

Examples:

/dev/hda1
/dev/hda2

Enter fullscreen mode Exit fullscreen mode

These represent specific partitions (slices of space) on that hard drive.


🔹 Floppy Disk Drive

Example:

/dev/fd0

Enter fullscreen mode Exit fullscreen mode

This represents a raw floppy disk drive.


🧠 Important Concept

When you access these device files, you are interacting with:

The raw sectors of the hardware itself

Enter fullscreen mode Exit fullscreen mode

rather than the files stored inside them.


🛠️ Specialized Low-Level Tools

Some special tools work directly with the raw physical sectors of a disk.

Examples include tools that:

  • Create filesystems
  • Partition disks
  • Recover data

These tools bypass the filesystem layer completely.


🛠️ 2. Examples of "Specialized Tools"

Specialized tools are programs designed to interact directly with the hardware's raw sectors to prepare them for use or manage the storage structure.


🔹 mkfs - Make Filesystem

Example command:

mkfs.ext4 /dev/hda1

Enter fullscreen mode Exit fullscreen mode

This tool is used for:

  • Creating filesystems
  • Initializing partitions
  • Writing filesystem structures

It creates important bookkeeping structures such as:

📘 Structure 📝 Purpose
Superblocks Store filesystem metadata
Inodes Store file information
Allocation Tables Track used/free blocks

🔹 fdisk - Partition Management

Example command:

fdisk /dev/hda

Enter fullscreen mode Exit fullscreen mode

This tool is used to:

  • Create partitions
  • Delete partitions
  • Modify partition tables

It works directly on the raw disk structure.


🔹 mkswap - Prepare Swap Space

Example command:

mkswap /dev/hda2

Enter fullscreen mode Exit fullscreen mode

This prepares a partition to be used as:

Swap space (virtual memory)

Enter fullscreen mode Exit fullscreen mode

instead of a regular filesystem.


☠️ The Danger

If you use a specialized raw disk tool on a partition that already contains files:

  • The filesystem may become corrupted
  • Existing data may be destroyed
  • The partition may become unreadable

This is because the tool writes directly to the disk sectors without caring about existing files.


🚨 Important Warning

Operations such as:

mkfs
fdisk
parted

Enter fullscreen mode Exit fullscreen mode

can permanently destroy data if used incorrectly.

Always verify the target disk or partition before running low-level storage commands.


⚠️ 3. Why the Difference Matters (The Danger)

The distinction between:

  • A raw disk
  • A filesystem

is extremely important because of how programs interact with storage devices.


👨‍💻 Most Programs (The Users)

Applications such as:

  • Web browsers
  • Word processors
  • Video players
  • Editors

cannot understand raw disk sectors.

They require a:

Filesystem

Enter fullscreen mode Exit fullscreen mode

to act as a map for locating and managing files.

Programs access storage through:

Mount points

Enter fullscreen mode Exit fullscreen mode

such as:

/home
/var
/mnt/data

Enter fullscreen mode Exit fullscreen mode


🏗️ Specialized Tools (The Builders)

Tools such as:

mkfs
fdisk
mkswap

Enter fullscreen mode Exit fullscreen mode

do not use the filesystem map.

Instead, they write directly to:

Raw disk sectors

Enter fullscreen mode Exit fullscreen mode


☠️ The Danger

Suppose you run:

mkfs.ext4 /dev/hda2

Enter fullscreen mode Exit fullscreen mode

on a partition that already contains files.

The tool will NOT:

  • Check for your documents
  • Protect your photos
  • Ask whether important data exists

Instead, it will overwrite the filesystem metadata structures with a brand-new empty filesystem.


🧨 What Gets Destroyed?

The following critical structures may be overwritten:

📘 Structure ❌ Result
Superblock Filesystem metadata destroyed
Inodes File references lost
Allocation Tables Disk usage map erased

🧩 Important Detail

Even if the actual file data bits still physically exist on the disk:

The "map" used to locate those files is gone

Enter fullscreen mode Exit fullscreen mode

As a result:

  • Files become inaccessible
  • The filesystem becomes corrupted
  • Data recovery becomes difficult or impossible

✅ Quick Summary

📌 Concept 📝 Explanation
Raw Disk Physical storage sectors
Partition A slice of disk storage (Raw storage space)
Filesystem Organizational structure for files
Initialization Creating filesystem structures
Mounting Attaching filesystem to a directory
Raw Disk Tools Access physical disk sectors directly
/dev/hda1 Raw partition device
mkfs Creates filesystems
fdisk Manages partitions
mkswap Creates swap space
Mount Point Directory used to access a filesystem
Danger Low-level tools can destroy filesystem metadata