← All commands
Topic hub System & Storage
Windows Linux System & Storage System

Windows whoami equivalent in Linux

Displays the username of the currently logged-in user.

Windows whoami
Linux equivalents
Debian/Ubuntu same command
whoami
Fedora same command
whoami
Arch same command
whoami

Overview

What this command does

Displays the username of the currently logged-in user.

Migration tip: Also try id for more detail including your group memberships, which matter a lot for Linux permissions.

Practical tasks

Common use cases

Show current username

Displays the username of the currently logged-in user.

whoami

Print current username

id

Show user ID, group IDs, and names

groups

List which groups you belong to

Ready to run

Copyable Linux commands

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

whoami
id
groups
w

Walkthrough

Examples with explanations

# Windows: whoami
whoami      # prints: john (your username)
id          # uid=1000(john) gid=1000(john) groups=...
groups      # list your group memberships
w           # who's logged in across all sessions

Reference

Common options and variations

Command or optionUse
whoamiPrint current username
idShow user ID, group IDs, and names
groupsList which groups you belong to
wShow who is logged in and what they're doing

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

Keep learning

Related System & Storage commands