Table of Contents
1. Super Block
2. Group Descriptor
3. Inode Table
4. Data Block
5. Code example
Conclusion
Home Operation and Maintenance Linux Operation and Maintenance Detailed explanation of the physical structure of the ext2 file system under Linux

Detailed explanation of the physical structure of the ext2 file system under Linux

Mar 14, 2024 am 10:03 AM
File system ext physical structure

Detailed explanation of the physical structure of the ext2 file system under Linux

Detailed explanation of the physical structure of the ext2 file system under Linux

In the Linux system, ext2 is a commonly used file system type. It is A relatively simple and efficient file system. In this article, we will delve into the physical structure of the ext2 file system, including super blocks, group descriptors, inode tables, data blocks, etc., and provide specific code examples to help readers better understand.

1. Super Block

Super block is one of the most important data structures in the ext2 file system. It stores the overall information of the file system. Such as the total number of inodes, the total number of data blocks, the number of inodes in each group, the number of data blocks, etc. The following is an example of the structure of a super block:

struct ext2_super_block {
    __le32 s_inodes_count; // inode总数
    __le32 s_blocks_count; // 数据块总数
    __le32 s_inodes_per_group; // 每组的inode数量
    __le32 s_blocks_per_group; // 每组的数据块数量
    // 其他字段省略
};
Copy after login

2. Group Descriptor

Group Descriptor stores the metadata of each group (group) Information, including inode bitmap, data block bitmap, inode table starting block number, data block starting block number, etc. The following is an example of the structure of a group descriptor:

struct ext2_group_desc {
    __le32 bg_inode_bitmap; // inode位图块号
    __le32 bg_block_bitmap; // 数据块位图块号
    __le32 bg_inode_table; // inode表的起始块号
    __le16 bg_free_blocks_count; // 空闲数据块数量
    __le16 bg_free_inodes_count; // 空闲inode数量
    // 其他字段省略
};
Copy after login

3. Inode Table

inode table stores metadata information of files or directories, such as Size, permissions, owner, timestamp, etc. Each file or directory corresponds to an index node (inode) in the inode table. The following is an example of the structure of each inode in the inode table:

struct ext2_inode {
    __le16 i_mode; // 文件类型和权限
    __le32 i_size; // 文件大小
    __le32 i_blocks; // 数据块数量
    __le32 i_block[15]; // 数据块号数组
    // 其他字段省略
};
Copy after login

4. Data Block

Data block is where the actual file content is stored, ext2 The file system uses indirect addressing to manage data blocks. A data block is composed of several sectors, and a sector is the smallest storage unit in the file system. The following is an example of the structure of a data block:

struct ext2_data_block {
    char data[1024]; // 数据块大小为1KB
};
Copy after login

5. Code example

The following is a simple sample program for reading super block information in an ext2 file system:

#include <stdio.h>
#include <fcntl.h>
#include <ext2fs/ext2_fs.h>

