Home>Article>Operation and Maintenance> What does linux d mean?

What does linux d mean?

青灯夜游
青灯夜游 Original
2022-03-02 11:45:20 8831browse

In Linux, the full name of d is "directory", which means "directory". It is an attribute that specifies the file type in file permissions; if the first attribute of a file is represented by "d", it means that the file is a directory file.

What does linux d mean?

#The operating environment of this tutorial: linux5.9.8 system, Dell G3 computer.

Linux system is a typical multi-user system. Different users are in different positions and have different permissions.

In order to protect the security of the system, the Linux system has different regulations on the permissions of different users to access the same file (including directory files).

In Linux, we usually use the following two commands to modify the user and permissions of a file or directory:

  • chown (change owner): Modify the user and group to which it belongs. .

  • chmod (change mode): Modify user permissions.

In the figure below, chown is used to authorize the user, and chmod is used to set the permissions for the user to open the door.

What does linux d mean?

In Linux we can use the ll or ls -l command to display the attributes of a file and the user and group to which the file belongs, such as:

[root@www /]# ls -l total 64 dr-xr-xr-x 2 root root 4096 Dec 14 2012 bin dr-xr-xr-x 4 root root 4096 Apr 19 2012 boot ……

In the example, the first attribute of the bin file is represented byd.dIn Linux, it means that the file is a directory file.

In Linux, the first character indicates whether the file is a directory, file, link file, etc.

  • When it isd, it is a directory

  • When it is-, it is a file ;

  • If it isl, it is represented as a link file;

  • If it isbIt is represented as a storable interface device (random access device) in the installation file;

  • If it isc, it is represented as a serial port in the installation file Devices such as keyboard, mouse (disposable reading device).

The following characters are grouped into groups of three, and they are all combinations of the three parameters ofrwx. Among them,rrepresents readable (read),wrepresents writable (write), andxrepresents executable (execute). It should be noted that the positions of these three permissions will not change. If there is no permission, the minus sign-will appear.

What does linux d mean?

#The attributes of each file are determined by the 10 characters in the first part on the left (as shown below).

What does linux d mean?

The numbers0-9are represented from left to right. The

bits0determine the file type, and the1-3bits determine the owner (the owner of the file) has the permissions of the file.

The4-6bits determine that the group (users in the same group of the owner) has the permissions of the file, and the7-9bits determine that other users have the permissions of the file. File permissions.

Among them, the1, 4, and 7bits represent read permission. If it is represented byrcharacters, it has read permission. If it is represented by-## If represented by the # character, there is no read permission; the

2, 5, and 8

bits represent write permission. If it is represented by thewcharacter, there is write permission. If Use-characters to indicate that there is no write permission; bits3, 6, and 9indicate executable permission. If it is expressed withxcharacters, it means there is execution permission. If it is expressed with-characters indicate that there is no execution permission.Related recommendations: "

Linux Video Tutorial

"

The above is the detailed content of What does linux d mean?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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