TIL: inxi
system information#
I was looking through the packages supplied by the Tuxedo apt repo:
rg '^Package: (.+)$' --only-matching -r '$1' \
/var/lib/apt/lists/deb.tuxedocomputers.com_ubuntu_dists_jammy_main_binary-amd64_Packages \
| sort \
> /tmp/tuxedo-packages
vi /tmp/tuxedo-packages # remove those that are not interesting
for pkg in $(cat /tmp/tuxedo-packages); do
apt show $pkg
done > /tmp/xs
That’s when I came across inxi.
Here is inxi’s default output on my machine:
CPU: quad core 11th Gen Intel Core i7-1165G7 (-MT MCP-)
speed/min/max: 1391/400/4700 MHz Kernel: 5.15.0-94-generic x86_64 Up: 35m
Mem: 11.32/38.97 GiB (29.1%) Storage: 931.51 GiB (62.0% used) Procs: 481
Shell: Bash inxi: 3.3.31
Cute! :)
Here’s how to get full system information
inxi -v8
Contact
Notes? Comments? Feel free to contact me on The Matrix.
TIL: Gitlab CI: The needs Keyword
Git Sign Commits With SSH