int main() {
    int fd = open("/dev/sda1", O_RDONLY);
    if (fd == -1) {
        perror("open");
        return 1;
    }

    struct ext2_super_block sb;
    lseek(fd, 1024, SEEK_SET); // 超级块位于偏移1024字节处
    read(fd, &sb, sizeof(sb));

    printf("Inode总数:%u
", sb.s_inodes_count);
    printf("数据块总数:%u
", sb.s_blocks_count);
    // 输出其他超级块信息

    close(fd);
    return 0;
}
Copy after login

Conclusion

This article provides a detailed analysis of the physical structure of the ext2 file system under Linux, including important parts such as super block, group descriptor, inode table and data block, and provides relevant code examples to help readers Get a deeper understanding of the internals of the ext2 file system. I hope this article can be helpful to readers.

The above is the detailed content of Detailed explanation of the physical structure of the ext2 file system under Linux. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Fix event ID 55, 50, 98, 140 disk error in event viewer Fix event ID 55, 50, 98, 140 disk error in event viewer Mar 19, 2024 am 09:43 AM

If you find event ID 55, 50, 140 or 98 in the Event Viewer of Windows 11/10, or encounter an error that the disk file system structure is damaged and cannot be used, please follow the guide below to resolve the issue. What does Event 55, File system structure on disk corrupted and unusable mean? At session 55, the file system structure on the Ntfs disk is corrupted and unusable. Please run the chkMSK utility on the volume. When NTFS is unable to write data to the transaction log, an error with event ID 55 is triggered, which will cause NTFS to fail to complete the operation unable to write the transaction data. This error usually occurs when the file system is corrupted, possibly due to the presence of bad sectors on the disk or the file system's inadequacy of the disk subsystem.

How to deal with file system crash problems in Linux systems How to deal with file system crash problems in Linux systems Jun 29, 2023 pm 04:05 PM

How to deal with file system crash problems in Linux systems Introduction: With the continuous development of computer technology, the stability and reliability of the operating system are becoming more and more important. However, although Linux systems are widely regarded as a stable and reliable operating system, there is still the possibility of file system corruption. A file system crash may lead to serious consequences such as data loss and system abnormalities. Therefore, this article will introduce how to deal with file system crash problems in Linux systems to help users better protect their data and systems.

How to handle file system error 2147416359 in WIN10 How to handle file system error 2147416359 in WIN10 Mar 27, 2024 am 11:31 AM

1. Press win+r to enter the run window, enter [services.msc] and press Enter. 2. In the service window, find [windows license manager service] and double-click to open it. 3. In the interface, change the startup type to [Automatic], and then click [Apply → OK]. 4. Complete the above settings and restart the computer.

An in-depth discussion of the physical storage structure of the Linux ext2 file system An in-depth discussion of the physical storage structure of the Linux ext2 file system Mar 14, 2024 pm 09:06 PM

The Linuxext2 file system is a file system used on most Linux operating systems. It uses an efficient disk storage structure to manage the storage of files and directories. Before we delve into the physical storage structure of the Linuxext2 file system, we first need to understand some basic concepts. In the ext2 file system, data is stored in data blocks (blocks), which are the smallest allocable units in the file system. Each data block has a fixed size, usually 1KB, 2KB or 4

fstab(File System Table) fstab(File System Table) Feb 19, 2024 pm 06:30 PM

fstab (FileSystemTable) is a configuration file in the Linux system, used to define the rules for mounting file systems when the system starts. The fstab file is located in the /etc directory and can be created manually or modified by an editor. Each line specifies a file system to be mounted. Each line has six fields, and their meanings are as follows: The file system device file or UUID can be used to specify the device of the file system to be mounted. The UUID is a unique identifier. The UUID of the device can be obtained through the blkid command. 2. Mount point: Specify the directory to which the file system is to be mounted, which can be an absolute path (such as /mnt/data) or a relative path (such as ../data). 3. File system class

How to deal with file system file locks and inter-process file sharing issues for concurrent files in Go language? How to deal with file system file locks and inter-process file sharing issues for concurrent files in Go language? Oct 09, 2023 pm 05:53 PM

Introduction to file system file locks and inter-process file sharing issues in handling concurrent files in the Go language: In the Go language, we often need to deal with concurrent access to files, including file system file locks and inter-process file sharing. This article will introduce how to use Go language to deal with these problems and provide specific code examples. 1. File system file lock When multiple concurrent programs access the same file at the same time, in order to avoid race conditions and data inconsistencies, we can use file system file locks for synchronization. Go language provides s

The Difference: NTFS vs. FAT32 The Difference: NTFS vs. FAT32 Feb 18, 2024 pm 10:18 PM

NTFS and FAT32 are two common file systems used to organize and manage data on your computer's hard drive. While they all share some common functions and features, there are also some important differences in many ways. This article will explore several key differences between NTFS and FAT32. Functions and performance: NTFS (New Technology File System) is a newer file system in Microsoft Windows operating system. It has many advanced functions, such as data compression, file encryption,

In-depth understanding of Linux's standard file system (Ext2/Ext3/Ext4) In-depth understanding of Linux's standard file system (Ext2/Ext3/Ext4) Dec 31, 2023 pm 10:18 PM

The full name of Ext is Linux extended file system, extfs, which is the Linux extended file system. Ext2 represents the second generation file extension system, Ext3/Ext4 and so on. They are all upgraded versions of Ext2, but they add the log function and are backward compatible with each other. So Ext2 is called an indexed file system, and Ext3/Ext4 is called a journaled file system. Note: Linux supports many file systems, including Network File System (NFS) and Windows’ Fat file system. View the file systems supported by Linux: ls-l/lib/modules/$(uname-r)/kernel/fs view

See all articles