Do the following:

  1. Add group:

    sudo addgroup staff
    
  2. Add user to group:

    sudo adduser mike staff
    
  3. Give group access to folder:

    sudo chgrp -R staff /home/Clients
    
  4. Set permissions on folder:

    sudo chmod -R 775 /home/Clients
    
  5. Make all folders subsequently created inside /home/Clients to be owned by group staff:

    sudo setfacl -dR -m g:staff:rwx /home/Clients
    
Answer from George Udosen on askubuntu.com
🌐
Linuxize
linuxize.com › home › linux commands › how to create groups in linux: groupadd command
How to Create Groups in Linux: groupadd Command | Linuxize
February 26, 2026 - This guide explains how to create groups in Linux using the groupadd command, including how to set a custom GID, create system groups, and manage group options.
🌐
GeeksforGeeks
geeksforgeeks.org › linux-unix › groupadd-command-in-linux-with-examples
groupadd Command in Linux - GeeksforGeeks
May 18, 2026 - The -g option allows you to assign a specific numeric GID (Group ID) to the new group instead of letting the system auto-assign one. This is useful when you need consistent GIDs across multiple servers or shared file systems. ... This command will create a new group named "developer" with a GID of 2000.
Discussions

Arch Linux ARM Tutorial Part 2: Installing Sudo
Cool! I don't have a need for this but contributing info to online places is great! What's the advantage of doing all this? Just to learn or something else? More on reddit.com
🌐 r/raspberry_pi
2
21
July 13, 2016
signal-cli is a commandline interface for Signal (libsignal-service-java) and supports registering, verifying, sending and receiving messages
I have no desire to start using signal after seeing how Moxie hadles third party shit and how much he loves centralization. More on reddit.com
🌐 r/linux
18
72
September 4, 2016
Linux IOMMU group binding command line tool

In the readme you give a example for a network device but since gpus do not have a identifier, how do I passthrough gpus with your tool?

More on reddit.com
🌐 r/VFIO
5
37
May 4, 2020
Recommended user groups for first install

Thanks to systemd you shouldn't have to add your user to much, maybe wheel is all you need.

Here is a list of the standard groups: https://wiki.archlinux.org/index.php/Users_and_groups#Group_list

More on reddit.com
🌐 r/archlinux
7
4
March 7, 2019
People also ask

