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

Windows msinfo32 / dxdiag equivalent in Linux

Displays detailed hardware inventory — CPU, RAM, motherboard, GPU, and more.

Windows msinfo32 / dxdiag
Linux equivalents
Debian/Ubuntu same command
lshw / inxi
Fedora same command
lshw / inxi
Arch same command
lshw / inxi

Overview

What this command does

Displays detailed hardware inventory — CPU, RAM, motherboard, GPU, and more.

Migration tip: inxi is the most user-friendly tool and formats output beautifully. Install it with sudo apt install inxi. Use -Fz for full info with privacy masking.

Practical tasks

Common use cases

Full hardware information

Displays detailed hardware inventory — CPU, RAM, motherboard, GPU, and more.

inxi -Fz

Full system info, privacy-masked

sudo lshw

Detailed hardware tree

sudo lshw -short

Compact hardware summary

Ready to run

Copyable Linux commands

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

inxi -Fz
sudo lshw -short
lspci
lsusb
lscpu

Walkthrough

Examples with explanations

# Windows: msinfo32  (GUI)
inxi -Fz            # full system summary
sudo lshw -short   # compact hardware list
lspci               # graphics card, network card, etc.
lsusb               # USB devices
lscpu               # CPU architecture details

Reference

Common options and variations

Command or optionUse
inxi -FzFull system info, privacy-masked
sudo lshwDetailed hardware tree
sudo lshw -shortCompact hardware summary
lscpuCPU details
lspciPCI devices (GPU, network card, etc.)
lsusbUSB devices connected

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

Keep learning

Related System & Storage commands