LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

inxi

system information script that provides detailed information about hardware

TLDR

Print basic system summary
$ inxi
copy
Print full system description with sensitive info filtered
$ inxi -ez
copy
Print CPU information
$ inxi -C
copy
Print graphics information
$ inxi -G
copy
Print memory/RAM information
$ inxi -m
copy
Print audio system information
$ inxi -A
copy
Print sensor data (temperatures, fans)
$ inxi -s
copy
Print repository information
$ inxi -r
copy

SYNOPSIS

inxi [options]

DESCRIPTION

inxi is a system information script that provides detailed information about hardware and software configuration. It's designed to be a quick debugging and support tool, producing clean, human-readable output.The tool aggregates information from various system sources including /proc, /sys, and utility commands, presenting it in a consistent format suitable for sharing in forums or support tickets.

PARAMETERS

-C, --cpu

CPU information
-G, --graphics
Graphics card and display information
-m, --memory
RAM memory information
-A, --audio
Audio/sound card information
-s, --sensors
Sensor data (temperature, fans, voltages)
-r, --repos
Distribution repository information
-e, --expanded
Show extra details
-z, --filter
Filter out sensitive information (IPs, MACs, etc.)
-F, --full
Full system information output

INSTALL

sudo dnf install inxi
copy
sudo pacman -S inxi
copy
sudo apk add inxi
copy
sudo zypper install inxi
copy
brew install inxi
copy
nix profile install nixpkgs#inxi
copy

CAVEATS

Some information requires root privileges. Accuracy depends on available system utilities and kernel interfaces. Output format may vary between versions.

HISTORY

inxi was created as a fork of infobash by locsmif and is maintained by the inxi project team. It has become a standard tool in many Linux distributions for quickly gathering system information for debugging.

SEE ALSO

lshw(1), hwinfo(8), lscpu(1)

Copied to clipboard
Kai