How to set file permissions on Linux
In the Linux system, file permissions are very important, which determines the user's access level to the file. File permissions are divided into three parts: Owner, Group, and Others. By setting appropriate file permissions, you can ensure that only authorized users can access or modify files. The following will introduce how to set file permissions on Linux and provide some example code for reference.
View current file permissions
Before starting to set file permissions, we need to check the permissions of the current file. You can use the ls -l
command to list detailed file information, including file permission information. For example, if we want to view the permissions of file example.txt
, we can run the following command:
ls -l example.txt
This will output something similar to the following:
-rw-r--r-- 1 user group 0 Jan 1 2022 example.txt
where, rw-r--r--
indicates the permissions of the file. The first character -
indicates that this is an ordinary file. If it is a directory, it is displayed as d
. The next three characters rw-
represent the permissions of the file owner, the next three characters r--
represent the permissions of the group to which the file belongs, and the last three characters r--
indicates the permissions of others.
Set file permissions
Setting file permissions mainly uses the chmod
command. The basic syntax of the chmod
command is:
chmod [权限模式] 文件名
Permission mode can be expressed using numeric mode or symbolic mode.
#Set permissions using numeric mode
Numeric mode is the most common way to set file permissions. Each file permission is represented by a number, read permission is 4, write permission is 2, and execute permission is 1. Permissions for owners, groups, and others are represented by three digits. For example, to set the permissions of file example.txt
to read-write for the owner, and read-only for the group and others, you can run the following command:
chmod 644 example.txt
This will change the file ## The permissions of #example.txt are set to
-rw-r--r--.
Symbolic mode is more intuitive and easy to remember, it uses plus sign () and minus sign (-) to add and remove permissions. Here are some examples of symbolic patterns:
means add permissions.
means delete permission.
means read permission,
w means write permission,
x means execution permission.
for owner,
g for group,
o for others,
a means everyone.
example.txt to be writable by the owner and read-only by the group and others, you can run the following command:
chmod u+w,go-w example.txt
example.txt to
-rw-r--r--.
chmod 644 example.txt
chmod 755 script.sh
chmod +x script.sh
chmod o-w example.txt
File permissions play a vital role in Linux systems. By correctly setting file permissions, you can ensure the security and accessibility of files. This article explains how to set file permissions on Linux and provides some example code for reference. By learning and mastering how to set file permissions, you can better protect file security.
The above is the detailed content of How to set file permissions on Linux. For more information, please follow other related articles on the PHP Chinese website!