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

Windows PowerShell Get-LocalGroup equivalent in Linux

Lists local and directory-backed groups known to the system.

Windows PowerShell Get-LocalGroup
Linux equivalents
Debian/Ubuntu same command
getent group
Fedora same command
getent group
Arch same command
getent group

Overview

What this command does

Lists local and directory-backed groups known to the system.

Migration tip: Use getent group NAME for one group, or groups USER to see a user’s memberships.

Practical tasks

Common use cases

List groups

Lists local and directory-backed groups known to the system.

getent group

List known groups

getent group wheel

Inspect one group

groups kris

Show one user’s memberships

Ready to run

Copyable Linux commands

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

getent group
getent group wheel
groups kris

Walkthrough

Examples with explanations

getent group # list groups
getent group wheel # inspect one group
groups kris # show a user’s group memberships

Reference

Common options and variations

Command or optionUse
getent groupList known groups
getent group wheelInspect one group
groups krisShow one user’s memberships

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 group Same command on this distribution.
Fedora same command getent group Same command on this distribution.
Arch same command getent group Same command on this distribution.

Keep learning

Related PowerShell Equivalents commands