← All commands
Topic hub PowerShell Equivalents
Windows Linux PowerShell Equivalents Users & Groups

Windows PowerShell Get-LocalUser equivalent in Linux

Lists user accounts known through local files and configured identity services.

Windows PowerShell Get-LocalUser
Linux equivalents
Debian/Ubuntu same command
getent passwd
Fedora same command
getent passwd
Arch same command
getent passwd

Overview

What this command does

Lists user accounts known through local files and configured identity services.

Migration tip: getent respects NSS configuration, so it can include LDAP or other directory users in addition to local /etc/passwd entries.

Practical tasks

Common use cases

List local and directory users

Lists user accounts known through local files and configured identity services.

getent passwd

List known user accounts

getent passwd kris

Look up one user

cut -d: -f1 /etc/passwd

List local usernames only

Ready to run

Copyable Linux commands

Review paths, device names, package names and permissions before running any command.

getent passwd
getent passwd kris
cut -d: -f1 /etc/passwd

Walkthrough

Examples with explanations

getent passwd # list known users
getent passwd kris # look up one account
cut -d: -f1 /etc/passwd # list local usernames

Reference

Common options and variations

Command or optionUse
getent passwdList known user accounts
getent passwd krisLook up one user
cut -d: -f1 /etc/passwdList local usernames only

Distro differences

Debian/Ubuntu vs Fedora vs Arch

This command is the same on Debian/Ubuntu, Fedora and Arch Linux when the relevant tool is installed.

DistributionPackage manager / baseEquivalent commandDifference to notice
Debian/Ubuntu same command getent passwd Same command on this distribution.
Fedora same command getent passwd Same command on this distribution.
Arch same command getent passwd Same command on this distribution.

Keep learning

Related PowerShell Equivalents commands