Update modules/ROOT/pages/getting-started-guide.adoc

This commit is contained in:
Tamerlan Bimzhanov 2023-04-03 16:23:41 +00:00
parent 77e9e28ca1
commit acc140b900

View file

@ -44,7 +44,7 @@ This section explains concepts about Linux and how it works, which help make it
By default Linux creates the `root` user account. It is the highest level account on the system and is used for administration. It gives the user full permission to modify files, and start and stop critical programs (called processes) on the system. It is a security feature in Linux that limits normal user privileges only to those required for normal tasks.
For security reasons, the root account is disabled by default on Fedora Workstation. Instead, the default user will be added to the group 'wheel'. Members of this group are able to acquire root permissions using the 'sudo' command. Whenever this user wants to make a system-wide change, such as stopping a fundamental program like the web server (hhtpd), the corresponding command is preceded by a sudo, e.g. `sudo systemd stop httpd`. The sudo then asks for the password of the user, not of root.
For security reasons, the root account is disabled by default on Fedora Workstation. Instead, the default user will be added to the group 'wheel'. Members of this group are able to acquire root permissions using the 'sudo' command. Whenever this user wants to make a system-wide change, such as stopping a fundamental program like the web server (httpd), the corresponding command is preceded by a sudo, e.g. `sudo systemd stop httpd`. The sudo then asks for the password of the user, not of root.
Always when making system-wide changes, such as installing new software or starting/stopping fundamental programs required by the operating system. The user is prompted for the root password