mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-31 16:42:03 +00:00
30 lines
557 B
Plaintext
30 lines
557 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# gpasswd
|
|
|
|
> Administer `/etc/group` and `/etc/gshadow`.
|
|
> More information: <https://manned.org/gpasswd>.
|
|
|
|
- Define group administrators:
|
|
|
|
`sudo gpasswd -A {{user1,user2}} {{group}}`
|
|
|
|
- Set the list of group members:
|
|
|
|
`sudo gpasswd -M {{user1,user2}} {{group}}`
|
|
|
|
- Create a password for the named group:
|
|
|
|
`gpasswd {{group}}`
|
|
|
|
- Add a user to the named group:
|
|
|
|
`gpasswd -a {{user}} {{group}}`
|
|
|
|
- Remove a user from the named group:
|
|
|
|
`gpasswd -d {{user}} {{group}}`
|