Can linux check and obtain file permissions?

WBOY
Release: 2022-08-18 16:10:28
Original
6810 people have browsed it

Linux can view and obtain file permissions. Viewing method: 1. Use the cd command to move to the file path that needs to be queried. The syntax is "cd specified file"; 2. Use the "ls-l" command to view the permissions of the file. The 9 characters to the right of the first character in the result The characters are file permissions, and each group of three represents the read, write, and execute permissions of the owner, group members, and other users.

Can linux check and obtain file permissions?

#The operating environment of this tutorial: linux7.3 system, Dell G3 computer.

Linux can view and obtain file permissions

1. Use the cd command to move to the file path that needs to be queried

Can linux check and obtain file permissions?

2. Use the command ls -l can check the file permissions. The output example is as follows

Can linux check and obtain file permissions?

The 9 characters to the right of the first character are the file permissions. Each group of 3 represents the ownership. Read, write, and execute permissions for the owner, group members, and other users

  • r: Read permission

  • w: Write permission

  • x: Execute permission

  • -: No permission for this location

For example: rwxr-xr-x It means that the file owner has read, write, and execute permissions, group members have read and execute permissions, and other users have read and execute permissions.

Extended knowledge

File permissions

Linux maintains a set of permissions for each file File permissions are divided into three types: read, write, and execute. For different file types, the meaning of permissions is different, as follows

Ordinary files (non-directories): read permission allows the user to read the file, write permission allows the user to write the file, and execute permission allows the user to execute the file. For non-executable files, execute permission is useless. Permissions can be combined, for example, modifying a file requires read and write permissions, allowing scripts to require read and execute permissions.

Directory: Read permission allows users to read file names in the directory, write permission allows users to modify the directory, and execute permission allows users to search the directory.

There is also a special permission setuid, which allows ordinary users to have root permissions, such as the passwd program.

Root users can ignore permissions

Recommended learning: Linux video tutorial

The above is the detailed content of Can linux check and obtain file permissions?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!