getent Command Examples in Linux

getent is a command line utility that allows you to access the entries stored in various Name Service Switch (NSS) libraries on a Linux or Unix-like system. NSS is a library that provides a unified interface to various system databases, such as /etc/passwd and /etc/group, as well as network information services like LDAP and NIS.

getent can be used to query various types of database, including passwd, group, hosts, services, protocols, and networks. You can use it to look up information about specific users, groups, or host names, for example. The syntax for using getent is as follows:

# getent [database] [key]

where database is the name of the database you want to query (e.g. passwd, group, hosts) and key is the name or identifier of the entry you’re looking for (e.g. a username or hostname).

For example, to look up information about a specific user, you would use the following command:

# getent passwd [username]

This will return the entire line of information associated with the specified user from the /etc/passwd file. Similarly, you can use:

# getent group [groupname]

to get information about a specific group from the /etc/group file.

You can also use getent without any arguments to display all the entries in a given database.

# getent passwd

This command will display all the entries in the /etc/passwd file.

getent Command Examples

1. Get list of all groups:

# getent group

2. See the members of a group:

# getent group group_name

3. Get list of all services:

# getent services

4. Find a username by UID:

# getent passwd 1000

5. Perform a reverse DNS lookup:

# getent hosts host
Related Post