summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source/_posts/adding_a_user_in_arch_linux.md19
1 files changed, 17 insertions, 2 deletions
diff --git a/source/_posts/adding_a_user_in_arch_linux.md b/source/_posts/adding_a_user_in_arch_linux.md
index 4e46764..c647d53 100644
--- a/source/_posts/adding_a_user_in_arch_linux.md
+++ b/source/_posts/adding_a_user_in_arch_linux.md
@@ -17,9 +17,9 @@ I used the below options with the command.
- *-m* Create the home directory for this account.
- *-s /bin/bash* Make *bash* the login shell for this account.
-- *david* The name of the new user.
+- *david* The name of the new user.
-This creates a new account for me and also ensures that a home directory is created as */home/david*.
+This creates a new account for me and also ensures that a home directory is created as */home/david*.
The new account will require a password so assign one with the *passwd* command.
@@ -30,3 +30,18 @@ New password:
Retype new password:
passwd: password updated successfully
```
+
+Now all I have to do is logout of the root account.
+
+```shell
+$ logout
+```
+
+Then login with the new credentials to confirm that everything is okay.
+
+```shell
+suliman login: david
+Password:
+
+david@suliman:$
+```