getent: command not found

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.

If you encounter the below error while running the command getent:

getent: command not found

you may try installing the below package as per your choice of distribution:

Distribution Command
Debian apt-get install libc-bin
Ubuntu apt-get install libc-bin
Arch Linux pacman -S glibc
Kali Linux apt-get install libc-bin
CentOS yum install glibc-common
Fedora dnf install glibc-common
Raspbian apt-get install libc-bin

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