From f44eb0db4088f3399d6b73f26dc6545c17ed296b Mon Sep 17 00:00:00 2001 From: aminnairi <18418459+aminnairi@users.noreply.github.com> Date: Mon, 10 Apr 2023 19:00:53 +0200 Subject: [PATCH] added instructions for creating the sudo group --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 9cf43d2..8258638 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,9 @@ useradd --create-home user # Add a password for the newly created user passwd user +# Add the sudo group +groupadd sudo + # Add the "sudo" group for the created user usermod --add --groups sudo user ```