This article mainly introduces you to the relevant information about inode in Linux. The introduction in the article is very detailed and has a certain reference and learning value for everyone. Friends who need it can take a look below.
Background
I was reviewing Linux commands recently, and when I went to df, I discovered something that I had ignored before. That is, the -i option lists the inode information of the file system partition. What is this inode?
What is inode used for?
Inode is an area used to store file meta information. The Chinese translation is called "index node".
Background knowledge about inode
Let’s first review some contents of file storage. We know that files are stored on the hard disk. The smallest storage unit of the hard disk is also called a sector. The size of a sector is 512 bytes.
When the operating system reads information on the hard disk, it reads multiple sectors at once, and these multiple sectors are also called blocks. Typically, the block size is 4KB, approximately 8 sectors in size. It should be noted that the blocks read are contiguous spaces.
At this time we can know that files are stored in "blocks", just like when we write a C language program, we know that when we declare an array, not only will it be stored The value placed in the array will also store the corresponding array information, such as the first address of the array, file type, array length, etc. Similarly, you need to find a place to store the meta-information of the file, similar to the information related to file creation. , the length of the file, etc. And this place is called inode.
The content stored in the inode
The inode contains the meta-information of the stored file, including these contents:
The number of bytes in the file.
The ID of the file creator.
The Group ID of the file.
File read and write permissions.
The relevant timestamp of the file. There are three specific ones: ctime-->The time when the inode was last changed; mtime-->The time when the file content was last changed; atime-->The time when the file was last opened.
Number of links
Block position of file data
inode number
After seeing the above storage content for the first time, I think everyone will have the same question. Since inode stores file-related information, why not store files? The name. The reason is that file names are not the standard for Unix/Linux operating systems to identify different files.
The operating system identifies different files through inode numbers.
In Unix/Linux systems, the user level name is used to open the file through the file name. The system level mainly goes through three steps to open the file:
-
Find the corresponding inode number based on the file name.
Get inode information through inode number.
According to the inode information, find the block where the file data is stored, and store the data alone.
The special function of inode
In the Unix/Linux system, the inode number and the file name are separated. This has led to some special phenomena in the system:
Deleting the inode node means deleting the file. Some files may not be deleted correctly. In this case, we can directly delete the corresponding inode node to delete the file.
Move files or rename files without changing the inode number, just the file name.
Generally speaking, the system cannot obtain the file name through the inode number. When a file is opened, the system will identify the file through the inode and no longer consider the file name.
Because of the existence of the inode number, the system can be updated without closing the software. The system identifies the running file through the inode number. During the update process, the file exists with the same file name and a new inode without affecting the currently running file. The original old version of the inode will be recycled the next time the software is opened, and the file name will automatically point to the new inode number.
Inode space occupation problem
Since the data is also stored in the hard disk, the inode will definitely occupy the hard disk space. When formatting the hard disk, the operating system will automatically divide the hard disk into two areas:
data area
inode table
The data area mainly stores file data, and the inode table area stores inode information.
Specially, the size of the area occupied by the inode is already given by the operating system when the disk is formatted. The consequence of this is that the space in the data area has not been used up, but data cannot be accessed anymore. At this time, because the inode table area is full, new files cannot be stored on the disk.
Directory file
We know that in Unix/Linux, any resource exists in the form of a file. So does the catalog. When we open a directory, we actually open the directory file. The structure of a directory file is a list.
Directory entry = file name of the included file + corresponding inode number.
Hard links and soft links
I won’t cover the specifics of what is a hard link and what is a soft link in this blog post I won’t go into details, just consider it from the inode perspective.
Considering from the perspective of inode number, in Unix/Linux system, multiple file names are allowed to point to the same inode number. At this time, if one of the file names is deleted, access to the other file name will not be affected. At the same time, if the file is opened through one file name and modifications are made, the modifications can be shared when other file names are opened. Then call this a "hard link". In Linux, we can create hard links through the ln command.
As summarized above, in the inode, there is a storage item called "number of links", which records the total number of file names that only want the inode. If a file name is created to point to a file through a hard link, the link number in the inode data field corresponding to the file will be + 1, and vice versa - 1. When this value is 0, the system will default to no file name pointing to the inode. At this time, the inode number will be recycled and the corresponding block area will be recycled.
As for the corresponding soft link, suppose there is file A and file B, and B is the soft link of A. At this time, the inode numbers of A and B are different because they are different files, but! The content of B is the path of A. When reading B, the system will automatically access A, so no matter which file is opened, file A will be accessed. At this time, file B is called a "soft link" or "symbolic link" to file A.
In Unix/Linux systems, we can create soft links through the ln -s command.
Summary and small additions
Through the above description, we know that inode is like the pointer field in C language, the pointer field It records a variety of information and directs us to the correct file location to read the required information. (Of course it is not exactly the same.)
When creating a directory in a Unix/Linux system, two directory entries will be automatically generated:
.Directory
.. Directory
You can observe these two directories through the ls -al command. The inode number of ".directory" is the inode number of the current directory, which is equivalent to the hard link of the current directory, while the inode number of the ".." directory is the inode number of the parent directory of the current directory, which is equivalent to the hard link of the parent directory. Total number of directory hard links = 2 + total number of subdirectories (including hidden files).
The above is the detailed content of Tutorial on inode usage in Linux. For more information, please follow other related articles on the PHP Chinese website!

