Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions docs/desktop/gnome/user_and_group_account_management.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: How to Create New Users and Group Accounts
title: User and group account management
author: Sasheeny Hubbard
contributors: Steven Spencer
tested with: 9.4
Expand Down Expand Up @@ -75,7 +75,7 @@ Observe the addition of the new user to the list of users displayed under the **
cat /etc/passwd
```

#### Modify user account
### Modify user account

- Click the vertical ellipsis icon for the new user and then click **Edit user**

Expand All @@ -99,7 +99,7 @@ To add a user to a group do the following:

![img](images/user_group_acctmgt_images/14.png)

##### CLI method: adding a user to a group
#### CLI method: adding a user to a group

```text
sudo usermod -aG groupname username
Expand All @@ -111,13 +111,13 @@ To remove a user from a group:

![img](images/user_group_acctmgt_images/18.png)

##### CLI method: remove a user from a group
#### CLI method: remove a user from a group

```text
sudo gpasswd -d username groupname
```

#### Delete user account
### Delete user account

To delete a user account:

Expand All @@ -133,7 +133,7 @@ Or

![img](images/user_group_acctmgt_images/22.png)

##### CLI method: delete a user account
#### CLI method: delete a user account

```text
sudo userdel -d username groupname
Expand Down