Inxi est un ensemble de scripts permettant de détecter les informations sur le matériel, y compris les détails des constructeur, pilotes etc...
sudo apt-get install inxi
Utilisation de INXI :
L'option F donne un aperçu détaillé du système, mais il ne comprend pas tout ce qu' Inxi est capable de détecter.
inxi -F
L'ajout de l'option "i" affichera les info concernant l'adresse ip
inxi -Fi
Une commande qui sortira un grand nombre d'info sur le système :Mobo, CPU, GPU, Audio, Network, HDD, Partitions (montées et démontées), Sensors, Dépots ...
inxi -rfv7
Options:
-A, -N - for output of usb audio/network card information: lsusb (usbutils)
-Ax - for audio module version: modinfo (module-init-tools)
-Dx - for hdd temp output (root only default): hddtemp (hddtemp)
-S - for detecting running desktop: xprop (X11-utils)
For user level hdd temp output: sudo (sudo)
Note: requires user action for this feature to run as user (edit /etc/sudoers file)
-G - full graphics output requires:
glxinfo (mesa-utils)
xdpyinfo (x11-utils)
xrandr (x11-xserver-utils)
-i - IP information, local/wan - ip (iproute) (previous to 1.7.8, inxi used the deprecated tool: ifconfig (net-tools). Please note that so as to not break previous inxi installs, inxi still will use ifconfig if ip is missing, so you won't see any unexpected errors.
-I (out of X) or -Ix (in X) - view current runlevel: runlevel (sysvinit)
-o - for unmounted file system information in unmounted drives (root only default): file (file)
Note: requires user action for this feature to run as user (edit /etc/sudoers file)
For user level unmounted file system type output: sudo (sudo)
-s For any sensors output, fan, temp, etc: sensors (lm-sensors)
Note: requires setup of lm-sensors (sensors-detect and adding modules/modprobe/reboot, and ideally, pwmconfig) prior to full output being available.
MAJ Novembre 2014
Installation sur Debian, installer les prérequis :
apt-get install gawk lm-sensors binutils mesa-utils hddtemp
Puis
cd /tmp wget -Nc --no-check-certificate https://inxi.googlecode.com/svn/trunk/inxi.tar.gz tar xzf inxi.tar.gz
cp /tmp/inxi /usr/local/bin/
On peut aussi copier le man :
cp /tmp/inxi.1.gz /usr/share/man/man1/
Pour lancer INXI voir plus haut dans la partie Ubuntu
FMR