zoukankan      html  css  js  c++  java
  • Show The Groups a User Is In

    /etc/group is a text file which defines the groups on the system. You can use the groups command to display group memberships for any user using the following syntax.

     
    groups
    groups userName-Here
     

    Example

    pen a command-line terminal (select Applications > Accessories > Terminal), and then type:
    $ groups
    Sample outputs:

    vivek cdrom floppy audio dip video plugdev netdev bluetooth scanner

    You are part of all of the above groups. To find group memebership for root user, enter:
    $ groups root
    Sample outputs:

    root : root

    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

    How Do I Find Out My Primary Group Membership?

    Type the following command:
    $ getent group userName
    $ getent group vivek

    Sample outputs:

    vivek:x:1000:

    In this example, user vivek has group id # 1000 and has group name vivek for primary group membership.

  • 相关阅读:
    小程序 视频
    b161: NOIP2007 4.Hanoi双塔问题
    命名规则、.gitignore、freopen()
    c++学习记录(九)
    c++学习笔记(八)
    2020面向对象程序设计寒假作业2
    c++学习记录(七)
    c++学习记录(六)
    c+学习记录(五)
    c++学习记录(四)
  • 原文地址:https://www.cnblogs.com/smartvessel/p/2957282.html
Copyright © 2011-2022 走看看