linux设备节点是应用程序和设备驱动程序沟通的一个桥梁;设备节点被创建在“/dev”,是连接内核与用户层的枢纽,相当于硬盘的inode一样的东西,记录了硬件设备的位置和信息。设备节点使用户可以与内核进行硬件的沟通,读写设备以及其他的操作。

区别:1、open是UNIX系统调用函数,而fopen是ANSIC标准中的C语言库函数;2、open的移植性没fopen好;3、fopen只能操纵普通正规文件,而open可以操作普通文件、网络套接字等;4、open无缓冲,fopen有缓冲。

端口映射又称端口转发,是指将外部主机的IP地址的端口映射到Intranet中的一台计算机,当用户访问外网IP的这个端口时,服务器自动将请求映射到对应局域网内部的机器上;可以通过使用动态或固定的公共网络IP路由ADSL宽带路由器来实现。

在linux中,eof是自定义终止符,是“END Of File”的缩写;因为是自定义的终止符,所以eof就不是固定的,可以随意的设置别名,linux中按“ctrl+d”就代表eof,eof一般会配合cat命令用于多行文本输出,指文件末尾。

在linux中,可以利用“rpm -qa pcre”命令判断pcre是否安装;rpm命令专门用于管理各项套件,使用该命令后,若结果中出现pcre的版本信息,则表示pcre已经安装,若没有出现版本信息,则表示没有安装pcre。

在linux中,交叉编译是指在一个平台上生成另一个平台上的可执行代码,即编译源代码的平台和执行源代码编译后程序的平台是两个不同的平台。使用交叉编译的原因:1、目标系统没有能力在其上进行本地编译;2、有能力进行源代码编译的平台与目标平台不同。

linux查询mac地址的方法:1、打开系统,在桌面中点击鼠标右键,选择“打开终端”;2、在终端中,执行“ifconfig”命令,查看输出结果,在输出信息第四行中紧跟“ether”单词后的字符串就是mac地址。

在linux中,rpc是远程过程调用的意思,是Reomote Procedure Call的缩写,特指一种隐藏了过程调用时实际通信细节的IPC方法;linux中通过RPC可以充分利用非共享内存的多处理器环境,提高系统资源的利用率。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

Atom editor mac version download
The most popular open source editor

Dreamweaver Mac version
Visual web development tools

Dreamweaver CS6
Visual web development tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software
