Merge pull request #5582 from shto/patch-1

Fix type in copy
pull/5392/head
dsh 5 months ago committed by GitHub
commit 10287bd9a5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 4
      src/data/roadmaps/linux/content/103-working-with-files/100-permissions.md

@ -2,7 +2,7 @@
In Linux systems, rights and privileges are assigned to files and directories in the form of permissions. These permissions indicate who can read, write, or execute (run) them. In Linux, there are three types of users: owners, groups, and others who can have a different set of permissions. In Linux systems, rights and privileges are assigned to files and directories in the form of permissions. These permissions indicate who can read, write, or execute (run) them. In Linux, there are three types of users: owners, groups, and others who can have a different set of permissions.
In fact, permissions on the system are there for a reason: to prevent unprivileged users from making changes on the system that would ultimately affect other users. With adequate permissions, unprivileged users are able to make changes that would be beneficial or harmless to the Linux system. In fact, permissions on the system are there for a reason: to prevent unprivileged users from making changes on the system that would ultimately affect other users. With inadequate permissions, unprivileged users are able to make changes that would be beneficial or harmless to the Linux system.
Let's have a look at an example: Let's have a look at an example:
@ -14,4 +14,4 @@ From the above example, the first character `-` indicates if it is a regular fil
The `r` indicates that the file can be read, `w` indicates that the file can be written to, and `x` indicates that the file can be executed. The `r` indicates that the file can be read, `w` indicates that the file can be written to, and `x` indicates that the file can be executed.
The permissions can be changed using the `chmod`, `chown`, and `chgrp` commands. The permissions can be changed using the `chmod`, `chown`, and `chgrp` commands.

Loading…
Cancel
Save