Whether or not you wish to know free reminiscence out there, disk area utilization, community system element, or {hardware} data, a command utility is on the market for every goal.
However remembering all these instructions could be a tedious process, particularly for learners. So, what should you can view each element of your system and {hardware} utilizing a single command utility?
Sure, inxi is one such light-weight instrument rightly developed to ease the duty of gathering all Linux system data by utilizing completely different choices and displaying it in a terminal in a quite simple means.
What Is inxi?
Inxi is a free and open supply command line-based instrument that generates full Linux system and {hardware} data.
Together with the terminal, you may also use inxi on IRC shoppers corresponding to Konversation, Xchat, Quassel, Weechat, and Irssi.
Inxi prints data for every alphabet (each uppercase and lowercase) handed as an argument individually or collectively.
inxi [-AbBCdDEfFGhiIjJlLmMnNopPrRsSuUVwzZ]
In a nutshell, you should use inxi to show the next particulars:
- System data
- Audio/sound system
- Battery
- CPU
- Laborious disk and reminiscence utilization
- Machine knowledge
- Bluetooth and USB gadgets
- Graphic system
- Community system
- Partition data
- Logical quantity data
- Linux Distribution repository knowledge
- RAID knowledge
- Sensors
- Climate report
How To Set up inxi On Linux?
Inxi is already out there in most Linux distribution’s main or secondary repository.
So, it’s most certainly that it is possible for you to to put in it (is probably not the newest model) utilizing the default bundle supervisor. For instance, you possibly can run the next command to put in inxi on Ubuntu:
$ sudo apt set up inxi
Nonetheless, if you wish to use its newest model, you possibly can obtain its supply code and manually configure it to run.
$ wget https://github.com/smxi/inxi/archive/refs/tags/3.3.04-1.tar.gz
$ tar -xzvf 3.3.04-1.tar.gz
$ cd inxi-3.3.04-1
$ sudo cp inxi /usr/bin/
$ inxi
How To Use And Configure inxi to get Linux system data?
Show System Info
If you wish to know the essential element of your system, use -b
or --basic
choice.
$ inxi -b
Or, should you’re excited about understanding the complete element, move -F
or --full
argument.
$ inxi -F
Change Output Shade
As you possibly can see within the above output, inxi has blue because the default highlighting coloration. If you wish to substitute it together with your favourite one, inxi allow you to accomplish that by setting a coloration scheme utilizing -c
or --color
[0-42] choice.
$ inxi -b -c31
It’s also possible to set a particular coloration kind as default by deciding on the worldwide coloration scheme utilizing -c99
choice.
Present Laborious Disk And Reminiscence Utilization
It’s also possible to chain two choices to get mix element.
$ sudo inxi -Dm
or
$ sudo inxi -D -m
or
$ sudo inxi --disk --memory
As you discover the primary time working the command, --memory
doesn’t generate RAM report correctly as underneath the hood it makes use of dmidecode, which requires root permission.
Generate Climate Report
Moreover the system particulars, inxi additionally present --weather
or -w
choice to get the climate of alternate areas.
$ inxi --weather
It’s also possible to change the situation, climate knowledge supply, and climate items by manually passing worth as an argument.
Get IP Tackle And Community Particulars
To get the community particulars like a tool driver, mac ID, and interface alongside together with your IP handle, you should use -n
or --network-advanced
and -i
or --ip
choices combining.
$ inxi -ni
Finally, if you wish to take full benefit of inix, take a look at its all available options.
$ inxi --help