- Как вывести список групп в Linux
- Группы Linux
- Список всех групп, членом которых является пользователь
- Использование команды groups
- Используя команду id
- Список всех участников группы
- Список всех групп
- Выводы
- Linux Show The Groups a User Is In
- Example
- How Do I Find Out My Primary Group Membership?
- Linux Show All Members of a Group Command
- Linux Show All Members of a Group Commands
- Linux: List all members of a group using /etc/group file
- Display group memberships for each Linux user
- Linux List all members of a group using members command
- How to list all users in a Linux group using lid command
- To see users contained in group named ‘ftponly’:
- To show information about groups containing user named ‘nixcraft’:
- How to list groups in Linux
- Conclusion
- UNIX / Linux Command To Check Existing Groups and Users
- Method #1: getent command to lookup username and group name
- Method #2: Find out if user exists in /etc/passwd file
- Use awk command to search user name
- Find out if group exists in /etc/group file
- Say hello to id command
- How to list all users under Linux or Unix
- Summing up
Как вывести список групп в Linux
В Linux группа — это совокупность пользователей. Основная цель групп — определить набор привилегий, таких как разрешение на чтение, запись или выполнение для данного ресурса, которые могут быть совместно использованы пользователями внутри группы. Пользователи могут быть добавлены в существующую группу, чтобы использовать предоставляемые ею привилегии.
В этом руководстве объясняется, как показать все группы, в которые входит пользователь. Мы также объясним, как составить список всех членов группы.
Группы Linux
Пользователь может принадлежать к двум типам групп:
Первичная группа или группа входа в систему — это группа, которая назначается файлам, создаваемым пользователем. Обычно имя основной группы совпадает с именем пользователя. Каждый пользователь должен принадлежать ровно к одной основной группе.
Вторичная или дополнительная группа — используется для предоставления определенных привилегий набору пользователей. Пользователь может быть участником нуля или нескольких вторичных групп.
Список всех групп, членом которых является пользователь
Есть несколько способов узнать, к каким группам принадлежит пользователь.
Основная группа пользователей хранится в /etc/passwd а дополнительные группы, если таковые имеются, перечислены в /etc/group .
Один из способов найти группы пользователей — перечислить содержимое этих файлов с помощью cat , less или grep . Другой более простой вариант — использовать команду, цель которой — предоставить информацию о пользователях и группах системы.
Использование команды groups
Самая запоминающаяся команда для вывода списка всех групп, членом которых является пользователь, — это команда groups . При выполнении без аргумента команда распечатает список всех групп, к которым принадлежит текущий зарегистрированный пользователь:
Первая группа — это основная группа.
Чтобы получить список всех групп, к которым принадлежит конкретный пользователь, укажите имя пользователя для команды groups в качестве аргумента:
Как и раньше, первая группа является первичной.
Используя команду id
Команда id выводит информацию об указанном пользователе и его группах. Если имя пользователя не указано, отображается информация для текущего пользователя.
Например, чтобы получить информацию о пользователе linuxize вы должны ввести:
Команда покажет идентификатор пользователя ( uid ), основную группу пользователя ( gid ) и вторичные группы ( groups ) пользователя.
Чтобы напечатать только имена вместо чисел, используйте параметр -n . Опция -g выведет только основную группу и -G все группы.
Следующая команда напечатает имена групп, членом которых является текущий пользователь:
Список всех участников группы
Чтобы getent group список всех членов группы, используйте команду getent group за которой следует имя группы.
Например, чтобы узнать членов группы с именем « developers , воспользуйтесь следующей командой:
Если группа существует, команда напечатает группу и всех ее членов:
Если нет вывода, это означает, что группа не существует.
Список всех групп
Чтобы просмотреть все группы, присутствующие в системе, просто откройте файл /etc/group . Каждая строка в этом файле представляет информацию для одной группы.
Другой вариант — использовать команду getent которая отображает записи из баз данных, настроенных в файле /etc/nsswitch.conf включая базу данных group которую мы можем использовать для запроса списка всех групп.
Чтобы получить список всех групп, введите следующую команду:
Вывод такой же, как при отображении содержимого файла /etc/group . Если вы используете LDAP для аутентификации пользователя, getent отобразит все группы как из файла /etc/group и из базы данных LDAP.
Вы также можете использовать awk или cut для печати только первого поля, содержащего имя группы:
Выводы
В этом руководстве вы узнали, как найти группы, членом которых является пользователь. Те же команды применимы для любого дистрибутива Linux, включая Ubuntu, CentOS, RHEL, Debian и Linux Mint.
Не стесняйтесь оставлять комментарии, если у вас есть вопросы.
Источник
Linux Show The Groups a User Is In
Example
pen a command-line terminal (select Applications > Accessories > Terminal), and then type:
$ groups
Sample outputs:
You are part of all of the above groups. To find group memebership for root user, enter:
$ groups root
Sample outputs:
Please note that (from the groups man page):
Primary and supplementary groups for a process are normally inherited from its parent and are usually unchanged since login. This means that if you change the group database after logging in, groups will not reflect your changes within your existing login session. Running `groups’ with a list of users causes the user and group database to be consulted afresh, and so will give a different result.
You can also use the id command as follows to get the same information:
$ id -Gn
$ id -Gn userName
$ id -Gn vivek
- No ads and tracking
- In-depth guides for developers and sysadmins at Opensourceflare✨
- Join my Patreon to support independent content creators and start reading latest guides:
- How to set up Redis sentinel cluster on Ubuntu or Debian Linux
- How To Set Up SSH Keys With YubiKey as two-factor authentication (U2F/FIDO2)
- How to set up Mariadb Galera cluster on Ubuntu or Debian Linux
- A podman tutorial for beginners – part I (run Linux containers without Docker and in daemonless mode)
- How to protect Linux against rogue USB devices using USBGuard
Join Patreon ➔
How Do I Find Out My Primary Group Membership?
Type the following command:
$ getent group userName
$ getent group vivek
Sample outputs:
In this example, user vivek has group id # 1000 and has group name vivek for primary group membership.
🐧 Get the latest tutorials on Linux, Open Source & DevOps via
Источник
Linux Show All Members of a Group Command
Linux Show All Members of a Group Commands
- /etc/group file – User group file
- members command – List members of a group
- lid command (or libuser-lid on newer Linux distros) – List user’s groups or group’s users
Tutorial details | |
---|---|
Difficulty level | Easy |
Root privileges | Yes |
Requirements | None |
Est. reading time | 1m |
There are two types of groups in Linux:
- Primary group – is the main group that is associated with user account. Each user is a member of exactly one primary group.
- Secondary group – used to provide additional rights to user. For example, access to the dvd/cdrom drive can be granted with help of cdrom group.
Linux: List all members of a group using /etc/group file
Use the grep command or cat command/more command as follows:
$ grep ‘grpup-name-here’ /etc/group
$ grep ‘ftponly’ /etc/group
$ cat /etc/group
$ less /etc/group
$ grep -i —color ‘ftponly’ /etc/group
We can also type the compgen command or getend command to list all group names on Linux:
$ compgen -g
$ getent group
To get just a list of all members of a group called ftponly , type the following awk command:
Display group memberships for each Linux user
Want to see group memberships for each given USERNAME under Linux? The syntax is as follows for the groups command:
groups
groups
groups vivek
The following outputs indicates that the user named ‘vivek’ is part of four groups including ‘vivek’ primary group:
Linux List all members of a group using members command
Warning: members command is not installed on most Linux distros. Use yum command or apt-get command/apt command to install the same:
$ sudo apt-get install members
To outputs members of a group called ftponly, enter:
$ members
$ members ftponly
Fig. 01: members command in action to list members in a group
How to list all users in a Linux group using lid command
You can displays information about groups containing user name, or users contained in group name using lid command as follows.
Warning: lid command is not installed on most distros. Use yum command or apt-get command to install the same:
$ sudo apt-get install libuser
To see users contained in group named ‘ftponly’:
# lid -g ftponly
Please note that newer version of libuser renamed the lid command to libuser-lid . Thus, use it as follows:
$ sudo libuser-lid -g ftponly
Sample outputs:
To show information about groups containing user named ‘nixcraft’:
Use lid command or libuser-lid command on Linux to show all members of a group named nixcraft:
# lid nixcraft
OR
$ sudo libuser-lid nixcraft
Sample outputs:
See lid command man page for more information.
How to list groups in Linux
To see all users, run less command/more command:
less /etc/group
OR
more /etc/group
Another option is to type the following getent command:
getent group
For example, locate the members of a group with the name vboxusers, run:
getent group vboxusers
Sample outputs indicating vivek and raj users are part of vboxusers group:
- No ads and tracking
- In-depth guides for developers and sysadmins at Opensourceflare✨
- Join my Patreon to support independent content creators and start reading latest guides:
- How to set up Redis sentinel cluster on Ubuntu or Debian Linux
- How To Set Up SSH Keys With YubiKey as two-factor authentication (U2F/FIDO2)
- How to set up Mariadb Galera cluster on Ubuntu or Debian Linux
- A podman tutorial for beginners – part I (run Linux containers without Docker and in daemonless mode)
- How to protect Linux against rogue USB devices using USBGuard
Join Patreon ➔
Finally, you can use the id command to display real and effective user and group IDs:
id
id vivek
id -nG raj # show all group IDs for raj user
id -ng raj # show only effective group ID for raj user
Conclusion
Now you know how to use various Linux commands to show all members of a group. I suggest you read the man pages for more info by typing the following man command:
$ man libuser-lid
$ man members
🐧 Get the latest tutorials on Linux, Open Source & DevOps via
Источник
UNIX / Linux Command To Check Existing Groups and Users
H ow do I check the existing Linux / UNIX users and groups under Linux operating system?
You can easily check the existing users and groups under a Linux or Unix-like systems such as HP-UX, AIX, FreeBSD, Apple macOS/OS X and more using the following commands:
Tutorial details | |
---|---|
Difficulty level | Easy |
Root privileges | No |
Requirements | Linux or Unix terminal |
Est. reading time | 3 minutes |
- getent command : Fetch details for a particular user or group from a number of important text files called databases on a Linux or Unix-like systems. This is portable and recommended way to get information on users and groups.
- Directly query /etc/passwd for user names or /etc/group file for group names using the grep command/egrep command, and awk command.
Let us see how to check for existing groups and users on Linux and Unix-like systems using command-line.
Method #1: getent command to lookup username and group name
The syntax is as follows to find out if user named foo exists in system:
The syntax is as follows to find out if group named bar exists in system:
Sample demo of all commands:
Fig.01: getent and friends demo on a Linux or Unix system to find out user and group names
Method #2: Find out if user exists in /etc/passwd file
The /etc/passwd file stores essential information required during login. All you have to do is search this file for user name using the following syntax using grep command grep username /etc/passwd
OR we can use the egrep command too:
egrep -i «^ username » /etc/passwd
# search for multiple users
egrep -i «^ username1|username2 » /etc/passwd
For example, find out if vivek user exists or not, enter:
$ egrep -i «^vivek» /etc/passwd
OR
$ egrep -i «^vivek:» /etc/passwd
Sample outputs:
- No ads and tracking
- In-depth guides for developers and sysadmins at Opensourceflare✨
- Join my Patreon to support independent content creators and start reading latest guides:
- How to set up Redis sentinel cluster on Ubuntu or Debian Linux
- How To Set Up SSH Keys With YubiKey as two-factor authentication (U2F/FIDO2)
- How to set up Mariadb Galera cluster on Ubuntu or Debian Linux
- A podman tutorial for beginners – part I (run Linux containers without Docker and in daemonless mode)
- How to protect Linux against rogue USB devices using USBGuard
Join Patreon ➔
A quick shell script code:
Normally, exit status is 0 returned if user accounts (lines) are found and 1 otherwise.
Use awk command to search user name
The syntax is as follows to search user named ‘apache’
Find out if group exists in /etc/group file
The /etc/group is an text file which defines the groups to which users belong under Linux and UNIX operating system. Again, you have to search /etc/group file using following syntax:
$ egrep -i «^ groupname » /etc/group
For, example find out if vivek group exists or not, enter:
$ egrep -i «^vivek» /etc/group
# look for vivek or sudo group in /etc/group
$ egrep -i «^(vivek|sudo)» /etc/group
Say hello to id command
The id command is another option to display user / group information for any USERNAME, or the current user. To find out more about user called, tom, enter:
$ id tom
Sample outputs:
id command exit status is 0 returned if user accounts (lines) are found and 1 otherwise. A sample shell script using id command:
How to list all users under Linux or Unix
Try the following syntax:
more /etc/passwd
more /etc/group
Summing up
We explained various Linux and Unix commands that one can use to search for existing users and group in /etc/passwd and /etc/group files, respectively. Make sure you check out the following man pages using the man command:
🐧 Get the latest tutorials on Linux, Open Source & DevOps via
Category | List of Unix and Linux commands |
---|---|
Documentation | help • mandb • man • pinfo |
Disk space analyzers | df • duf • ncdu • pydf |
File Management | cat • cp • less • mkdir • more • tree |
Firewall | Alpine Awall • CentOS 8 • OpenSUSE • RHEL 8 • Ubuntu 16.04 • Ubuntu 18.04 • Ubuntu 20.04 |
Linux Desktop Apps | Skype • Spotify • VLC 3 |
Modern utilities | bat • exa |
Network Utilities | NetHogs • dig • host • ip • nmap |
OpenVPN | CentOS 7 • CentOS 8 • Debian 10 • Debian 8/9 • Ubuntu 18.04 • Ubuntu 20.04 |
Package Manager | apk • apt |
Processes Management | bg • chroot • cron • disown • fg • glances • gtop • jobs • killall • kill • pidof • pstree • pwdx • time • vtop |
Searching | ag • grep • whereis • which |
Shell builtins | compgen • echo • printf |
Text processing | cut • rev |
User Information | groups • id • lastcomm • last • lid/libuser-lid • logname • members • users • whoami • who • w |
WireGuard VPN | Alpine • CentOS 8 • Debian 10 • Firewall • Ubuntu 20.04 |
Comments on this entry are closed.
don’t forget the “:” after the username otherwise you could end up with this scenario:
$ egrep -i “^vivek” /etc/passwd
vivek:x:1000:1000:Vivek Gite. /home/vivek:/bin/bash
viveks:x:1001:1001:Vivek Smith. /home/viveks:/bin/bash
I really wish the author would update the article to include that because you know 7 years later and still no fix? Worse yet, it’s the first Google search result for “linux check if group exists”.
If you are using NIS do the following:
ypcat passwd | grep vivek
The ‘id’ command should be demonstrated first in this tutorial, as systems using LDAP (other or remote authentication services) will not have users in the local
Also why the uses of egrep when a simple grep will do. Keep it simple for the beginners your aiming at.
You should look at getent rather than grepping the local files. “getent passwd” or “getent group” will provide a unified view of users or groups available, respecting your NSS (Name Service Switch) configuration (which is important when you have additional users or groups via LDAP or NIS).
hey Vivek, that was cool..
many of us surely wont care if its grep or egrep ( or fgrep) as long as it does the job and we are taught these wonderful tricks..
Can you please tell me a command to list all of existing user ?
U can try
egrep “*” /etc/passwd
or
egrep “?” /etc/passwd
Very nice site, I could get, what i want in seconds rather than in minutes
`id` comand does not check if groups exist.
`man id`
Print user and group information for the specified USERNAME
the -g flag prints out the primary group id for the user
have you find any solution for that?
Hello
Linux Gurus,
Is there a Command to find out user creation date ?
or any other possible ways to find the same.
please help me
Its urgent.
Thanks In Advance
please tell everyone you ask.
no way to list the user is not disabled in linux.
and has been in how long dis.
The grep approaches are all wrong. You are assuming that an user won’t pick a name that is a started substring of an existing group. Even worse, if you choose to limit the ‘username’ string you could match a group instead of a user. You will mistakenly get output from the script thinking that the user ‘apache’ (or whatever) exists…
You can’t play with strings without semantics. You need a tool that in fact *knows* that what you are talking about is indeed a user.
The best approach for not playing with strings semantics is the id command:
NAME
id – print real and effective user and group IDs
As davidhi mentioned
Using getent is a much better solution in my opinion
# search for user named ‘vivek’
getent passwd vivek
#search for group named ‘vivek’
getent group vivek
Источник