From c6648655cfa253022ef4b17e8df764ae433259c1 Mon Sep 17 00:00:00 2001 From: Andrei Patru Date: Wed, 1 May 2024 17:12:27 +0200 Subject: [PATCH] Update 100-permissions.md fix incorrect sentence --- .../linux/content/103-working-with-files/100-permissions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/roadmaps/linux/content/103-working-with-files/100-permissions.md b/src/data/roadmaps/linux/content/103-working-with-files/100-permissions.md index 8d6756cad..da9e21868 100644 --- a/src/data/roadmaps/linux/content/103-working-with-files/100-permissions.md +++ b/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 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: @@ -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 permissions can be changed using the `chmod`, `chown`, and `chgrp` commands. \ No newline at end of file +The permissions can be changed using the `chmod`, `chown`, and `chgrp` commands.