$linuxjunkies
>

inxi(1)

inxi displays comprehensive system information including hardware, CPU, memory, storage, graphics, and network details in a human-readable format.

UbuntuDebianFedoraArch

Synopsis

inxi [OPTION]... [--help]

Description

inxi is a system information tool that gathers and displays detailed hardware and software information about your Linux system. It queries various system files and outputs formatted data about CPU, motherboard, memory, disk drives, graphics, network interfaces, and more in a single command.

Unlike basic tools like lsb_release or uname, inxi provides comprehensive details in an easy-to-read format suitable for troubleshooting, documenting your system, or sharing hardware specs. It works across different Linux distributions and requires no root privileges for most information.

Common options

FlagWhat it does
-Ffull output: shows CPU, motherboard, memory, disk info, graphics, and network
-Cdisplay CPU information including model, cores, cache, and temperature
-Mshow motherboard/system information: vendor, model, BIOS version
-Gdisplay graphics card(s) and display server information
-Nshow network interface details including IP addresses and speed
-Ddisplay disk/storage information with usage and partitions
-mshow RAM memory information: total, used, type, and speed
-Adisplay audio device information
-bbasic output: simple one-line system summary
-ccolor output (auto, on, off) or use COLOR_NAME to set colors
--helpdisplay help information with all available options

Examples

Display full system information including CPU, motherboard, memory, disk, graphics, and network in one output

inxi -F

Show only CPU information with model, cores, threads, clock speed, and cache

inxi -C

Display disk information with partitions listed separately

inxi -D -p

Show graphics cards and display server information (X11, Wayland, etc.)

inxi -G

List all network interfaces with IP addresses, MAC addresses, and speeds

inxi -N

Quick one-line summary of system with OS, kernel, uptime, and CPU

inxi -b

Display detailed RAM information including total, used, type, speed, and slot information

inxi -m

Full output without color codes, useful for piping to files or terminals without color support

inxi -F --no-color

Related commands