If you need to see all of the groups assigned to a user simply type the following into the Terminal:
groups username
To display all the groups on your Ubuntu system just type:
groups
If you need to see all of the groups assigned to a user simply type the following into the Terminal:
groups username
To display all the groups on your Ubuntu system just type:
groups
3 replies on “How to list all of a users groups in Ubuntu”
The above is partially incorrect. “groups” entered on its own on the command line only shows the groups to which the current process belongs. To list all groups on the system, try:
cat /etc/group
Thanks Scott
/etc/group will give you the groups on the system BUT does not contain ALL information pertaining to which users are associated to which groups. It doesn’t contain the information around a user’s primary group. So if my user nevyn has a primary group of “finance”, you won’t find nevyn listed next to finance in /etc/group. Instead, this information is stored in /etc/passwd.