- Linux / Unix id Command Examples
- Purpose
- id command syntax
- Linux / Unix id command examples
- Display your own UID and GID
- How do I find a specific user’s UID?
- How do I find a specific user’s GID?
- How do I see the UID and all groups associated with a user name?
- Find out all the groups a user belongs to…
- Display a name instead of a UID/GID
- How do I display real ID instead of the effective ID for specified user?
- Как вывести список групп в Linux
- Группы Linux
- Список всех групп, членом которых является пользователь
- Использование команды groups
- Используя команду id
- Список всех участников группы
- Список всех групп
- Выводы
- Linux id Command — Print user ID and group ID information
- What is id command
- How to use it
- Using id with options
- Print user name, UID an all the group to which the user belongs
- Output all different group IDs (effective, real and supplementary)
- Output only the effective group ID
- Print the specific user information
- Conclusion
- Список групп пользователя Linux
- Список групп пользователя Linux
- Выводы
- Linux Show The Groups a User Is In
- Example
- How Do I Find Out My Primary Group Membership?
Linux / Unix id Command Examples
I am a new Linux and Unix system user. How do I find out the user and groups names and numeric IDs of the current user or any users on my server? How can I display and effective IDs on the system using command line options? In Linux, how do I find a user’s UID or GID?
To find a user’s UID (user ID) or GID (group ID) and other information in Linux/Unix-like operating systems, use the id command.
id command details | |
---|---|
Description | Get user identity |
Category | N/A |
Difficulty | Easy |
Root privileges | No |
Est. reading time | 5m |
Table of contents
|
Purpose
Displays the system identifications of a specified user.
id command syntax
The basic syntax is:
id
id [UserNameHere] id [options] id [options] [UserNameHere]
By default id command shows the the user and group names and numeric IDs, of the calling process i.e. the current user who runs the id command on screen. If a login name or user ID ( [UserNameHere] ) given on command line, the user and group IDs of that user are displayed.
Linux / Unix id command examples
Let us see how to find a user’s UID or GID on Linux or Unix-like operating systems using 13 id command practical examples. First, open the Terminal application and then type:
Display your own UID and GID
Type the command:
id
Sample outputs:
Fig. 01: id command in action
How do I find a specific user’s UID?
In this example, find a vivek user’s UID, type:
id -u
id -u vivek
Sample outputs:
How do I find a specific user’s GID?
In this example, find a vivek user’s GID, run:
id -g
id -g vivek
Sample outputs:
How do I see the UID and all groups associated with a user name?
In this example, find the UID and all groups associated with a user called ‘root’, enter:
id
id root
Sample outputs:
Find out all the groups a user belongs to…
In this example, display the UID and all groups associated (secondary groups) with a user called ‘vivek’, run:
id -G
id -G vivek
Sample outputs
Display a name instead of a UID/GID
By default, id command displays number for the -G , -g and -u options. You can force id command to display the name of the UID or GID instead of the number for the -G , -g and -u options by passing the -n option as follows:
id -ng
id -nu
id -nG
id -nG vivek
Sample outputs:
How do I display real ID instead of the effective ID for specified user?
You can show the real ID for the -g , -G and -u options instead of the effective ID by passing the -r option:
Источник
Как вывести список групп в 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 id Command — Print user ID and group ID information
To log in into a computer, we need a username. Username is an identity to recognized by a computer. Based on it, the computer will apply a set of rules to a someone that log in with that username. In this article, I will show you how to use Linux id command.
What is id command
id command is command which can print real and effective User ID (UID) and Group ID (GID). An UID is a single identity for a user. While Group ID (GID) can consist of more than one UID.
How to use it
By default, id command is installed on most of Linux system. To use it, just type id on your console. Typing id without no options will result as below. The result will use the active user.
Here’s how to read the output :
- User pungki has UID number = 1000, GID number = 1000
- User pungki is a member of the following groups :
pungki
1000
adm
4
cdrom
24
sudo
27
dip
30
plugdev
46
lpadmin
108
sambashare
124
Using id with options
There are some options that can be applied to id command. Here’s some options that may useful on day-to-day basis.
Print user name, UID an all the group to which the user belongs
To do this, we can use -a option
Output all different group IDs (effective, real and supplementary)
We can use -G option to do fulfill this.
The result will only show the GID numbers. You can compare it with /etc/group file. Here’s a sample of /etc/group content :
Output only the effective group ID
Use -g option to output only the effective group ID
Print the specific user information
We can output a specific user information related UID and GID. Just put the user name after id command.
Above command will print UID and GID of user named leni.
Conclusion
This id command is useful for us when we want to know about UID and GID of a user. Some applications may need UID / GID to be run. id make us easier to find UID and GID of a user without seeing and searching it inside /etc/group file. As usual, you can go to id manual page by typing man id from your console to explore more detail.
Источник
Список групп пользователя Linux
В операционных системах семейства Linux у пользователя есть основная группа, а также определённое количество дополнительных групп. Это удачное, стратегически продуманное решение. С помощью этих групп можно давать пользователю доступ к нужным файлам в системе, не давая ему прав владельца этими файлами и не открывая для них общий доступ.
Более подробно про использование групп читайте в статье группы в Linux, а в этой заметке мы поговорим о том, как посмотреть список групп пользователя Linux.
Список групп пользователя Linux
Вы можете посмотреть список групп пользователя Linux двумя основными способами. Это команда id, которую мы уже разбирали в статье о том, как узнать id пользователя Linux, и команда groups. Чтобы вывести всю информацию о пользователе, используйте id:
Чтобы вывести только список групп текущего пользователя, необходимо использовать опцию -G:
Команда выводит идентификаторы групп, если вы хотите получить их имена, то необходимо добавить опцию -n:
Если надо узнать список групп для определённого пользователя, просто передайте его имя в качестве параметра:
id -Gn имя_пользователя
Следующий вариант просмотра списка групп — команда groups:
И точно также можно узнать группу пользователя Linux, передав его имя команде:
Ещё можно посчитать количество групп, в которых состоит пользователь Linux:
Выводы
Как видите, всё очень просто. Вы можете буквально с помощью одной команды посмотреть группы пользователей Linux, причём не только для текущего пользователя, а для всех, кто вас интересует. Если у вас остались вопросы, спрашивайте в комментариях!
Источник
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
Источник