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.

  • 相关阅读:
    使用Nginx搭建http服务器
    (七)Docker搭建httpd集群
    zlib库对文件进行压缩和解压操作
    (一)Apache Thrift 的使用
    (一)select、poll、epoll
    (十三)备忘录模式
    (十二)命令模式
    (十一)迭代器模式
    centos下利用httpd搭建http服务器方法
    shell快捷键
  • 原文地址:https://www.cnblogs.com/smartvessel/p/2957282.html
Copyright © 2011-2022 走看看