added instructions for creating the sudo group

This commit is contained in:
aminnairi
2023-04-10 19:00:53 +02:00
parent 071d095140
commit f44eb0db40
+3
View File
@@ -23,6 +23,9 @@ useradd --create-home user
# Add a password for the newly created user # Add a password for the newly created user
passwd user passwd user
# Add the sudo group
groupadd sudo
# Add the "sudo" group for the created user # Add the "sudo" group for the created user
usermod --add --groups sudo user usermod --add --groups sudo user
``` ```