How do I delete a group in Linux?
Use the `groupdel GROUPNAME` command. See how to delete a group in Linux for the full guide.
🌐
linuxize.com
linuxize.com › home › linux commands › how to create groups in linux: groupadd command
How to Create Groups in Linux: groupadd Command | Linuxize
How do I add a user to a group after creating it?
Use the `usermod -aG GROUPNAME USERNAME` command. The `-a` flag appends the group without removing existing memberships. See how to add a user to a group for more details.
🌐
linuxize.com
linuxize.com › home › linux commands › how to create groups in linux: groupadd command
How to Create Groups in Linux: groupadd Command | Linuxize
How do I find what GID was assigned to a new group?
Run `getent group GROUPNAME` or `grep GROUPNAME /etc/group`. The third field in the output is the GID. You can also use the id command to verify a user's group memberships.
🌐
linuxize.com
linuxize.com › home › linux commands › how to create groups in linux: groupadd command
How to Create Groups in Linux: groupadd Command | Linuxize
🌐
TechRepublic
techrepublic.com › home › open source
How to Create Users and Groups in Linux from the Command Line
December 12, 2024 - Here's a quick guide to adding users and groups, and then how to add users to groups, all from the command line on the Linux platform.
🌐
Hivelocity
hivelocity.net › home › knowledge base articles › how to create a group in linux
How to Create a Group in Linux - Hivelocity Hosting
December 5, 2023 - The command will look like: groupadd <NewGroup> So, if you wanted to add a group called NewGroup1, you would use the command: groupadd NewGroup1 *Note: if the new group you are attempting to create already exists, Linux will return an error ...
🌐
ZDNET
zdnet.com › home › tech › services & software › operating systems › linux
How to create users and groups in Linux from the command line | ZDNET
July 26, 2022 - The adduser command also automatically creates a home directory for the new user (unlike the useradd command which requires the -m option to create the home directory). Next, we'll create a new group.
Find elsewhere
🌐
GeeksforGeeks
geeksforgeeks.org › groupadd-command-in-linux-with-examples
How to Create a new group in Linux | groupadd command - GeeksforGeeks
September 15, 2024 - Launch a terminal on your Linux system. This can usually be done by pressing `Ctrl + Alt + T` or searching for "Terminal" in the application menu. To create a new group, type the following command in the terminal:
🌐
How-To Geek
howtogeek.com › home › linux › add a user to a group (or second group) on linux
Add a User to a Group (or Second Group) on Linux
September 18, 2025 - If you want to create a new group on your system, use the following groupadd command, replacing new_group with the name of the group you want to create. You'll need to use sudo with this command as well (or, on Linux distributions that don't ...
🌐
Warp
warp.dev › terminus by warp › linux › create groups in linux
How To Create Groups In Linux | Warp
July 26, 2024 - To add a user to one or more secondary groups, you can use the usermod command with the -a flag (short for --append) and -G flag (short for --groups) as follows: ... You can learn more about managing users by reading our other article on how ...
🌐
Linux Man Pages
linux.die.net › man › 8 › groupadd
groupadd(8): create new group - Linux man page
The groupadd command creates a new group account using the values specified on the command line plus the default values from the system.
🌐
eUKhost
eukhost.com › home › how to create a group in linux
Create Group in Linux (groupadd Command & Add Group Guide)
December 8, 2023 - Create and add groups in Linux using the groupadd command. Step-by-step guide with examples to manage user groups easily.
🌐
Scaler
scaler.com › home › topics › how to create groups in linux?
How to Create Groups in Linux? - Scaler Topics
July 21, 2023 - In this article, we will explore the process of creating groups in Linux, along with various options and scenarios. In the context of the topic, linux adds groups, and the primary command used to create groups in Linux is groupadd. It allows you to create new groups with ease.
🌐
TechOnTheNet
techonthenet.com › linux › sysadmin › ubuntu › create_group_14_04.php
Linux: How to Create a Group in Ubuntu Linux Server 14.04 LTS
In this Linux system administration ... Groups must be created first before you can assign a user to that group. To add a new group, you will use the groupadd command....
🌐
Red Hat
redhat.com › en › blog › linux-groups
How to create, delete, and modify groups in Linux
November 21, 2025 - To add a group in Linux, use the groupadd command: ... When a group is created, a unique group ID gets assigned to that group.
🌐
GeeksforGeeks
geeksforgeeks.org › linux-unix › addgroup-command-in-linux-with-examples
addgroup command in Linux with Examples - GeeksforGeeks
October 9, 2024 - If the addgroup tool is not already installed, you can install it based on your Linux distribution using one of the following commands ... To add a new group, simply use the addgroup command followed by the group name. ... This command will ...
🌐
Medium
medium.com › @mariammbello › user-and-group-management-in-linux-a-beginners-guide-2fce110bcbd1
User and Group Management in Linux: A Beginner’s Guide | by Mariam Musa-Bello | Medium
October 6, 2024 - To manage permissions for multiple users efficiently, we create groups. For the sake of this exercise, let’s create three groups: groupadmin, groupsupport, and groupengineering. ... groupadd: This command creates a new group.
🌐
LinuxVox
linuxvox.com › blog › how-to-create-groups-in-linux-groupadd-command
How to Create Groups in Linux (groupadd Command) — linuxvox.com
The primary command for creating groups in Linux is `groupadd`. This utility is straightforward yet powerful, offering various options to customize group creation, such as specifying group IDs (GIDs), creating system groups, and more. In this blog, we’ll dive deep into the `groupadd` command...
🌐
Host IT Smart
hostitsmart.com › manage › knowledgebase › 432 › create-new-group-in-linux.html
How to Create a New Group in Linux? (With Examples)
March 26, 2025 - To do this, you have to run the following command: This will display a list of all existing groups on the system. ... Now that you know the existing groups, let’s create a new one! To create a new group in Linux, you have to use the groupadd command followed by the group name.