From 03bbf0a042afbc031c3bcbaaed32d8765543e558 Mon Sep 17 00:00:00 2001 From: Rody10 <36506046+Rody10@users.noreply.github.com> Date: Fri, 3 May 2024 14:05:02 +0200 Subject: [PATCH] Fixed a spelling mistake. Line 164 under Excercise 1 of Lab 6: User and group management has a spelling error. It says "... makes the system vulnerable, securityi-wise." instead of "... makes the system vulnerable, security-wise." --- .../systems_administration_I/lab6-user_and_group_management.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/labs/systems_administration_I/lab6-user_and_group_management.md b/docs/labs/systems_administration_I/lab6-user_and_group_management.md index 96307256fd..1f7ed027a4 100644 --- a/docs/labs/systems_administration_I/lab6-user_and_group_management.md +++ b/docs/labs/systems_administration_I/lab6-user_and_group_management.md @@ -161,7 +161,7 @@ Some common utilities used in the day-to-day user and group management tasks are ### Manually creating a new user -So far, throughout the previous labs, you have been using the system as the most powerful user on the system – the `root` user. This is not good practice in a production system because it makes the system vulnerable, securityi-wise. The root user can, do and undo unlimited damage to the system. +So far, throughout the previous labs, you have been using the system as the most powerful user on the system – the `root` user. This is not good practice in a production system because it makes the system vulnerable, security-wise. The root user can, do and undo unlimited damage to the system. Other than the superuser, every other user has limited access to files and directories. Always use your machine as a normal user. Two confusing concepts will be made clear here.