Home>Article>Operation and Maintenance> View user groups on Linux system

View user groups on Linux system

藏色散人
藏色散人 forward
2019-08-05 16:24:27 15547browse

How to view user groups in Linux system? Below I will introduce to you three ways to view user groups in Linux systems. For more Linux usage tutorials, you can learn more throughLinux Video Tutorial!

View user groups on Linux system

Method 1:groups command method, the groups command can view the user groups to which a user belongs

Just execute the groups command, You can check the groups to which the currently logged-in user of the system belongs

groups wuliang, to query the user groups of a specific user, just follow groups followed by the user name

Linux system checks which group the user belongs to

View user groups on Linux system

Method 2:View /etc/group Method

/etc/group is the user group configuration file. You can view this file and query a certain user through grep The user group to which a user belongs

cat /etc/group | grep wuliang

Method 3:id command method, the id command can also view the users to which a user belongs Group

Only execute the id command, you can view the user group of the currently logged in user in the system

id wuliang, to query the user group of a specific user, just follow the id with the user name

View user groups on Linux system

The above is the detailed content of View user groups on Linux system. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:learnku.com. If there is any infringement, please contact admin@php.cn delete