summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@ubuntu.com>2018-01-25 16:56:38 -0500
committerLibravatarUnit 193 <unit193@ubuntu.com>2018-01-25 16:56:38 -0500
commite318468b98989bebe33f48b101115f9b7500b10a (patch)
treea19c57bb35f8c91dca8360bc6d84bf773a3805c9
parent734ac8003c772115d05c377eb2d33918eacffbef (diff)
downloadinxi-e318468b98989bebe33f48b101115f9b7500b10a.tar.bz2
inxi-e318468b98989bebe33f48b101115f9b7500b10a.tar.xz
inxi-e318468b98989bebe33f48b101115f9b7500b10a.tar.zst
New upstream version 2.3.56upstream/2.3.56
-rwxr-xr-xinxi3642
-rw-r--r--inxi.1626
-rw-r--r--inxi.1.gzbin12725 -> 13303 bytes
-rw-r--r--inxi.changelog253
4 files changed, 2595 insertions, 1926 deletions
diff --git a/inxi b/inxi
index 69ac8b7..f36c6dc 100755
--- a/inxi
+++ b/inxi
@@ -2,8 +2,8 @@
########################################################################
SELF_NAME='inxi'
# don't quote the following, parsers grab these too
-SELF_VERSION=2.3.45
-SELF_DATE=2017-11-21
+SELF_VERSION=2.3.56
+SELF_DATE=2018-01-17
SELF_PATCH=00
########################################################################
#### SPECIAL THANKS
@@ -21,20 +21,22 @@ SELF_PATCH=00
#### Gaim/Pidgin, Weechat, KVIrc and Kopete.
#### Original infobash author and copyright holder:
#### Copyright (C) 2005-2007 Michiel de Boer a.k.a. locsmif
-#### inxi version: Copyright (C) 2008-2017 Harald Hope
+#### inxi version: Copyright (C) 2008-2018 Harald Hope
#### Additional features (C) Scott Rogers - kde, cpu info
#### Further fixes (listed as known): Horst Tritremmel <hjt at sidux.com>
#### Steven Barrett (aka: damentz) - usb audio patch; swap percent used patch
#### Jarett.Stevens - dmidecde -M patch for older systems with the /sys
####
-#### Current script home page/wiki/git: https://github.com/smxi/inxi
-#### Documentation/wiki pages will move to https://smxi.org soon.
-#### Script forums: http://techpatterns.com/forums/forum-33.html
+#### Current project home page/wiki/git: https://github.com/smxi/inxi
+#### Documentation/wiki pages can be found at https://smxi.org/docs/inxi.htm
+#### Project forums: http://techpatterns.com/forums/forum-33.html
#### IRC support: irc.oftc.net channel #smxi
#### Version control:
#### * https://github.com/smxi/inxi
#### * git: git pull https://github.com/smxi/inxi master
-#### * source checkout url: https://github.com/smxi/inxi
+#### * For basic version, no gz files, much smaller, do:
+#### git clone https://github.com/smxi/inxi --branch master-plain --single-branch
+#### * source repository url: https://github.com/smxi/inxi
####
#### This program is free software; you can redistribute it and/or modify
#### it under the terms of the GNU General Public License as published by
@@ -51,6 +53,10 @@ SELF_PATCH=00
####
#### If you don't understand what Free Software is, please read (or reread)
#### this page: http://www.gnu.org/philosophy/free-sw.html
+####
+#### But the main thing about Free Software is that its' about the freedom
+#### of the individual user, not the corporations that try to coopt it. This
+#### grows easy to forget when people confuse freedom with open source.
########################################################################
####
#### PACKAGE NAME NOTES
@@ -61,8 +67,8 @@ SELF_PATCH=00
####
#### DEPENDENCIES
#### * bash >=3.0 (bash); df, readlink, stty, tr, uname, wc (coreutils);
-#### gawk (gawk); grep (grep); lspci (pciutils);
-#### ps, find (findutils)
+#### gawk (gawk); grep (grep); lspci (pciutils); ps; find (findutils);
+#### perl (Modules: [HTTP::Tiny IF NO wget/curl/fetch/ftp]; Net::FTP; File::Find);
#### * Also the proc filesystem should be present and mounted for Linux
#### * Some features, like -M and -d will not work, or will work incompletely,
#### if /sys is missing
@@ -94,6 +100,8 @@ SELF_PATCH=00
#### Note: requires setup of lm-sensors (sensors-detect and adding modules/modprobe/reboot,
#### and ideally, pwmconfig) prior to full output being available.
#### -S For desktop environment, user must be in X and have xprop installed (in X11-utils)
+#### -xx@14 - it really helps to have 'tree' installed on Linux systems with /sys for
+#### debugger data collection, that creates a very useful map of /sys.
########################################################################
#### BSD Adjustments
#### * sed -i '' form supported by using SED_I="-i ''".
@@ -117,7 +125,7 @@ SELF_PATCH=00
#### The ONLY time you should use ';' (semi-colon) is in this single case: if [[ condition ]];then.
#### Never use compound 'if': ie, if [[ condition ]] && statement.
#### * Note: [[ -n $something ]] - double brackets does not require quotes for variables: ie, "$something".
-#### * Always use quotes, double or single, for all string values.
+#### * Always use quotes, double or single, for all string values. Really. It won't kill you.
#### * All new code/methods must be in a function.
#### * For all boolean tests, use 'true' / 'false'.
@@ -262,6 +270,7 @@ A_CPU_CORE_DATA=''
A_CPU_DATA=''
A_CPU_TYPE_PCNT_CCNT=''
A_DEBUG_BUFFER=''
+
A_GCC_VERSIONS=''
A_GLX_DATA=''
A_GRAPHICS_CARD_DATA=''
@@ -276,7 +285,7 @@ A_OPTICAL_DRIVE_DATA=''
A_PARTITION_DATA=''
A_PCICONF_DATA=''
A_PS_DATA=''
-A_RAID_DATA=''
+A_RAID_DATA=()
A_SENSORS_DATA=''
A_UNMOUNTED_PARTITION_DATA=''
A_WEATHER_DATA=''
@@ -285,11 +294,11 @@ A_DISPLAY_SERVER_DATA=''
### BOOLEANS ###
## standard boolean flags ##
B_BSD_DISK_SET='false'
-B_BSD_RAID='false'
B_COLOR_SCHEME_SET='false'
B_CONSOLE_IRC='false'
# triggers full display of cpu flags
B_CPU_FLAGS_FULL='false'
+B_CURL='true'
# test for dbus irc client
B_DBUS_CLIENT='false'
# kde dcop
@@ -303,6 +312,7 @@ B_DMIDECODE_SET='false'
B_EXTRA_DATA='false'
# triggered by -xx
B_EXTRA_EXTRA_DATA='false'
+B_FETCH='true'
B_FORCE_DMIDECODE='false'
B_ID_SET='false'
# override certain errors due to currupted data
@@ -381,6 +391,7 @@ B_USB_NETWORKING='false'
# set to true here for debug logging from script start
B_USE_LOGGING='false'
B_UUID_SET='false'
+B_WGET='true'
B_XORG_LOG='false'
## Directory/file exist flags; test as [[ $(boolean) ]] not [[ $boolean ]]
@@ -518,6 +529,7 @@ LSPCI_V_DATA=''
LSPCI_N_DATA=''
MEMORY=''
PS_THROTTLED=''
+RAID_TYPE=''
REPO_DATA=''
SYSCTL_A_DATA=''
UP_TIME=''
@@ -651,7 +663,7 @@ DISTROS_DERIVED="antix-version aptosid-version kanotix-version knoppix-version m
# debian_version excluded from DISTROS_PRIMARY so Debian can fall through to /etc/issue detection. Same goes for Ubuntu.
DISTROS_EXCLUDE_LIST="debian_version devuan_version ubuntu_version"
DISTROS_PRIMARY="arch-release gentoo-release redhat-release slackware-version SuSE-release"
-DISTROS_LSB_GOOD="mandrake-release mandriva-release mandrakelinux-release"
+DISTROS_LSB_GOOD="mandrake-release mandriva-release mandrakelinux-release manjaro-release"
# this is being used both by core distros and derived distros now, eg, solusos 1 uses it for solusos id, while
# debian, solusos base, uses it as well, so we have to know which it is.
DISTROS_OS_RELEASE_GOOD="arch-release SuSE-release "
@@ -664,7 +676,7 @@ DISTROS_OS_RELEASE_GOOD="arch-release SuSE-release "
# we're saving about 10+% of the total script exec time by hand building the ban lists here, using hard quotes.
BAN_LIST_NORMAL='chipset|components|computing|computer|corporation|communications|electronics|electrical|electric|gmbh|group|incorporation|industrial|international|nee|revision|semiconductor|software|technologies|technology|ltd\.|\<ltd\>|inc\.|\<inc\>|intl\.|co\.|\<co\>|corp\.|\<corp\>|\(tm\)|\(r\)|®|\(rev ..\)'
-BAN_LIST_CPU='@||cpu |cpu deca|dual core|dual-core|tri core|tri-core|quad core|quad-core|ennea|genuine|hepta|hexa|multi|octa|penta|processor|single|triple|[0-9\.]+ *[MmGg][Hh][Zz]'
+BAN_LIST_CPU='@|cpu |cpu deca|([0-9]+|single|dual|triple|tri|quad|penta|hepta|hexa|octa|multi)[ -]core|ennea|genuine|multi|processor|single|triple|[0-9\.]+ *[MmGg][Hh][Zz]'
# See github issue 75 for more details on value: *, triggers weird behaviors if present in value
# /sys/devices/virtual/dmi/id/product_name:['*']
# this is for bash arrays AND avoiding * in arrays: ( fred * greg ) expands to the contents of the directory
@@ -682,8 +694,13 @@ USB_NETWORK_SEARCH="$USB_NETWORK_SEARCH|Actiontec.*Wireless|Actiontec.*Network|A
USB_NETWORK_SEARCH="$USB_NETWORK_SEARCH|050d:935b|0bda:8189|0bda:8197"
########################################################################
-#### MAIN: Where it all begins
+#### STARTUP
########################################################################
+
+#### -------------------------------------------------------------------
+#### MAIN
+#### -------------------------------------------------------------------
+
main()
{
# This must be set first so log paths are present when logging starts.
@@ -824,7 +841,7 @@ main()
# all the pre-start stuff is in place now
B_SCRIPT_UP='true'
- script_debugger "Debugger: $SELF_NAME is up and running..."
+ self_debugger "Debugger: $SELF_NAME is up and running..."
# then create the output
print_it_out
@@ -835,52 +852,91 @@ main()
exit 0
}
-set_user_paths()
+#### -------------------------------------------------------------------
+#### INITIALIZE
+#### -------------------------------------------------------------------
+
+# No args taken.
+check_recommended_apps()
{
- local b_conf='false' b_data='false'
-
- if [[ -n $XDG_CONFIG_HOME ]];then
- SELF_CONFIG_DIR=$XDG_CONFIG_HOME
- b_conf=true
- elif [[ -d $HOME/.config ]];then
- SELF_CONFIG_DIR=$HOME/.config
- b_conf=true
- else
- SELF_CONFIG_DIR="$HOME/.$SELF_NAME"
+ eval $LOGFS
+ local bash_array_test=( "one" "two" )
+
+ # check for array ability of bash, this is only good for the warning at this time
+ # the boolean could be used later
+ # bash version 2.05b is used in DSL
+ # bash version 3.0 is used in Puppy Linux; it has a known array bug <reference to be placed here>
+ # versions older than 3.1 don't handle arrays
+ # distro's using below 2.05b are unknown, released in 2002
+ if [[ ${bash_array_test[1]} -eq "two" ]];then
+ B_BASH_ARRAY='true'
+ else
+ self_debugger "Suggestion: update to Bash v3.1 for optimal inxi output"
fi
- if [[ -n $XDG_DATA_HOME ]];then
- SELF_DATA_DIR=$XDG_DATA_HOME/$SELF_NAME
- b_data=true
- elif [[ -d $HOME/.local/share ]];then
- SELF_DATA_DIR=$HOME/.local/share/$SELF_NAME
- b_data=true
- else
- SELF_DATA_DIR="$HOME/.$SELF_NAME"
+ # test for a few apps that bsds may not have after initial tests
+ if type -p lspci &>/dev/null;then
+ B_LSPCI='true'
fi
- # note, this used to be created/checked in specific instance, but we'll just do it
- # universally so it's done at script start.
- if [[ ! -d $SELF_DATA_DIR ]];then
- mkdir $SELF_DATA_DIR
+ if [[ -n $BSD_TYPE ]];then
+ if type -p sysctl &>/dev/null;then
+ B_SYSCTL='true'
+ fi
+ if type -p pciconf &>/dev/null;then
+ B_PCICONF='true'
+ fi
fi
-
- if [[ $b_conf == 'true' && -f $HOME/.$SELF_NAME/$SELF_NAME.conf ]];then
- mv -f $HOME/.$SELF_NAME/$SELF_NAME.conf $SELF_CONFIG_DIR
- echo "Moved $SELF_NAME.conf from $HOME/.$SELF_NAME to $SELF_CONFIG_DIR"
+ # now setting qdbus/dcop for first run, some systems can have both by the way
+ if type -p qdbus &>/dev/null;then
+ B_QDBUS='true'
fi
- if [[ $b_data == 'true' && -d $HOME/.$SELF_NAME ]];then
- mv -f $HOME/.$SELF_NAME/* $SELF_DATA_DIR
- rm -Rf $HOME/.$SELF_NAME
- echo "Moved data dir $HOME/.$SELF_NAME to $SELF_DATA_DIR"
+ if type -p dcop &>/dev/null;then
+ B_DCOP='true'
fi
-
- LOG_FILE=$SELF_DATA_DIR/$LOG_FILE
- LOG_FILE_1=$SELF_DATA_DIR/$LOG_FILE_1
- LOG_FILE_2=$SELF_DATA_DIR/$LOG_FILE_2
+ eval $LOGFE
}
-#### -------------------------------------------------------------------
-#### basic tests: set script data, booleans, PATH, version numbers
-#### -------------------------------------------------------------------
+# Determine if any of the absolutely necessary tools are absent
+# No args taken.
+check_required_apps()
+{
+ eval $LOGFS
+ local app_name=''
+ # bc removed from deps for now
+ local depends="df gawk grep ps readlink tr uname wc"
+
+ if [[ -z $BSD_TYPE ]];then
+ depends="$depends lspci"
+ elif [[ $BSD_TYPE == 'bsd' ]];then
+ depends="$depends sysctl"
+ # debian-bsd has lspci but you must be root to run it
+ elif [[ $BSD_TYPE == 'debian-bsd' ]];then
+ depends="$depends sysctl lspci"
+ fi
+ # no need to add xprop because it will just give N/A if not there, but if we expand use of xprop,
+ # should add that here as a test, then use the B_SHOW_DISPLAY_DATA flag to trigger the tests in de function
+ local x_apps="xrandr xdpyinfo glxinfo"
+
+ if [[ $B_RUNNING_IN_DISPLAY == 'true' ]];then
+ for app_name in $x_apps
+ do
+ if ! type -p $app_name &>/dev/null;then
+ self_debugger "Resuming in non X mode: $app_name not found. For package install advice run: $SELF_NAME --recommends"
+ B_SHOW_DISPLAY_DATA='false'
+ break
+ fi
+ done
+ fi
+
+ app_name=''
+
+ for app_name in $depends
+ do
+ if ! type -p $app_name &>/dev/null;then
+ error_handler 5 "$app_name"
+ fi
+ done
+ eval $LOGFE
+}
# Set PATH data so we can access all programs as user. Set BAN lists.
# initialize some boleans, these directories are used throughout the script
@@ -917,30 +973,12 @@ initialize_data()
else
error_handler 6
fi
-
initialize_paths
-
if type -p dig &>/dev/null;then
DNSTOOL='dig'
fi
# set downloaders.
- if ! type -p wget &>/dev/null;then
- # first check for bsd stuff
- if type -p fetch &>/dev/null;then
- DOWNLOADER='fetch'
- NO_SSL=' --no-verify-peer'
- elif type -p curl &>/dev/null;then
- DOWNLOADER='curl'
- NO_SSL=' --insecure'
- elif [[ $BSD_VERSION == 'openbsd' ]] && type -p ftp &>/dev/null;then
- DOWNLOADER='ftp'
- else
- DOWNLOADER='no-downloader'
- fi
- else
- NO_SSL=' --no-check-certificate'
- fi
-
+ set_downloader
if [[ -n $BSD_TYPE ]];then
if [[ -e $FILE_DMESG_BOOT ]];then
B_DMESG_BOOT_FILE='true'
@@ -1008,54 +1046,35 @@ initialize_data()
eval $LOGFE
}
-# args: $1 - default OR override default cols max integer count
-set_display_width()
+initialize_paths()
{
- local cols_max_override=$1
+ local path='' added_path='' b_path_found='' sys_path=''
+ # Extra path variable to make execute failures less likely, merged below
+ local extra_paths="/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/opt/local/bin"
- if [[ $cols_max_override == 'live' ]];then
- ## sometimes tput will trigger an error (mageia) if irc client
- if [[ $B_IRC == 'false' ]];then
- if type -p tput &>/dev/null;then
- TERM_COLUMNS=$(tput cols)
- TERM_LINES=$(tput lines)
- fi
- # double check, just in case it's missing functionality or whatever
- if [[ -z $TERM_COLUMNS || -n ${TERM_COLUMNS//[0-9]/} ]];then
- TERM_COLUMNS=80
- TERM_LINES=100
+ # this needs to be set here because various options call the parent initialize function directly.
+ SELF_PATH=$( dirname "$0" )
+ # Fallback paths put into $extra_paths; This might, among others, help on gentoo.
+ # Now, create a difference of $PATH and $extra_paths and add that to $PATH:
+ IFS=":"
+ for path in $extra_paths
+ do
+ b_path_found='false'
+ for sys_path in $PATH
+ do
+ if [[ $path == $sys_path ]];then
+ b_path_found='true'
fi
+ done
+ if [[ $b_path_found == 'false' ]];then
+ added_path="$added_path:$path"
fi
- # Convert to new variable names if set in config files, legacy test
- if [[ -n $LINE_MAX_CONSOLE ]];then
- COLS_MAX_CONSOLE=$LINE_MAX_CONSOLE
- fi
- if [[ -n $LINE_MAX_IRC ]];then
- COLS_MAX_IRC=$LINE_MAX_IRC
- fi
- # this lets you set different widths for in or out of display server
- # if [[ $B_RUNNING_IN_DISPLAY == 'false' && -n $COLS_MAX_NO_DISPLAY ]];then
- # COLS_MAX_CONSOLE=$COLS_MAX_NO_DISPLAY
- # fi
- # TERM_COLUMNS is set in top globals, using tput cols
- # echo tc: $TERM_COLUMNS cmc: $COLS_MAX_CONSOLE
- if [[ $TERM_COLUMNS -lt $COLS_MAX_CONSOLE ]];then
- COLS_MAX_CONSOLE=$TERM_COLUMNS
- fi
- # adjust, some terminals will wrap if output cols == term cols
- COLS_MAX_CONSOLE=$(( $COLS_MAX_CONSOLE - 2 ))
- # echo cmc: $COLS_MAX_CONSOLE
- # comes after source for user set stuff
- if [[ $B_IRC == 'false' ]];then
- COLS_MAX=$COLS_MAX_CONSOLE
- else
- COLS_MAX=$COLS_MAX_IRC
- fi
- else
- COLS_MAX=$cols_max_override
- fi
- COLS_INNER=$(( $COLS_MAX - $INDENT - 1 ))
- # echo cm: $COLS_MAX ci: $COLS_INNER
+ done
+
+ IFS="$ORIGINAL_IFS"
+ PATH="$PATH$added_path"
+ # echo "PATH='$PATH'"
+ ##/bin/sh -c 'echo "PATH in subshell=\"$PATH\""'
}
# arg: $1 - version number: main/patch/date
@@ -1087,143 +1106,6 @@ parse_version_data()
esac
}
-initialize_paths()
-{
- local path='' added_path='' b_path_found='' sys_path=''
- # Extra path variable to make execute failures less likely, merged below
- local extra_paths="/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/opt/local/bin"
-
- # this needs to be set here because various options call the parent initialize function directly.
- SELF_PATH=$( dirname "$0" )
- # Fallback paths put into $extra_paths; This might, among others, help on gentoo.
- # Now, create a difference of $PATH and $extra_paths and add that to $PATH:
- IFS=":"
- for path in $extra_paths
- do
- b_path_found='false'
- for sys_path in $PATH
- do
- if [[ $path == $sys_path ]];then
- b_path_found='true'
- fi
- done
- if [[ $b_path_found == 'false' ]];then
- added_path="$added_path:$path"
- fi
- done
-
- IFS="$ORIGINAL_IFS"
- PATH="$PATH$added_path"
- # echo "PATH='$PATH'"
- ##/bin/sh -c 'echo "PATH in subshell=\"$PATH\""'
-}
-
-# No args taken.
-check_recommended_apps()
-{
- eval $LOGFS
- local bash_array_test=( "one" "two" )
-
- # check for array ability of bash, this is only good for the warning at this time
- # the boolean could be used later
- # bash version 2.05b is used in DSL
- # bash version 3.0 is used in Puppy Linux; it has a known array bug <reference to be placed here>
- # versions older than 3.1 don't handle arrays
- # distro's using below 2.05b are unknown, released in 2002
- if [[ ${bash_array_test[1]} -eq "two" ]];then
- B_BASH_ARRAY='true'
- else
- script_debugger "Suggestion: update to Bash v3.1 for optimal inxi output"
- fi
- # test for a few apps that bsds may not have after initial tests
- if type -p lspci &>/dev/null;then
- B_LSPCI='true'
- fi
- if [[ -n $BSD_TYPE ]];then
- if type -p sysctl &>/dev/null;then
- B_SYSCTL='true'
- fi
- if type -p pciconf &>/dev/null;then
- B_PCICONF='true'
- fi
- fi
- # now setting qdbus/dcop for first run, some systems can have both by the way
- if type -p qdbus &>/dev/null;then
- B_QDBUS='true'
- fi
- if type -p dcop &>/dev/null;then
- B_DCOP='true'
- fi
- eval $LOGFE
-}
-
-# Determine if any of the absolutely necessary tools are absent
-# No args taken.
-check_required_apps()
-{
- eval $LOGFS
- local app_name=''
- # bc removed from deps for now
- local depends="df gawk grep ps readlink tr uname wc"
-
- if [[ -z $BSD_TYPE ]];then
- depends="$depends lspci"
- elif [[ $BSD_TYPE == 'bsd' ]];then
- depends="$depends sysctl"
- # debian-bsd has lspci but you must be root to run it
- elif [[ $BSD_TYPE == 'debian-bsd' ]];then
- depends="$depends sysctl lspci"
- fi
- # no need to add xprop because it will just give N/A if not there, but if we expand use of xprop,
- # should add that here as a test, then use the B_SHOW_DISPLAY_DATA flag to trigger the tests in de function
- local x_apps="xrandr xdpyinfo glxinfo"
-
- if [[ $B_RUNNING_IN_DISPLAY == 'true' ]];then
- for app_name in $x_apps
- do
- if ! type -p $app_name &>/dev/null;then
- script_debugger "Resuming in non X mode: $app_name not found. For package install advice run: $SELF_NAME --recommends"
- B_SHOW_DISPLAY_DATA='false'
- break
- fi
- done
- fi
-
- app_name=''
-
- for app_name in $depends
- do
- if ! type -p $app_name &>/dev/null;then
- error_handler 5 "$app_name"
- fi
- done
- eval $LOGFE
-}
-
-## note: this is now running inside each gawk sequence directly to avoid exiting gawk
-## looping in bash through arrays, then re-entering gawk to clean up, then writing back to array
-## in bash. For now I'll leave this here because there's still some interesting stuff to get re methods
-# Enforce boilerplate and buzzword filters
-# args: $1 - BAN_LIST_NORMAL/BAN_LIST_CPU; $2 - string to sanitize
-sanitize_characters()
-{
- eval $LOGFS
- # Cannot use strong quotes to unquote a string with pipes in it!
- # bash will interpret the |'s as usual and try to run a subshell!
- # Using weak quotes instead, or use '"..."'
- echo "$2" | gawk "
- BEGIN {
- IGNORECASE=1
- }
- {
- gsub(/${!1}/,\"\")
- gsub(/ [ ]+/,\" \") ## ([ ]+) with (space)
- gsub(/^ +| +$/,\"\") ## (pipe char) with (nothing)
- print ## prints (returns) cleaned input
- }"
- eval $LOGFE
-}
-
# Set the colorscheme
# args: $1 = <scheme number>|<"none">
set_color_scheme()
@@ -1261,6 +1143,132 @@ set_color_scheme()
eval $LOGFE
}
+# args: $1 - default OR override default cols max integer count
+set_display_width()
+{
+ local cols_max_override=$1
+
+ if [[ $cols_max_override == 'live' ]];then
+ ## sometimes tput will trigger an error (mageia) if irc client
+ if [[ $B_IRC == 'false' ]];then
+ if type -p tput &>/dev/null;then
+ TERM_COLUMNS=$(tput cols)
+ TERM_LINES=$(tput lines)
+ fi
+ # double check, just in case it's missing functionality or whatever
+ if [[ -z $TERM_COLUMNS || -n ${TERM_COLUMNS//[0-9]/} ]];then
+ TERM_COLUMNS=80
+ TERM_LINES=100
+ fi
+ fi
+ # Convert to new variable names if set in config files, legacy test
+ if [[ -n $LINE_MAX_CONSOLE ]];then
+ COLS_MAX_CONSOLE=$LINE_MAX_CONSOLE
+ fi
+ if [[ -n $LINE_MAX_IRC ]];then
+ COLS_MAX_IRC=$LINE_MAX_IRC
+ fi
+ # this lets you set different widths for in or out of display server
+ # if [[ $B_RUNNING_IN_DISPLAY == 'false' && -n $COLS_MAX_NO_DISPLAY ]];then
+ # COLS_MAX_CONSOLE=$COLS_MAX_NO_DISPLAY
+ # fi
+ # TERM_COLUMNS is set in top globals, using tput cols
+ # echo tc: $TERM_COLUMNS cmc: $COLS_MAX_CONSOLE
+ if [[ $TERM_COLUMNS -lt $COLS_MAX_CONSOLE ]];then
+ COLS_MAX_CONSOLE=$TERM_COLUMNS
+ fi
+ # adjust, some terminals will wrap if output cols == term cols
+ COLS_MAX_CONSOLE=$(( $COLS_MAX_CONSOLE - 2 ))
+ # echo cmc: $COLS_MAX_CONSOLE
+ # comes after source for user set stuff
+ if [[ $B_IRC == 'false' ]];then
+ COLS_MAX=$COLS_MAX_CONSOLE
+ else
+ COLS_MAX=$COLS_MAX_IRC
+ fi
+ else
+ COLS_MAX=$cols_max_override
+ fi
+ COLS_INNER=$(( $COLS_MAX - $INDENT - 1 ))
+ # echo cm: $COLS_MAX ci: $COLS_INNER
+}
+
+set_downloader()
+{
+ # curl/wget are faster than HTTP::Tiny
+ if $B_CURL == 'true' && type -p curl &>/dev/null;then
+ DOWNLOADER='curl'
+ NO_SSL=' --insecure'
+ # wget has had some issues with not testing their code leading to -O failure
+ elif $B_WGET == 'true' && type -p wget &>/dev/null;then
+ DOWNLOADER='wget'
+ NO_SSL=' --no-check-certificate'
+ # check for bsd stuff
+ elif $B_FETCH == 'true' && type -p fetch &>/dev/null;then
+ DOWNLOADER='fetch'
+ NO_SSL=' --no-verify-peer'
+ # this is much slower than curl or wget
+ elif type -p perl &>/dev/null && perl -MHTTP::Tiny -e 1 &>/dev/null;then
+ DOWNLOADER='perl' # does not use ssl by default
+ elif [[ $BSD_VERSION == 'openbsd' ]] && type -p ftp &>/dev/null;then
+ DOWNLOADER='ftp'
+ else
+ DOWNLOADER='no-downloader'
+ fi
+ # echo $DOWNLOADER
+}
+
+set_user_paths()
+{
+ local b_conf='false' b_data='false'
+
+ if [[ -n $XDG_CONFIG_HOME ]];then
+ SELF_CONFIG_DIR=$XDG_CONFIG_HOME
+ b_conf=true
+ elif [[ -d $HOME/.config ]];then
+ SELF_CONFIG_DIR=$HOME/.config
+ b_conf=true
+ else
+ SELF_CONFIG_DIR="$HOME/.$SELF_NAME"
+ fi
+ if [[ -n $XDG_DATA_HOME ]];then
+ SELF_DATA_DIR=$XDG_DATA_HOME/$SELF_NAME
+ b_data=true
+ elif [[ -d $HOME/.local/share ]];then
+ SELF_DATA_DIR=$HOME/.local/share/$SELF_NAME
+ b_data=true
+ else
+ SELF_DATA_DIR="$HOME/.$SELF_NAME"
+ fi
+ # note, this used to be created/checked in specific instance, but we'll just do it
+ # universally so it's done at script start.
+ if [[ ! -d $SELF_DATA_DIR ]];then
+ mkdir $SELF_DATA_DIR
+ fi
+
+ if [[ $b_conf == 'true' && -f $HOME/.$SELF_NAME/$SELF_NAME.conf ]];then
+ mv -f $HOME/.$SELF_NAME/$SELF_NAME.conf $SELF_CONFIG_DIR
+ echo "Moved $SELF_NAME.conf from $HOME/.$SELF_NAME to $SELF_CONFIG_DIR"
+ fi
+ if [[ $b_data == 'true' && -d $HOME/.$SELF_NAME ]];then
+ mv -f $HOME/.$SELF_NAME/* $SELF_DATA_DIR
+ rm -Rf $HOME/.$SELF_NAME
+ echo "Moved data dir $HOME/.$SELF_NAME to $SELF_DATA_DIR"
+ fi
+
+ LOG_FILE=$SELF_DATA_DIR/$LOG_FILE
+ LOG_FILE_1=$SELF_DATA_DIR/$LOG_FILE_1
+ LOG_FILE_2=$SELF_DATA_DIR/$LOG_FILE_2
+}
+
+########################################################################
+#### UTILITIES
+########################################################################
+
+#### -------------------------------------------------------------------
+#### COLOR SELECTOR
+#### -------------------------------------------------------------------
+
select_default_color_scheme()
{
eval $LOGFS
@@ -1411,364 +1419,26 @@ select_default_color_scheme()
print_screen_output "97 (irc, X, in terminal - $irc_x_term); 98 (irc, no X - $irc_console); 99 (global - $global)"
exit 0
fi
-
eval $LOGFE
}
-########################################################################
-#### UTILITY FUNCTIONS
-########################################################################
-
#### -------------------------------------------------------------------
-#### error handler, debugger, script updater
+#### DEBUGGERS
#### -------------------------------------------------------------------
-# Error handling
-# args: $1 - error number; $2 - optional, extra information; $3 - optional extra info
-error_handler()
-{
- eval $LOGFS
- local error_message=''
-
- # assemble the error message
- case $1 in
- 2) error_message="large flood danger, debug buffer full!"
- ;;
- 3) error_message="unsupported color scheme number: $2"
- ;;
- 4) error_message="unsupported verbosity level: $2"
- ;;
- 5) error_message="dependency not met: $2 not found in path.\nFor distribution installation package names and missing apps information, run: $SELF_NAME --recommends"
- ;;
- 6) error_message="/proc not found! Quitting..."
- ;;
- 7) error_message="One of the options you entered in your script parameters: $2\nis not supported.The option may require extra arguments to work.\nFor supported options (and their arguments), check the help menu: $SELF_NAME -h"
- ;;
- 8) error_message="the self-updater failed, $DOWNLOADER exited with error: $2.\nYou probably need to be root.\nHint, to make for easy updates without being root, do: chown <user name> $SELF_PATH/$SELF_NAME"
- ;;
- 9) error_message="unsupported debugging level: $2"
- ;;
- 10)
- error_message="the alt download url you provided: $2\nappears to be wrong, download aborted. Please note, the url\nneeds to end in /, without $SELF_NAME, like: http://yoursite.com/downloads/"
- ;;
- 11)
- error_message="unsupported testing option argument: -! $2"
- ;;
- 12)
- error_message="the git branch download url: $2\nappears to be empty currently. Make sure there is an actual source branch version\nactive before you try this again. Check https://github.com/smxi/inxi\nto verify the branch status."
- ;;
- 13)
- error_message="The -t option requires the following extra arguments (no spaces between letters/numbers):\nc m cm [required], for example: -t cm8 OR -t cm OR -t c9\n(numbers: 1-20, > 5 throttled to 5 in irc clients) You entered: $2"
- ;;
- 14)
- error_message="failed to write correctly downloaded $SELF_NAME to location $SELF_PATH.\nThis usually means you don't have permission to write to that location, maybe you need to be root?\nThe operation failed with error: $2"
- ;;
- 15)
- error_message="failed set execute permissions on $SELF_NAME at location $SELF_PATH.\nThis usually means you don't have permission to set permissions on files there, maybe you need to be root?\nThe operation failed with error: $2"
- ;;
- 16)
- error_message="$SELF_NAME downloaded but the file data is corrupted. Purged data and using current version."
- ;;
- 17)
- error_message="All $SELF_NAME self updater features have been disabled by the distribution\npackage maintainer. This includes the option you used: $2"
- ;;
- 18)
- error_message="The argument you provided for $2 does not have supported syntax.\nPlease use the following formatting:\n$3"
- ;;
- 19)
- error_message="The option $2 has been deprecated. Please use $3 instead.\nSee -h for instructions and syntax."
- ;;
- 20)
- error_message="The option you selected has been deprecated. $2\nSee the -h (help) menu for currently supported options."
- ;;
- 21)
- error_message="Width option requires an integer value of 80 or more.\nYou entered: $2"
- ;;
- *) error_message="error unknown: $@"
- set -- 99
- ;;
- esac
- # then print it and exit
- print_screen_output "Error $1: $error_message"
- eval $LOGFE
- exit $1
-}
-
-# prior to script up set, pack the data into an array
-# then we'll print it out later.
-# args: $1 - $@ debugging string text
-script_debugger()
-{
- eval $LOGFS
- if [[ $B_SCRIPT_UP == 'true' ]];then
- # only return if debugger is off and no pre start up errors have occurred
- if [[ $DEBUG -eq 0 && $DEBUG_BUFFER_INDEX -eq 0 ]];then
- return 0
- # print out the stored debugging information if errors occurred
- elif [[ $DEBUG_BUFFER_INDEX -gt 0 ]];then
- for (( DEBUG_BUFFER_INDEX=0; DEBUG_BUFFER_INDEX < ${#A_DEBUG_BUFFER[@]}; DEBUG_BUFFER_INDEX++ ))
- do
- print_screen_output "${A_DEBUG_BUFFER[$DEBUG_BUFFER_INDEX]}"
- done
- DEBUG_BUFFER_INDEX=0
- fi
- # or print out normal debugger messages if debugger is on
- if [[ $DEBUG -gt 0 ]];then
- print_screen_output "$1"
- fi
- else
- if [[ $B_DEBUG_FLOOD == 'true' && $DEBUG_BUFFER_INDEX -gt 10 ]];then
- error_handler 2
- # this case stores the data for later printout, will print out only
- # at B_SCRIPT_UP == 'true' if array index > 0
- else
- A_DEBUG_BUFFER[$DEBUG_BUFFER_INDEX]="$1"
- # increment count for next pre script up debugging error
- (( DEBUG_BUFFER_INDEX++ ))
- fi
- fi
- eval $LOGFE
-}
-
-# NOTE: no logging available until get_parameters is run, since that's what sets logging
-# in order to trigger earlier logging manually set B_USE_LOGGING to true in top variables.
-# $1 alone: logs data; $2 with or without $3 logs func start/end.
-# $1 type (fs/fe/cat/raw) or logged data; [$2 is $FUNCNAME; [$3 - function args]]
-log_function_data()
-{
- if [ "$B_USE_LOGGING" == 'true' ];then
- local logged_data='' spacer=' ' line='----------------------------------------'
- case $1 in
- fs)
- logged_data="Function: $2 - Primary: Start"
- if [ -n "$3" ];then
- logged_data="$logged_data\n${spacer}Args: $3"
- fi
- spacer=''
- ;;
- fe)
- logged_data="Function: $2 - Primary: End"
- spacer=''
- ;;
- cat)
- if [[ $B_LOG_FULL_DATA == 'true' ]];then
- for cat_file in $2
- do
- logged_data="$logged_data\n$line\nFull file data: cat $cat_file\n\n$( cat $cat_file )\n$line\n"
- done
- spacer=''
- fi
- ;;
- raw)
- if [[ $B_LOG_FULL_DATA == 'true' ]];then
- logged_data="\n$line\nRaw system data:\n\n$2\n$line\n"
- spacer=''
- fi
- ;;
- *)
- logged_data="$1"
- ;;
- esac
- # Create any required line breaks and strip out escape color code, either ansi (case 1)or irc (case 2).
- # This pattern doesn't work for irc colors, if we need that someone can figure it out
- if [[ -n $logged_data ]];then
- if [[ $B_LOG_COLORS != 'true' ]];then
- echo -e "${spacer}$logged_data" | sed $SED_RX 's/\x1b\[[0-9]{1,2}(;[0-9]{1,2}){0,2}m//g' >> $LOG_FILE
- else
- echo -e "${spacer}$logged_data" >> $LOG_FILE
- fi
- fi
- fi
-}
-
-# called in the initial -@ 10 script args setting so we can get logging as soon as possible
-# will have max 3 files, inxi.log, inxi.1.log, inxi.2.log
-create_rotate_logfiles()
-{
- # do the rotation if logfile exists
- if [[ -f $LOG_FILE ]];then
- # copy if present second to third
- if [[ -f $LOG_FILE_1 ]];then
- mv -f $LOG_FILE_1 $LOG_FILE_2
- fi
- # then copy initial to second
- mv -f $LOG_FILE $LOG_FILE_1
- fi
- # now create the logfile
- touch $LOG_FILE
- # and echo the start data
- echo "=========================================================" >> $LOG_FILE
- echo "START $SELF_NAME LOGGING:" >> $LOG_FILE
- echo "Script started: $( date +%Y-%m-%d-%H:%M:%S )" >> $LOG_FILE
- echo "=========================================================" >> $LOG_FILE
-}
-
-# args: $1 - download url, not including file name; $2 - string to print out
-# $3 - update type option
-# note that $1 must end in / to properly construct the url path
-script_self_updater()
-{
- eval $LOGFS
- local downloader_error=0 file_contents='' downloader_man_error=0
- local man_file_location=$( set_man_location )
- local man_file_path="$man_file_location/inxi.1.gz"
-
- if [[ $B_IRC == 'true' ]];then
- print_screen_output "Sorry, you can't run the $SELF_NAME self updater option (-$3) in an IRC client."
- exit 1
- fi
-
- print_screen_output "Starting $SELF_NAME self updater."
- print_screen_output "Currently running $SELF_NAME version number: $SELF_VERSION"
- print_screen_output "Current version patch number: $SELF_PATCH"
- print_screen_output "Current version release date: $SELF_DATE"
- print_screen_output "Updating $SELF_NAME in $SELF_PATH using $2 as download source..."
- case $DOWNLOADER in
- curl)
- file_contents="$( curl $NO_SSL_OPT -s $1$SELF_NAME )" || downloader_error=$?
- ;;
- fetch)
- file_contents="$( fetch $NO_SSL_OPT -q -o - $1$SELF_NAME )" || downloader_error=$?
- ;;
- ftp)
- file_contents="$( ftp $NO_SSL_OPT -o - $1$SELF_NAME 2>/dev/null )" || downloader_error=$?
- ;;
- wget)
- file_contents="$( wget $NO_SSL_OPT -q -O - $1$SELF_NAME )" || downloader_error=$?
- ;;
- no-downloader)
- downloader_error=1
- ;;
- esac
-
- # then do the actual download
- if [[ $downloader_error -eq 0 ]];then
- # make sure the whole file got downloaded and is in the variable
- if [[ -n $( grep '###\*\*EOF\*\*###' <<< "$file_contents" ) ]];then
- echo "$file_contents" > $SELF_PATH/$SELF_NAME || error_handler 14 "$?"
- chmod +x $SELF_PATH/$SELF_NAME || error_handler 15 "$?"
- parse_version_data 'main'
- parse_version_data 'patch'
- parse_version_data 'date'
- print_screen_output "Successfully updated to $2 version: $SELF_VERSION"
- print_screen_output "New $2 version patch number: $SELF_PATCH"
- print_screen_output "New $2 version release date: $SELF_DATE"
- print_screen_output "To run the new version, just start $SELF_NAME again."
- print_screen_output "----------------------------------------"
- print_screen_output "Starting download of man page file now."
- if [[ $B_MAN == 'false' ]];then
- print_screen_output "Skipping man download because branch version is being used."
- elif [[ ! -d $man_file_location ]];then
- print_screen_output "The required man directory was not detected on your system, unable to continue: $man_file_location"
- else
- if [[ $B_ROOT == 'true' ]];then
- print_screen_output "Checking Man page download URL..."
- if [[ -f /usr/share/man/man8/inxi.8.gz ]];then
- print_screen_output "Updating man page location to man1."
- mv -f /usr/share/man/man8/inxi.8.gz $man_file_location/inxi.1.gz
- if type -p mandb &>/dev/null;then
- exec $( type -p mandb ) -q
- fi
- fi
- if [[ $DOWNLOADER == 'wget' ]];then
- wget $NO_SSL_OPT -q --spider $MAN_FILE_DOWNLOAD || downloader_man_error=$?
- fi
- if [[ $downloader_man_error -eq 0 ]];then
- if [[ $DOWNLOADER == 'wget' ]];then
- print_screen_output "Man file download URL verified: $MAN_FILE_DOWNLOAD"
- fi
- print_screen_output "Downloading Man page file now."
- case $DOWNLOADER in
- curl)
- curl $NO_SSL_OPT -s -o $man_file_path $MAN_FILE_DOWNLOAD || downloader_man_error=$?
- ;;
- fetch)
- fetch $NO_SSL_OPT -q -o $man_file_path $MAN_FILE_DOWNLOAD || downloader_man_error=$?
- ;;
- ftp)
- ftp $NO_SSL_OPT -o $man_file_path $MAN_FILE_DOWNLOAD 2>/dev/null || downloader_man_error=$?
- ;;
- wget)
- wget $NO_SSL_OPT -q -O $man_file_path $MAN_FILE_DOWNLOAD || downloader_man_error=$?
- ;;
- no-downloader)
- downloader_man_error=1
- ;;
- esac
- if [[ $downloader_man_error -gt 0 ]];then
- print_screen_output "Oh no! Something went wrong downloading the Man gz file at: $MAN_FILE_DOWNLOAD"
- print_screen_output "Check the error messages for what happened. Error: $downloader_man_error"
- else
- print_screen_output "Download/install of man page successful. Check to make sure it works: man inxi"
- fi
- else
- print_screen_output "Man file download URL failed, unable to continue: $MAN_FILE_DOWNLOAD"
- fi
- else
- print_screen_output "Updating / Installing the Man page requires root user, writing to: $man_file_location"
- print_screen_output "If you want the man page, you'll have to run $SELF_NAME -$3 as root."
- fi
- fi
- exit 0
- else
- error_handler 16
- fi
- # now run the error handlers on any wget failure
- else
- if [[ $2 == 'source server' ]];then
- error_handler 8 "$downloader_error"
- elif [[ $2 == 'alt server' ]];then
- error_handler 10 "$1"
- else
- error_handler 12 "$1"
- fi
- fi
- eval $LOGFS
-}
-
-set_man_location()
-{
- local location='' default_location='/usr/share/man/man1'
- local man_paths=$(man --path 2>/dev/null) man_local='/usr/local/share/man'
- local b_use_local=false
-
- if [[ -n "$man_paths" && -n $( grep $man_local <<< "$man_paths" ) ]];then
- b_use_local=true
- fi
-
- # for distro installs, existing inxi man manual installs, do nothing
- if [[ -f $default_location/inxi.1.gz ]];then
- location=$default_location
- else
- if [[ $b_use_local == 'true' ]];then
- if [[ ! -d $man_local/man1 ]];then
- mkdir $man_local/man1
- fi
- location="$man_local/man1"
- fi
-# print_screen_output "Updating man page location to man1."
-# mv -f /usr/share/man/man1/inxi.1.gz /usr/local/share/man/man1/inxi.1.gz
-# if type -p mandb &>/dev/null;then
-# exec $( type -p mandb ) -q
-# fi
- fi
-
- if [[ -z "$location" ]];then
- location=$default_location
- fi
-
- echo $location
-}
-
# args: $1 - debug data type: sys|xorg|disk
debug_data_collector()
{
- local sys_data_file='' error='' Debug_Data_Dir='' bsd_string=''
+ local sys_data_file='' error='' bsd_string='' sys_traverse_data=''
local xorg_d_files='' xorg_file='' a_distro_ids=''
- local completed_gz_file='' ftp_upload='ftp.techpatterns.com/incoming'
+ local completed_gz_file='' Ftp_Upload='ftp.techpatterns.com/incoming'
local Line='-------------------------'
local start_directory=$( pwd )
- local host='' debug_i='' root_string='' b_traverse_worked='false' b_uploaded='false'
+ local host='' debug_i='' root_string='' b_uploaded='false'
+
+ if [[ -n $ALTERNATE_FTP ]];then
+ Ftp_Upload=$ALTERNATE_FTP
+ fi
if (( "$BASH" >= 4 ));then
host="${HOSTNAME,,}"
@@ -1789,25 +1459,27 @@ debug_data_collector()
if [[ $( whoami ) == 'root' ]];then
root_string='-root'
fi
- Debug_Data_Dir="inxi$bsd_string-$host-$(date +%Y%m%d-%H%M%S)-$1$root_string"
+
+ local Debug_Data_Dir="$SELF_NAME$bsd_string-$host-$(date +%Y%m%d-%H%M%S)-$1$root_string"
+ local debug_gz="$Debug_Data_Dir.tar.gz"
+
if [[ $B_IRC == 'false' ]];then
- if [[ -n $ALTERNATE_FTP ]];then
- ftp_upload=$ALTERNATE_FTP
- fi
- echo "Starting debugging data collection type: $1"
+ echo "Starting $SELF_NAME debugging data collection type: $1"
cd $SELF_DATA_DIR
if [[ -d $SELF_DATA_DIR/$Debug_Data_Dir ]];then
echo "Deleting previous $SELF_NAME debugger data directory..."
rm -rf $SELF_DATA_DIR/$Debug_Data_Dir
fi
mkdir $SELF_DATA_DIR/$Debug_Data_Dir
- if [[ -f $SELF_DATA_DIR/$Debug_Data_Dir.tar.gz ]];then
+ if [[ -f $SELF_DATA_DIR/$debug_gz ]];then
echo 'Deleting previous tar.gz file...'
- rm -f $SELF_DATA_DIR/$Debug_Data_Dir.tar.gz
+ rm -f $SELF_DATA_DIR/$debug_gz
fi
- echo 'Collecting system info: sensors, lsusb, lspci, lspci -v data, plus /proc data'
- echo 'also checking for dmidecode data: note, you must be root to have dmidecode work.'
echo "Data going into: $SELF_DATA_DIR/$Debug_Data_Dir"
+ echo 'Note: for dmidecode data you must be root.'
+ echo $Line
+ echo "Collecting system data..."
+
# bsd tools http://cb.vu/unixtoolbox.xhtml
# freebsd
if type -p pciconf &>/dev/null;then
@@ -1849,19 +1521,6 @@ debug_data_collector()
# diskinfo -v <disk>
# fdisk <disk>
dmidecode &> $Debug_Data_Dir/dmidecode.txt
- get_repo_data "$SELF_DATA_DIR/$Debug_Data_Dir"
- if type -p shopt &>/dev/null;then
- shopt -s nullglob
- a_distro_ids=(/etc/*[-_]{release,version})
- shopt -u nullglob
- echo ${a_distro_ids[@]} &> $Debug_Data_Dir/etc-distro-files.txt
- for distro_file in ${a_distro_ids[@]} /etc/issue
- do
- if [[ -f $distro_file ]];then
- cat $distro_file &> $Debug_Data_Dir/distro-file${distro_file//\//-}
- fi
- done
- fi
dmesg &> $Debug_Data_Dir/dmesg.txt
lscpu &> $Debug_Data_Dir/lscpu.txt
lspci &> $Debug_Data_Dir/lspci.txt
@@ -1873,18 +1532,20 @@ debug_data_collector()
lspci -mmnn &> $Debug_Data_Dir/lspci-mmnn.txt
lspci -mmnnv &> $Debug_Data_Dir/lspci-mmnnv.txt
lspci -v &> $Debug_Data_Dir/lspci-v.txt
- lsusb &> $Debug_Data_Dir/lsusb.txt
+ if type -p lsusb &>/dev/null;then
+ lsusb &> $Debug_Data_Dir/lsusb.txt
+ lsusb -v &> $Debug_Data_Dir/lsusb-v.txt
+ else
+ touch $Debug_Data_Dir/lsusb-absent
+ fi
if type -p hciconfig &>/dev/null;then
hciconfig -a &> $Debug_Data_Dir/hciconfig-a.txt
else
touch $Debug_Data_Dir/hciconfig-absent
fi
- ls /sys &> $Debug_Data_Dir/ls-sys.txt
ps aux &> $Debug_Data_Dir/ps-aux.txt
ps -e &> $Debug_Data_Dir/ps-e.txt
ps -p 1 &> $Debug_Data_Dir/ps-p-1.txt
- echo "Collecting init data..."
- cat /proc/1/comm &> $Debug_Data_Dir/proc-1-comm.txt
runlevel &> $Debug_Data_Dir/runlevel.txt
if type -p rc-status &>/dev/null;then
rc-status -a &> $Debug_Data_Dir/rc-status-a.txt
@@ -1910,17 +1571,6 @@ debug_data_collector()
else
touch $Debug_Data_Dir/strings-absent
fi
- local id_dir='/sys/class/power_supply/'
- local ids=$( ls $id_dir 2>/dev/null )
- if [[ -n $ids ]];then
- for batid in $ids
- do
- cat $id_dir$batid'/uevent' &> $Debug_Data_Dir/sys-power-supply-$batid.txt
- done
- else
- touch $Debug_Data_Dir/sys-power-supply-none
- fi
-
# leaving this commented out to remind that some systems do not
# support strings --version, but will just simply hang at that command
# which you can duplicate by simply typing: strings then hitting enter, you will get hang.
@@ -1931,12 +1581,6 @@ debug_data_collector()
else
touch $Debug_Data_Dir/nvidia-smi-absent
fi
- head -n 1 /proc/asound/card*/codec* &> $Debug_Data_Dir/proc-asound-card-codec.txt
- if [[ -f /proc/version ]];then
- cat /proc/version &> $Debug_Data_Dir/proc-version.txt
- else
- touch $Debug_Data_Dir/proc-version-absent
- fi
echo $CC &> $Debug_Data_Dir/cc-content.txt
ls /usr/bin/gcc* &> $Debug_Data_Dir/gcc-sys-versions.txt
if type -p gcc &>/dev/null;then
@@ -1954,11 +1598,45 @@ debug_data_collector()
else
touch $Debug_Data_Dir/systemd-detect-virt-absent
fi
+ echo "Collecting Perl module data..."
if type -p perl &>/dev/null;then
- perl -MFile::Find=find -MFile::Spec::Functions -Tlwe 'find { wanted => sub { print canonpath $_ if /\.pm\z/ }, no_chdir => 1 }, @INC' &> $Debug_Data_Dir/perl-modules.txt
+ perl -MFile::Find=find -MFile::Spec::Functions -Tlwe 'find { wanted => sub { print canonpath $_ if /\.pm\z/ }, no_chdir => 1 }, @INC' 2>/dev/null | sort &> $Debug_Data_Dir/perl-modules.txt
else
touch $Debug_Data_Dir/perl-missing.txt
fi
+ echo "Collecting system file data..."
+ cat /proc/1/comm &> $Debug_Data_Dir/proc-1-comm.txt
+ if type -t get_repo_data &>/dev/null;then
+ get_repo_data "$SELF_DATA_DIR/$Debug_Data_Dir"
+ fi
+ head -n 1 /proc/asound/card*/codec* &> $Debug_Data_Dir/proc-asound-card-codec.txt
+ if [[ -f /proc/version ]];then
+ cat /proc/version &> $Debug_Data_Dir/proc-version.txt
+ else
+ touch $Debug_Data_Dir/proc-version-absent
+ fi
+ local id_dir='/sys/class/power_supply/'
+ local ids=$( ls $id_dir 2>/dev/null )
+ if [[ -n $ids ]];then
+ for batid in $ids
+ do
+ cat $id_dir$batid'/uevent' &> $Debug_Data_Dir/sys-power-supply-$batid.txt
+ done
+ else
+ touch $Debug_Data_Dir/sys-power-supply-none
+ fi
+ if type -p shopt &>/dev/null;then
+ shopt -s nullglob
+ a_distro_ids=(/etc/*[-_]{release,version})
+ shopt -u nullglob
+ echo ${a_distro_ids[@]} &> $Debug_Data_Dir/etc-distro-files.txt
+ for distro_file in ${a_distro_ids[@]} /etc/issue
+ do
+ if [[ -f $distro_file ]];then
+ cat $distro_file &> $Debug_Data_Dir/distro-file${distro_file//\//-}
+ fi
+ done
+ fi
cat /etc/src.conf &> $Debug_Data_Dir/bsd-etc-src-conf.txt
cat /etc/make.conf &> $Debug_Data_Dir/bsd-etc-make-conf.txt
cat /etc/issue &> $Debug_Data_Dir/etc-issue.txt
@@ -1977,8 +1655,9 @@ debug_data_collector()
echo $XDG_CONFIG_DIRS &> $Debug_Data_Dir/xdg_config_dirs.txt
echo $XDG_DATA_HOME &> $Debug_Data_Dir/xdg_data_home.txt
echo $XDG_DATA_DIRS &> $Debug_Data_Dir/xdg_data_dirs.txt
-
- check_recommends_user_output &> $Debug_Data_Dir/check-recommends-user-output.txt
+ if type -t check_recommends_user_output &>/dev/null;then
+ check_recommends_user_output &> $Debug_Data_Dir/check-recommends-user-output.txt
+ fi
if [[ $1 == 'xorg' || $1 == 'all' ]];then
if [[ $B_RUNNING_IN_DISPLAY != 'true' ]];then
echo 'Warning: only some of the data collection can occur if you are not in X'
@@ -1988,7 +1667,7 @@ debug_data_collector()
echo 'Warning: only some of the data collection can occur if you are running as Root user'
touch $Debug_Data_Dir/warning-root-user
fi
- echo 'Collecting Xorg log and xorg.conf files'
+ echo 'Collecting Xorg log and xorg.conf files...'
if [[ -e $FILE_XORG_LOG ]];then
cat $FILE_XORG_LOG &> $Debug_Data_Dir/xorg-log-file.txt
else
@@ -2139,15 +1818,16 @@ debug_data_collector()
swapon -s &> $Debug_Data_Dir/swapon-s.txt
sysctl -b kern.geom.conftxt &> $Debug_Data_Dir/bsd-sysctl-b-kern.geom.conftxt.txt
sysctl -b kern.geom.confxml &> $Debug_Data_Dir/bsd-sysctl-b-kern.geom.confxml.txt
- zfs list &> $Debug_Data_Dir/bsd-zfs-list.txt
- zpool list &> $Debug_Data_Dir/bsd-zpool-list.txt
- zpool list -v &> $Debug_Data_Dir/bsd-zpool-list-v.txt
+ zfs list &> $Debug_Data_Dir/zfs-list.txt
+ zpool list &> $Debug_Data_Dir/zpool-list.txt
+ zpool list -v &> $Debug_Data_Dir/zpool-list-v.txt
df -P --exclude-type=aufs --exclude-type=squashfs --exclude-type=unionfs --exclude-type=devtmpfs --exclude-type=tmpfs --exclude-type=iso9660 &> $Debug_Data_Dir/df-P-excludes.txt
df -P &> $Debug_Data_Dir/bsd-df-P-no-excludes.txt
cat /proc/mdstat &> $Debug_Data_Dir/proc-mdstat.txt
cat $FILE_PARTITIONS &> $Debug_Data_Dir/proc-partitions.txt
cat $FILE_SCSI &> $Debug_Data_Dir/proc-scsi.txt
cat $FILE_MOUNTS &> $Debug_Data_Dir/proc-mounts.txt
+ cat $FILE_MDSTAT &> $Debug_Data_Dir/proc-mdstat.txt
cat /proc/sys/dev/cdrom/info &> $Debug_Data_Dir/proc-cdrom-info.txt
ls /proc/ide/ &> $Debug_Data_Dir/proc-ide.txt
cat /proc/ide/*/* &> $Debug_Data_Dir/proc-ide-hdx-cat.txt
@@ -2168,6 +1848,8 @@ debug_data_collector()
if [[ $B_UPLOAD_DEBUG_DATA == 'true' || $1 == 'disk' || $1 == 'sys' || $1 == 'all' ]];then
touch $SELF_DATA_DIR/$Debug_Data_Dir/sys-dir-error.txt
fi
+ # just on the off chance bsds start having a fake /sys
+ ls /sys &> $Debug_Data_Dir/sys-ls-1.txt
# note, only bash 4> supports ;;& for case, so using if/then here
if [[ -z $BSD_TYPE ]] && [[ $1 == 'disk' || $1 == 'sys' || $1 == 'all' ]];then
echo $Line
@@ -2180,104 +1862,57 @@ debug_data_collector()
if type -p perl &>/dev/null;then
echo "Parsing /sys files..."
echo -n "Using Perl: " && perl --version | grep -oE 'v[0-9.]+'
- sys_traverse_data="$( perl -e '
- use File::Find;
- use strict;
- # use warnings;
- use 5.008;
- my @content = ();
- find( \&wanted, "/sys");
- process_data( @content );
- sub wanted {
- return if -d; # not directory
- return unless -e; # Must exist
- return unless -r; # Must be readable
- return unless -f; # Must be file
- # note: a new file in 4.11 /sys can hang this, it is /parameter/ then
- # a few variables. Since inxi does not need to see that file, we will
- # not use it. Also do not need . files or __ starting files
- return if $File::Find::name =~ /\/(\.[a-z]|__|parameters\/|debug\/)/;
- # comment this one out if you experience hangs or if
- # we discover syntax of foreign language characters
- # Must be ascii like. This is questionable and might require further
- # investigation, it is removing some characters that we might want
- return unless -T;
- # print $File::Find::name . "\n";
- push @content, $File::Find::name;
- return;
- }
- sub process_data {
- my $result = "";
- my $row = "";
- my $fh;
- my $data="";
- my $sep="";
- # no sorts, we want the order it comes in
- # @content = sort @content;
- foreach (@content){
- $data="";
- $sep="";
- open($fh, "<$_");
- while ($row = <$fh>) {
- chomp $row;
- $data .= $sep . "\"" . $row . "\"";
- $sep=", ";
- }
- $result .= "$_:[$data]\n";
- # print "$_:[$data]\n"
- }
- # print scalar @content . "\n";
- print "$result";
- } ' )"
+ sys_traverse_data="$( sys_traverse_data )"
if [[ -z "$sys_traverse_data" ]];then
echo -e "ERROR: failed to generate /sys data - removing data file.\nContinuing with incomplete data collection."
echo "Continuing with incomplete data collection."
rm -f $sys_data_file
echo "/sys data generation failed. No data collected." >> $Debug_Data_Dir/sys-dir-error.txt
else
- b_traverse_worked='true'
echo 'Completed /sys data collection.'
echo -n "$sys_traverse_data" > $sys_data_file
fi
fi
fi
- echo $Line
- echo "Creating $SELF_NAME output file now. This can take a few seconds..."
- echo "Starting $SELF_NAME from: $start_directory"
- cd $start_directory
- $SELF_PATH/$SELF_NAME -F${debug_i}Rfrploudmxxx -c 0 -@ 8 -y 120 > $SELF_DATA_DIR/$Debug_Data_Dir/inxi-F${debug_i}Rfrploudmxxxy120.txt
- cp $LOG_FILE $SELF_DATA_DIR/$Debug_Data_Dir
- if [[ -f $SELF_DATA_DIR/$Debug_Data_Dir.tar.gz ]];then
- echo "Found and removing previous tar.gz data file: $Debug_Data_Dir.tar.gz"
- rm -f $SELF_DATA_DIR/$Debug_Data_Dir.tar.gz
+ # running in inxi
+ if type -t check_recommends_user_output &>/dev/null;then
+ echo $Line
+ echo "Creating $SELF_NAME output file now. This can take a few seconds..."
+ echo "Starting $SELF_NAME from: $start_directory"
+ cd $start_directory
+ $SELF_PATH/$SELF_NAME -F${debug_i}Rfrploudmxxx -c 0 -@ 8 -y 120 > $SELF_DATA_DIR/$Debug_Data_Dir/inxi-F${debug_i}Rfrploudmxxxy120.txt
+ cp $LOG_FILE $SELF_DATA_DIR/$Debug_Data_Dir
+ elif type -p inxi &>/dev/null;then
+ echo $Line
+ echo "Creating basic inxi output file..."
+ inxi -Fxxx > $Debug_Data_Dir/inxi-Fxxx.txt
+ else
+ touch $Debug_Data_Dir/inxi-absent.txt
fi
cd $SELF_DATA_DIR
- echo 'Creating tar.gz compressed file of this material now. Contents:'
- echo $Line
- tar -cvzf $Debug_Data_Dir.tar.gz $Debug_Data_Dir
echo $Line
+ echo 'Creating tar.gz compressed file of this material...'
+ tar -czf $debug_gz $Debug_Data_Dir
echo 'Cleaning up leftovers...'
rm -rf $Debug_Data_Dir
echo 'Testing gzip file integrity...'
- gzip -t $Debug_Data_Dir.tar.gz
+ gzip -t $debug_gz
if [[ $? -gt 0 ]];then
echo 'Data in gz is corrupted, removing gzip file, try running data collector again.'
- rm -f $Debug_Data_Dir.tar.gz
+ rm -f $debug_gz
echo "Data in gz is corrupted, removed gzip file" >> $Debug_Data_Dir/gzip-error.txt
else
echo 'All done, you can find your data gzipped directory here:'
- completed_gz_file=$SELF_DATA_DIR/$Debug_Data_Dir.tar.gz
+ completed_gz_file=$SELF_DATA_DIR/$debug_gz
echo $completed_gz_file
if [[ $B_UPLOAD_DEBUG_DATA == 'true' ]];then
echo $Line
- if [[ $b_traverse_worked == 'true' ]];then
- upload_debugger_data "$completed_gz_file"
- if [[ $? -gt 0 ]];then
- echo "Error: looks like the Perl ftp upload failed. Error number: $?"
- else
- b_uploaded='true'
- echo "Hurray! Looks like the Perl ftp upload worked!"
- fi
+ upload_debugger_data "$completed_gz_file" "$Ftp_Upload"
+ if [[ $? -gt 0 ]];then
+ echo "Error: looks like the Perl ftp upload failed. Error number: $?"
+ else
+ b_uploaded='true'
+ echo "Hurray! Looks like the Perl ftp upload worked!"
fi
else
echo 'You can upload this here using most file managers: ftp.techpatterns.com/incoming'
@@ -2289,20 +1924,7 @@ debug_data_collector()
fi
exit 0
}
-sys_tree()
-{
- if type -p tree &>/dev/null;then
- tree -a -L 10 /sys > $Debug_Data_Dir/sys-tree-full-10.txt
- for branch in $( tree -i -L 1 -d --noreport /sys | grep -v 'sys$' );do
- tree -a -L 10 /sys/$branch > $Debug_Data_Dir/sys-tree-$branch-10.txt
- done
- else
- ls_sys 1
- ls_sys 2
- ls_sys 3
- ls_sys 4
- fi
-}
+
## args: $1 - depth
ls_sys()
{
@@ -2336,7 +1958,112 @@ ls_sys()
}' &> $Debug_Data_Dir/sys-ls-$1.txt
}
-## args: $1 - debugger file name
+# prior to script up set, pack the data into an array
+# then we'll print it out later.
+# args: $1 - $@ debugging string text
+self_debugger()
+{
+ eval $LOGFS
+ if [[ $B_SCRIPT_UP == 'true' ]];then
+ # only return if debugger is off and no pre start up errors have occurred
+ if [[ $DEBUG -eq 0 && $DEBUG_BUFFER_INDEX -eq 0 ]];then
+ return 0
+ # print out the stored debugging information if errors occurred
+ elif [[ $DEBUG_BUFFER_INDEX -gt 0 ]];then
+ for (( DEBUG_BUFFER_INDEX=0; DEBUG_BUFFER_INDEX < ${#A_DEBUG_BUFFER[@]}; DEBUG_BUFFER_INDEX++ ))
+ do
+ print_screen_output "${A_DEBUG_BUFFER[$DEBUG_BUFFER_INDEX]}"
+ done
+ DEBUG_BUFFER_INDEX=0
+ fi
+ # or print out normal debugger messages if debugger is on
+ if [[ $DEBUG -gt 0 ]];then
+ print_screen_output "$1"
+ fi
+ else
+ if [[ $B_DEBUG_FLOOD == 'true' && $DEBUG_BUFFER_INDEX -gt 10 ]];then
+ error_handler 2
+ # this case stores the data for later printout, will print out only
+ # at B_SCRIPT_UP == 'true' if array index > 0
+ else
+ A_DEBUG_BUFFER[$DEBUG_BUFFER_INDEX]="$1"
+ # increment count for next pre script up debugging error
+ (( DEBUG_BUFFER_INDEX++ ))
+ fi
+ fi
+ eval $LOGFE
+}
+
+sys_traverse_data()
+{
+ local sys_traverse_data="$( perl -e '
+ use File::Find;
+ use strict;
+ # use warnings;
+ use 5.008;
+ my @content = ();
+ find( \&wanted, "/sys");
+ process_data( @content );
+ sub wanted {
+ return if -d; # not directory
+ return unless -e; # Must exist
+ return unless -r; # Must be readable
+ return unless -f; # Must be file
+ # note: a new file in 4.11 /sys can hang this, it is /parameter/ then
+ # a few variables. Since inxi does not need to see that file, we will
+ # not use it. Also do not need . files or __ starting files
+ return if $File::Find::name =~ /\/(\.[a-z]|__|kernel\/|parameters\/|debug\/)/;
+ # comment this one out if you experience hangs or if
+ # we discover syntax of foreign language characters
+ # Must be ascii like. This is questionable and might require further
+ # investigation, it is removing some characters that we might want
+ return unless -T;
+ # print $File::Find::name . "\n";
+ push @content, $File::Find::name;
+ return;
+ }
+ sub process_data {
+ my $result = "";
+ my $row = "";
+ my $fh;
+ my $data="";
+ my $sep="";
+ # no sorts, we want the order it comes in
+ # @content = sort @content;
+ foreach (@content){
+ $data="";
+ $sep="";
+ open($fh, "<$_");
+ while ($row = <$fh>) {
+ chomp $row;
+ $data .= $sep . "\"" . $row . "\"";
+ $sep=", ";
+ }
+ $result .= "$_:[$data]\n";
+ # print "$_:[$data]\n"
+ }
+ # print scalar @content . "\n";
+ print "$result";
+ } ' )"
+ echo "$sys_traverse_data"
+}
+
+sys_tree()
+{
+ if type -p tree &>/dev/null;then
+ tree -a -L 10 /sys > $Debug_Data_Dir/sys-tree-full-10.txt
+ for branch in $( tree -i -L 1 -d --noreport /sys | grep -v 'sys$' );do
+ tree -a -L 10 /sys/$branch > $Debug_Data_Dir/sys-tree-$branch-10.txt
+ done
+ else
+ # ls_sys 1
+ ls_sys 2
+ ls_sys 3
+ ls_sys 4
+ fi
+}
+
+## args: $1 - debugger file name; $2 - ftp destination [does not work]
upload_debugger_data()
{
local result='' debugger_file=$1
@@ -2371,9 +2098,11 @@ upload_debugger_data()
$ftp->quit;
print "Uploaded file $fpath.\n";
print $ftp->message;
- ' $debugger_file )"
+ ' $debugger_file )"
- echo "$result"
+ if [[ "$result" != '' ]];then
+ echo "$result"
+ fi
if [[ "$result" == *Goodbye* ]];then
return 0
else
@@ -2381,21 +2110,227 @@ upload_debugger_data()
fi
}
+#### -------------------------------------------------------------------
+#### DOWNLOADER
+#### -------------------------------------------------------------------
+
+download_file()
+{
+ local retvalue=0
+ local data=$( perl -e 'use strict;
+ use warnings;
+ use 5.008;
+ use HTTP::Tiny;
+ sub get_file {
+ my ($type, $url, $file) = @_;
+ my $response = HTTP::Tiny->new->get($url);
+ my $return = 0;
+ my $debug = 0;
+ my $fh;
+
+ if ($response->{success} == 0 ){
+ # print "Failed to connect to server/file!\n";
+ $return = 1;
+ }
+ else {
+ if ( $debug ){
+ print "$response->{success}\n";
+ print "$response->{status} $response->{reason}\n";
+ while (my ($key, $value) = each %{$response->{headers}}) {
+ for (ref $value eq "ARRAY" ? @$value : $value) {
+ print "$key: $_\n";
+ }
+ }
+ }
+ if ( $type eq "stdout" || $type eq "ua-stdout" ){
+ print "$response->{content}" if length $response->{content};
+ }
+ elsif ($type eq "spider"){
+ # do nothing, just use the return value
+ }
+ elsif ($type eq "file"){
+ open($fh, ">", $file);
+ print $fh $response->{content};
+ close $fh;
+ }
+ }
+ return $return;
+ }
+ get_file($ARGV[0],$ARGV[1],$ARGV[2]);' "$1" "$2" "$3" )
+ retvalue=$?
+ if [[ "$data" != '' ]];then
+ echo "$data"
+ fi
+ return $retvalue
+}
+# download_file 'stdout' 'https://cnn.com/robots.txt' '';echo $?; exit
+
+#### -------------------------------------------------------------------
+#### ERROR HANDLER
+#### -------------------------------------------------------------------
+
+# Error handling
+# args: $1 - error number; $2 - optional, extra information; $3 - optional extra info
+error_handler()
+{
+ eval $LOGFS
+ local error_message=''
+
+ # assemble the error message
+ case $1 in
+ 2) error_message="large flood danger, debug buffer full!"
+ ;;
+ 3) error_message="unsupported color scheme number: $2"
+ ;;
+ 4) error_message="unsupported verbosity level: $2"
+ ;;
+ 5) error_message="dependency not met: $2 not found in path.\nFor distribution installation package names and missing apps information, run: $SELF_NAME --recommends"
+ ;;
+ 6) error_message="/proc not found! Quitting..."
+ ;;
+ 7) error_message="One of the options you entered in your script parameters: $2\nis not supported.The option may require extra arguments to work.\nFor supported options (and their arguments), check the help menu: $SELF_NAME -h"
+ ;;
+ 8) error_message="the self-updater failed, $DOWNLOADER exited with error: $2.\nYou probably need to be root.\nHint, to make for easy updates without being root, do: chown <user name> $SELF_PATH/$SELF_NAME"
+ ;;
+ 9) error_message="unsupported debugging level: $2"
+ ;;
+ 10)
+ error_message="the alt download url you provided: $2\nappears to be wrong, download aborted. Please note, the url\nneeds to end in /, without $SELF_NAME, like: http://yoursite.com/downloads/"
+ ;;
+ 11)
+ error_message="unsupported testing option argument: -! $2"
+ ;;
+ 12)
+ error_message="the git branch download url: $2\nappears to be empty currently. Make sure there is an actual source branch version\nactive before you try this again. Check https://github.com/smxi/inxi\nto verify the branch status."
+ ;;
+ 13)
+ error_message="The -t option requires the following extra arguments (no spaces between letters/numbers):\nc m cm [required], for example: -t cm8 OR -t cm OR -t c9\n(numbers: 1-20, > 5 throttled to 5 in irc clients) You entered: $2"
+ ;;
+ 14)
+ error_message="failed to write correctly downloaded $SELF_NAME to location $SELF_PATH.\nThis usually means you don't have permission to write to that location, maybe you need to be root?\nThe operation failed with error: $2"
+ ;;
+ 15)
+ error_message="failed set execute permissions on $SELF_NAME at location $SELF_PATH.\nThis usually means you don't have permission to set permissions on files there, maybe you need to be root?\nThe operation failed with error: $2"
+ ;;
+ 16)
+ error_message="$SELF_NAME downloaded but the file data is corrupted. Purged data and using current version."
+ ;;
+ 17)
+ error_message="All $SELF_NAME self updater features have been disabled by the distribution\npackage maintainer. This includes the option you used: $2"
+ ;;
+ 18)
+ error_message="The argument you provided for $2 does not have supported syntax.\nPlease use the following formatting:\n$3"
+ ;;
+ 19)
+ error_message="The option $2 has been deprecated. Please use $3 instead.\nSee -h for instructions and syntax."
+ ;;
+ 20)
+ error_message="The option you selected has been deprecated. $2\nSee the -h (help) menu for currently supported options."
+ ;;
+ 21)
+ error_message="Width option requires an integer value of 80 or more.\nYou entered: $2"
+ ;;
+ *) error_message="error unknown: $@"
+ set -- 99
+ ;;
+ esac
+ # then print it and exit
+ print_screen_output "Error $1: $error_message"
+ eval $LOGFE
+ exit $1
+}
+
+#### -------------------------------------------------------------------
+#### LOGGING
+#### -------------------------------------------------------------------
+
+# called in the initial -@ 10 script args setting so we can get logging as soon as possible
+# will have max 3 files, inxi.log, inxi.1.log, inxi.2.log
+create_rotate_logfiles()
+{
+ # do the rotation if logfile exists
+ if [[ -f $LOG_FILE ]];then
+ # copy if present second to third
+ if [[ -f $LOG_FILE_1 ]];then
+ mv -f $LOG_FILE_1 $LOG_FILE_2
+ fi
+ # then copy initial to second
+ mv -f $LOG_FILE $LOG_FILE_1
+ fi
+ # now create the logfile
+ touch $LOG_FILE
+ # and echo the start data
+ echo "=========================================================" >> $LOG_FILE
+ echo "START $SELF_NAME LOGGING:" >> $LOG_FILE
+ echo "Script started: $( date +%Y-%m-%d-%H:%M:%S )" >> $LOG_FILE
+ echo "=========================================================" >> $LOG_FILE
+}
+
+# NOTE: no logging available until get_parameters is run, since that's what sets logging
+# in order to trigger earlier logging manually set B_USE_LOGGING to true in top variables.
+# $1 alone: logs data; $2 with or without $3 logs func start/end.
+# $1 type (fs/fe/cat/raw) or logged data; [$2 is $FUNCNAME; [$3 - function args]]
+log_function_data()
+{
+ if [ "$B_USE_LOGGING" == 'true' ];then
+ local logged_data='' spacer=' ' line='----------------------------------------'
+ case $1 in
+ fs)
+ logged_data="Function: $2 - Primary: Start"
+ if [ -n "$3" ];then
+ logged_data="$logged_data\n${spacer}Args: $3"
+ fi
+ spacer=''
+ ;;
+ fe)
+ logged_data="Function: $2 - Primary: End"
+ spacer=''
+ ;;
+ cat)
+ if [[ $B_LOG_FULL_DATA == 'true' ]];then
+ for cat_file in $2
+ do
+ logged_data="$logged_data\n$line\nFull file data: cat $cat_file\n\n$( cat $cat_file )\n$line\n"
+ done
+ spacer=''
+ fi
+ ;;
+ raw)
+ if [[ $B_LOG_FULL_DATA == 'true' ]];then
+ logged_data="\n$line\nRaw system data:\n\n$2\n$line\n"
+ spacer=''
+ fi
+ ;;
+ *)
+ logged_data="$1"
+ ;;
+ esac
+ # Create any required line breaks and strip out escape color code, either ansi (case 1)or irc (case 2).
+ # This pattern doesn't work for irc colors, if we need that someone can figure it out
+ if [[ -n $logged_data ]];then
+ if [[ $B_LOG_COLORS != 'true' ]];then
+ echo -e "${spacer}$logged_data" | sed $SED_RX 's/\x1b\[[0-9]{1,2}(;[0-9]{1,2}){0,2}m//g' >> $LOG_FILE
+ else
+ echo -e "${spacer}$logged_data" >> $LOG_FILE
+ fi
+ fi
+ fi
+}
+
+#### -------------------------------------------------------------------
+#### RECOMMENDS
+#### -------------------------------------------------------------------
+
check_recommends_user_output()
{
local Line=$LINE1
local gawk_version='N/A' sed_version='N/A' sudo_version='N/A' python_version='N/A'
- local downloaders_bsd='' perl_version='N/A'
+ local perl_version='N/A'
if [[ $B_IRC == 'true' ]];then
print_screen_output "Sorry, you can't run this option in an IRC client."
exit 1
fi
- if [[ -n $BSD_TYPE ]];then
- downloaders_bsd='
- fetch:BSD-only~BSD-only~BSD-only~:-i_wan_ip;-w/-W;-U/-!_[11-15]_(BSDs)
- ftp:ftp-OpenBSD-only~ftp-OpenBSD-only~ftp-OpenBSD-only~:-i_wan_ip;-w/-W;-U/-!_[11-15]_(OpenBSD_only)'
- fi
initialize_paths
print_lines_basic "0" "" "$SELF_NAME will now begin checking for the programs it needs to operate. First a check of the main languages and tools $SELF_NAME uses. Python is only for debugging data uploads unless Perl is missing."
echo $Line
@@ -2467,20 +2402,30 @@ check_recommends_user_output()
echo 'All tests completed.'
}
+
+# Should come after above for debugging tests
# args: $1 - check item
check_recommends_items()
{
local item='' item_list='' item_string='' missing_items='' missing_string=''
local package='' application='' feature='' type='' starter='' finisher=''
- local package_deb='' package_pacman='' package_rpm=''
+ local package_deb='' package_pacman='' package_rpm='' downloaders_bsd=''
local print_string='' separator='' width=56
local required_dirs='/proc /sys'
+
+ if [[ -n $BSD_TYPE ]];then
+ downloaders_bsd='fetch:BSD-only~BSD-only~BSD-only~:-i_wan_ip;-w/-W;-U/-!_[11-15]_[OR]
+ ftp:ftp-OpenBSD-only~ftp-OpenBSD-only~ftp-OpenBSD-only~:-i_wan_ip;-w/-W;-U/-!_[11-15]_[OR]'
+ fi
# package-owner: 1 - debian/ubuntu; 2 - arch; 3 - yum/rpm
# pardus: pisi sf -q /usr/bin/package
+ # https://wiki.archlinux.org/index.php/Perl_Policy
+ # https://www.debian.org/doc/packaging-manuals/perl-policy/index.html
local required_apps='
df:coreutils~coreutils~coreutils~:partition_data
gawk:gawk~gawk~gawk~:core_tool
grep:grep~grep~grep~:string_search
+ perl:perl~perl~perl~:debugger_uploader;_debugger_/sys_traverse
lspci:pciutils~pciutils~pciutils~:hardware_data
ps:procps~procps~procps~:process_data
readlink:coreutils~coreutils~coreutils~:
@@ -2496,7 +2441,7 @@ check_recommends_items()
xrandr:x11-xserver-utils~xrandr~x11-server-utils~:-G_single_screen_resolution
'
local recommended_apps='
- dig:dnsutils~dnsutils~bind-utils:-i_first_wlan_ip_default_test
+ dig:dnsutils~dnsutils~bind-utils:-i_wlan_IP_(Default)
dmidecode:dmidecode~dmidecode~dmidecode~:-M_if_no_sys_machine_data;_-m_memory
file:file~file~file~:-o_unmounted_file_system
hciconfig:bluez~bluez-utils~bluez-utils~:-n_-i_bluetooth_data-dev_only-not_used
@@ -2514,9 +2459,10 @@ check_recommends_items()
'
local downloaders="
- wget:wget~wget~wget~:-i_wan_ip;-w/-W;-U/-!_[11-15]_(if_supported)
- curl:curl~curl~curl~:-i_wan_ip;-w/-W;-U/-!_[11-15]_(if_supported)
+ curl:curl~curl~curl~:-i_wan_ip;-w/-W;-U/-!_[11-15]_[Default|OR]
+ wget:wget~wget~wget~:-i_wan_ip;-w/-W;-U/-!_[11-15]_[OR]
$downloaders_bsd
+ perl:perl~perl~perl~:-i_wan_ip;-w/-W;-U/-!_[11-15]_[Module_HTTP::Tiny]
"
local recommended_dirs='
/sys/class/dmi/id:-M_system,_motherboard,_bios
@@ -2539,7 +2485,6 @@ check_recommends_items()
$FILE_SCSI:-D_Advanced_hard_disk_data_[used_rarely]
$FILE_XORG_LOG:-G_graphics_driver_load_status
"
-
if [[ -n $COLS_INNER ]];then
if [[ $COLS_INNER -ge 90 ]];then
width=${#LINE1} # match width of $LINE1
@@ -2547,7 +2492,6 @@ check_recommends_items()
width=$(( $COLS_INNER - 11 ))
fi
fi
-
case $1 in
downloaders)
item_list=$downloaders
@@ -2620,8 +2564,8 @@ check_recommends_items()
application=$( cut -d ':' -f 1 <<< $item )
package=$( cut -d ':' -f 2 <<< $item )
location=$( type -p $application )
- if [[ $( awk -F ":" '{print NF-1}' <<< $item ) -eq 2 ]];then
- feature=$( cut -d ':' -f 3 <<< $item )
+ if [[ $( awk -F ":" '{print NF-1}' <<< $item ) -ge 2 ]];then
+ feature=$( cut -d ':' -f 3-6 <<< $item )
else
feature=''
fi
@@ -2678,9 +2622,260 @@ check_recommends_items()
}
#### -------------------------------------------------------------------
-#### print / output cleaners
+#### UPDATER
#### -------------------------------------------------------------------
+# args: $1 - download url, not including file name; $2 - string to print out
+# $3 - update type option
+# note that $1 must end in / to properly construct the url path
+self_updater()
+{
+ eval $LOGFS
+ set_downloader
+ local downloader_error=0 file_contents='' downloader_man_error=0
+ local man_file_location=$( set_man_location )
+ local man_file_path="$man_file_location/inxi.1.gz"
+
+ if [[ $B_IRC == 'true' ]];then
+ print_screen_output "Sorry, you can't run the $SELF_NAME self updater option (-$3) in an IRC client."
+ exit 1
+ fi
+ print_screen_output "Starting $SELF_NAME self updater."
+ print_screen_output "Currently running $SELF_NAME version number: $SELF_VERSION"
+ print_screen_output "Current version patch number: $SELF_PATCH"
+ print_screen_output "Current version release date: $SELF_DATE"
+ print_screen_output "Updating $SELF_NAME in $SELF_PATH using $2 as download source..."
+ case $DOWNLOADER in
+ curl)
+ file_contents="$( curl $NO_SSL_OPT -L -s $1$SELF_NAME )" || downloader_error=$?
+ ;;
+ fetch)
+ file_contents="$( fetch $NO_SSL_OPT -q -o - $1$SELF_NAME )" || downloader_error=$?
+ ;;
+ ftp)
+ file_contents="$( ftp $NO_SSL_OPT -o - $1$SELF_NAME 2>/dev/null )" || downloader_error=$?
+ ;;
+ perl)
+ file_contents="$( download_file 'stdout' $1$SELF_NAME )" || downloader_error=$?
+ ;;
+ wget)
+ file_contents="$( wget $NO_SSL_OPT -q -O - $1$SELF_NAME )" || downloader_error=$?
+ ;;
+ no-downloader)
+ downloader_error=1
+ ;;
+ esac
+
+ # then do the actual download
+ if [[ $downloader_error -eq 0 ]];then
+ # make sure the whole file got downloaded and is in the variable
+ if [[ -n $( grep '###\*\*EOF\*\*###' <<< "$file_contents" ) ]];then
+ echo "$file_contents" > $SELF_PATH/$SELF_NAME || error_handler 14 "$?"
+ chmod +x $SELF_PATH/$SELF_NAME || error_handler 15 "$?"
+ parse_version_data 'main'
+ parse_version_data 'patch'
+ parse_version_data 'date'
+ print_screen_output "Successfully updated to $2 version: $SELF_VERSION"
+ print_screen_output "New $2 version patch number: $SELF_PATCH"
+ print_screen_output "New $2 version release date: $SELF_DATE"
+ print_screen_output "To run the new version, just start $SELF_NAME again."
+ print_screen_output "----------------------------------------"
+ print_screen_output "Starting download of man page file now."
+ if [[ $B_MAN == 'false' ]];then
+ print_screen_output "Skipping man download because branch version is being used."
+ elif [[ ! -d $man_file_location ]];then
+ print_screen_output "The required man directory was not detected on your system, unable to continue: $man_file_location"
+ else
+ if [[ $B_ROOT == 'true' ]];then
+ print_screen_output "Checking Man page download URL..."
+ if [[ -f /usr/share/man/man8/inxi.8.gz ]];then
+ print_screen_output "Updating man page location to man1."
+ mv -f /usr/share/man/man8/inxi.8.gz $man_file_location/inxi.1.gz
+ if type -p mandb &>/dev/null;then
+ exec $( type -p mandb ) -q
+ fi
+ fi
+ case $DOWNLOADER in
+ perl)
+ download_file 'spider' $MAN_FILE_DOWNLOAD || downloader_man_error=$?
+ ;;
+ wget)
+ wget $NO_SSL_OPT -q --spider $MAN_FILE_DOWNLOAD || downloader_man_error=$?
+ ;;
+ esac
+ if [[ $downloader_man_error -eq 0 ]];then
+ if [[ $DOWNLOADER == 'wget' ]];then
+ print_screen_output "Man file download URL verified: $MAN_FILE_DOWNLOAD"
+ fi
+ print_screen_output "Downloading Man page file now."
+ case $DOWNLOADER in
+ curl)
+ curl $NO_SSL_OPT -L -s -o $man_file_path $MAN_FILE_DOWNLOAD || downloader_man_error=$?
+ ;;
+ fetch)
+ fetch $NO_SSL_OPT -q -o $man_file_path $MAN_FILE_DOWNLOAD || downloader_man_error=$?
+ ;;
+ ftp)
+ ftp $NO_SSL_OPT -o $man_file_path $MAN_FILE_DOWNLOAD 2>/dev/null || downloader_man_error=$?
+ ;;
+ perl)
+ download_file 'file' $MAN_FILE_DOWNLOAD $man_file_path || downloader_man_error=$?
+ ;;
+ wget)
+ wget $NO_SSL_OPT -q -O $man_file_path $MAN_FILE_DOWNLOAD || downloader_man_error=$?
+ ;;
+ no-downloader)
+ downloader_man_error=1
+ ;;
+ esac
+ if [[ $downloader_man_error -gt 0 ]];then
+ print_screen_output "Oh no! Something went wrong downloading the Man gz file at: $MAN_FILE_DOWNLOAD"
+ print_screen_output "Check the error messages for what happened. Error: $downloader_man_error"
+ else
+ print_screen_output "Download/install of man page successful. Check to make sure it works: man inxi"
+ fi
+ else
+ print_screen_output "Man file download URL failed, unable to continue: $MAN_FILE_DOWNLOAD"
+ fi
+ else
+ print_screen_output "Updating / Installing the Man page requires root user, writing to: $man_file_location"
+ print_screen_output "If you want the man page, you'll have to run $SELF_NAME -$3 as root."
+ fi
+ fi
+ exit 0
+ else
+ error_handler 16
+ fi
+ # now run the error handlers on any wget failure
+ else
+ if [[ $2 == 'source server' ]];then
+ error_handler 8 "$downloader_error"
+ elif [[ $2 == 'alt server' ]];then
+ error_handler 10 "$1"
+ else
+ error_handler 12 "$1"
+ fi
+ fi
+ eval $LOGFS
+}
+
+set_man_location()
+{
+ local location='' default_location='/usr/share/man/man1'
+ local man_paths=$(man --path 2>/dev/null) man_local='/usr/local/share/man'
+ local b_use_local=false
+
+ if [[ -n "$man_paths" && -n $( grep $man_local <<< "$man_paths" ) ]];then
+ b_use_local=true
+ fi
+
+ # for distro installs, existing inxi man manual installs, do nothing
+ if [[ -f $default_location/inxi.1.gz ]];then
+ location=$default_location
+ else
+ if [[ $b_use_local == 'true' ]];then
+ if [[ ! -d $man_local/man1 ]];then
+ mkdir $man_local/man1
+ fi
+ location="$man_local/man1"
+ fi
+# print_screen_output "Updating man page location to man1."
+# mv -f /usr/share/man/man1/inxi.1.gz /usr/local/share/man/man1/inxi.1.gz
+# if type -p mandb &>/dev/null;then
+# exec $( type -p mandb ) -q
+# fi
+ fi
+
+ if [[ -z "$location" ]];then
+ location=$default_location
+ fi
+
+ echo $location
+}
+
+########################################################################
+#### OUTPUT
+########################################################################
+
+#### -------------------------------------------------------------------
+#### FILTERS
+#### -------------------------------------------------------------------
+
+# this removes newline and pipes.
+# args: $1 - string to clean
+remove_erroneous_chars()
+{
+ eval $LOGFS
+ ## RS is input record separator
+ ## gsub is substitute;
+ gawk '
+ BEGIN {
+ RS=""
+ }
+ {
+ gsub(/\n$/,"") ## (newline; end of string) with (nothing)
+ gsub(/\n/," "); ## (newline) with (space)
+ gsub(/^ *| *$/, "") ## (pipe char) with (nothing)
+ gsub(/ +/, " ") ## ( +) with (space)
+ gsub(/ [ ]+/, " ") ## ([ ]+) with (space)
+ gsub(/^ +| +$/, "") ## (pipe char) with (nothing)
+ printf $0
+ }' "$1" ## prints (returns) cleaned input
+ eval $LOGFE
+}
+## note: this is now running inside each gawk sequence directly to avoid exiting gawk
+## looping in bash through arrays, then re-entering gawk to clean up, then writing back to array
+## in bash. For now I'll leave this here because there's still some interesting stuff to get re methods
+# Enforce boilerplate and buzzword filters
+# args: $1 - BAN_LIST_NORMAL/BAN_LIST_CPU; $2 - string to sanitize
+sanitize_characters()
+{
+ eval $LOGFS
+ # Cannot use strong quotes to unquote a string with pipes in it!
+ # bash will interpret the |'s as usual and try to run a subshell!
+ # Using weak quotes instead, or use '"..."'
+ echo "$2" | gawk "
+ BEGIN {
+ IGNORECASE=1
+ }
+ {
+ gsub(/${!1}/,\"\")
+ gsub(/ [ ]+/,\" \") ## ([ ]+) with (space)
+ gsub(/^ +| +$/,\"\") ## (pipe char) with (nothing)
+ print ## prints (returns) cleaned input
+ }"
+ eval $LOGFE
+}
+
+#### -------------------------------------------------------------------
+#### PRINT
+#### -------------------------------------------------------------------
+
+# args: $1 - string to strip color code characters out of
+# returns count of string length minus colors
+# note; this cleanup may not be working on bsd sed
+calculate_line_length()
+{
+ local string=$1
+ # ansi:  irc: \x0312
+ # note: using special trick for bsd sed, tr - NOTE irc sed must use " double quote
+ string=$( sed -e 's/'$ESC'\[[0-9]\{1,2\}\(;[0-9]\{1,2\}\)\{0,2\}m//g' -e "s/\\\x0[0-9]\{1,3\}//g" <<< $string )
+ #echo $string
+ LINE_LENGTH=${#string}
+ # echo ${#string}
+}
+
+## this handles all verbose line construction with indentation/line starter
+## args: $1 - null (, actually: " ") or line starter; $2 - line content
+create_print_line()
+{
+ eval $LOGFS
+ # convoluted, yes, but it works to trim spaces off end
+ local line=${2%${2##*[![:space:]]}}
+ printf "${C1}%-${INDENT}s${C2} %s" "$1" "$line${CN}"
+ eval $LOGFE
+}
+
# inxi speaks through here. When run by Konversation script alias mode, uses DCOP
# for dcop to work, must use 'say' operator, AND colors must be evaluated by echo -e
# note: dcop does not seem able to handle \n so that's being stripped out and replaced with space.
@@ -2723,43 +2918,131 @@ print_screen_output()
eval $LOGFE
}
-## this handles all verbose line construction with indentation/line starter
-## args: $1 - null (, actually: " ") or line starter; $2 - line content
-create_print_line()
-{
- eval $LOGFS
- # convoluted, yes, but it works to trim spaces off end
- local line=${2%${2##*[![:space:]]}}
- printf "${C1}%-${INDENT}s${C2} %s" "$1" "$line${CN}"
- eval $LOGFE
-}
-
-# this removes newline and pipes.
-# args: $1 - string to clean
-remove_erroneous_chars()
+# uses $TERM_COLUMNS to set width using $COLS_MAX as max width
+# IMPORTANT: Must come after print_screen_output for debugging purposes
+# IMPORTANT: minimize use of subshells here or the output is too slow
+# IMPORTANT: each text chunk must be a continuous line, no line breaks. For anyone who uses a
+# code editor that can't do visual (not hard coded) line wrapping, upgrade to one that can.
+# args: $1 - 0 1 2 3 4 for indentation level; $2 -line starter, like -m; $3 - content of block.
+print_lines_basic()
{
- eval $LOGFS
- ## RS is input record separator
- ## gsub is substitute;
- gawk '
- BEGIN {
- RS=""
- }
- {
- gsub(/\n$/,"") ## (newline; end of string) with (nothing)
- gsub(/\n/," "); ## (newline) with (space)
- gsub(/^ *| *$/, "") ## (pipe char) with (nothing)
- gsub(/ +/, " ") ## ( +) with (space)
- gsub(/ [ ]+/, " ") ## ([ ]+) with (space)
- gsub(/^ +| +$/, "") ## (pipe char) with (nothing)
- printf $0
- }' "$1" ## prints (returns) cleaned input
- eval $LOGFE
+ local line_width=$COLS_MAX
+ local print_string='' indent_inner='' indent_full='' indent_x=''
+ local indent_working='' indent_working_full=''
+ local line_starter='' line_1_starter='' line_x_starter=''
+ # note: to create a padded string below
+ local fake_string=' ' temp_count='' line_count='' spacer=''
+ local indent_main=6 indent_x='' b_indent_x='true'
+
+ case $1 in
+ # for no options, start at left edge
+ 0) indent_full=0
+ line_1_starter=''
+ line_x_starter=''
+ b_indent_x='false'
+ ;;
+ 1) indent_full=$indent_main
+ temp_count=${#2}
+ if [[ $temp_count -le $indent_full ]];then
+ indent_working=$indent_full
+ else
+ indent_working=$temp_count #$(( $temp_count + 1 ))
+ fi
+ line_1_starter="$( sed -e :a -e "s/^.\{1,$indent_working\}$/& /;ta" <<< $2 )"
+ ;;
+ # first left pad 2 and 3, then right pad them
+ 2) indent_full=$(( $indent_main + 6 ))
+ indent_inner=3
+ temp_count=${#2}
+ if [[ $temp_count -le $indent_inner ]];then
+ indent_working=$indent_inner
+ #indent_working_full=$indent_full
+ else
+ indent_working=$(( $temp_count + 1 ))
+ #indent_working_full=$(( $indent_full - $indent_inner - 1 ))
+ fi
+ line_1_starter="$( sed -e :a -e "s/^.\{1,$indent_working\}$/& /;ta" <<< $2 )"
+ line_1_starter="$( sed -e :a -e "s/^.\{1,$indent_full\}$/ &/;ta" <<< "$line_1_starter" )"
+ ;;
+ 3) indent_full=$(( $indent_main + 8 ))
+ indent_inner=3
+ temp_count=${#2}
+ if [[ $temp_count -le $indent_inner ]];then
+ indent_working=$indent_inner
+ else
+ indent_working=$(( $temp_count + 1 ))
+ fi
+ line_1_starter="$( sed -e :a -e "s/^.\{1,$indent_working\}$/& /;ta" <<< $2 )"
+ line_1_starter="$( sed -e :a -e "s/^.\{1,$indent_full\}$/ &/;ta" <<< "$line_1_starter" )"
+ ;;
+ # for long options
+ 4) indent_full=$(( $indent_main + 8 ))
+ temp_count=${#2}
+ if [[ $temp_count -lt $indent_full ]];then
+ indent_working=$indent_full
+ else
+ indent_working=$temp_count #$(( $temp_count + 1 ))
+ fi
+ line_1_starter="$( sed -e :a -e "s/^.\{1,$indent_working\}$/& /;ta" <<< $2 )"
+ ;;
+ esac
+
+ if [[ $b_indent_x == 'true' ]];then
+ indent_x=$(( $indent_full + 1 ))
+ line_x_starter="$(printf "%${indent_x}s" '')"
+ fi
+
+ line_count=$(( $line_width - $indent_full ))
+
+ # bash loop is slow, only run this if required
+ if [[ ${#3} -gt $line_count ]];then
+ for word in $3
+ do
+ temp_string="$print_string$spacer$word"
+ spacer=' '
+ if [[ ${#temp_string} -lt $line_count ]];then
+ print_string=$temp_string # lose any white space start/end
+ # echo -n $(( $line_width - $indent_full ))
+ else
+ if [[ -n $line_1_starter ]];then
+ line_starter="$line_1_starter"
+ line_1_starter=''
+ else
+ line_starter="$line_x_starter"
+ fi
+ # clean up forced connections, ie, stuff we don't want wrapping
+ print_string=${print_string//\^/ }
+ print_screen_output "$line_starter$print_string"
+ print_string="$word$spacer" # needed to handle second word on new line
+ temp_string=''
+ spacer=''
+ fi
+ done
+ else
+ # echo no loop
+ print_string=$3
+ fi
+ # print anything left over
+ if [[ -n $print_string ]];then
+ if [[ -n $line_1_starter ]];then
+ line_starter="$line_1_starter"
+ line_1_starter=''
+ else
+ line_starter="$line_x_starter"
+ fi
+ print_string=${print_string//\^/ }
+ print_screen_output "$line_starter$print_string"
+ fi
}
+# print_lines_basic '1' '-m' 'let us teest this string and lots more and stuff and more stuff and x is wy and z is x and fred is dead and gus is alive an yes we have to go now'
+# print_lines_basic '2' '7' 'and its substring this string and lots more and stuff and more stuff and x is wy and z is x and fred is dead and gus is alive an yes we have to go now'
+# print_lines_basic '2' '12' 'and its sss substring'
+# print_lines_basic '3' '12' 'and its sss substring this string and lots more and stuff and more stuff and x is wy and z is x and fred is dead and gus is alive an yes we have to go now'
+# exit
-#### -------------------------------------------------------------------
-#### parameter handling, print usage functions.
-#### -------------------------------------------------------------------
+########################################################################
+#### OPTION AND VERSION HANDLERS
+########################################################################
# Get the parameters. Note: standard options should be lower case, advanced or testing, upper
# args: $1 - full script startup args: $@
@@ -2774,7 +3057,7 @@ get_parameters()
weather_flag=''
fi
if [[ $1 == '--version' ]];then
- print_version_info
+ show_version_info
exit 0
elif [[ $1 == '--help' ]];then
show_options
@@ -3001,12 +3284,12 @@ get_parameters()
fi
;;
U) if [[ $B_ALLOW_UPDATE == 'true' ]];then
- script_self_updater "$SELF_DOWNLOAD" 'source server' "$opt"
+ self_updater "$SELF_DOWNLOAD" 'source server' "$opt"
else
error_handler 17 "-$opt"
fi
;;
- V) print_version_info
+ V) show_version_info
exit 0
;;
w) B_SHOW_WEATHER=true
@@ -3108,23 +3391,23 @@ get_parameters()
if [[ $B_ALLOW_UPDATE == 'true' ]];then
case $OPTARG in
10)
- script_self_updater "$SELF_DOWNLOAD_DEV" 'dev server' "$opt $OPTARG"
+ self_updater "$SELF_DOWNLOAD_DEV" 'dev server' "$opt $OPTARG"
B_MAN='false'
;;
11)
- script_self_updater "$SELF_DOWNLOAD_BRANCH_1" 'branch one server' "$opt $OPTARG"
+ self_updater "$SELF_DOWNLOAD_BRANCH_1" 'branch one server' "$opt $OPTARG"
B_MAN='false'
;;
12)
- script_self_updater "$SELF_DOWNLOAD_BRANCH_2" 'branch two server' "$opt $OPTARG"
+ self_updater "$SELF_DOWNLOAD_BRANCH_2" 'branch two server' "$opt $OPTARG"
B_MAN='false'
;;
13)
- script_self_updater "$SELF_DOWNLOAD_BRANCH_3" 'branch three server' "$opt $OPTARG"
+ self_updater "$SELF_DOWNLOAD_BRANCH_3" 'branch three server' "$opt $OPTARG"
B_MAN='false'
;;
http*)
- script_self_updater "$OPTARG" 'alt server' "$opt <http...>"
+ self_updater "$OPTARG" 'alt server' "$opt <http...>"
B_MAN='false'
;;
esac
@@ -3156,6 +3439,24 @@ get_parameters()
B_SHOW_DISPLAY_DATA='true'
B_RUNNING_IN_DISPLAY='true'
;;
+ 41)
+ B_CURL='false'
+ set_downloader
+ ;;
+ 42)
+ B_FETCH='false'
+ set_downloader
+ ;;
+ 43)
+ B_WGET='false'
+ set_downloader
+ ;;
+ 44)
+ B_CURL='false'
+ B_FETCH='false'
+ B_WGET='false'
+ set_downloader
+ ;;
ftp*)
ALTERNATE_FTP="$OPTARG"
;;
@@ -3244,7 +3545,7 @@ show_options()
print_lines_basic "1" "-I" "Information: processes, uptime, memory, irc client (or shell type), $SELF_NAME version."
print_lines_basic "1" "-l" "$partition_string_u labels. Default: short $partition_string -P. For full -p output, use: -pl (or -plu)."
print_lines_basic "1" "-m" "Memory (RAM) data. Physical system memory array(s), capacity, how many devices (slots) supported, and individual memory devices (sticks of memory etc). For devices, shows device locator, size, speed, type (like: DDR3). If neither -I nor -tm are selected, also shows ram used/total. Also see -x, -xx, -xxx"
- print_lines_basic "1" "-M" "Machine data. Device type (desktop, server, laptop, VM etc.), Motherboard, Bios, and if present, System Builder (Like Lenovo). Shows UEFI/BIOS/UEFI [Legacy}. Older systems/kernels without the required /sys data can use dmidecode instead, run as root. Dmidecode can be forced with -! 33"
+ print_lines_basic "1" "-M" "Machine data. Device type (desktop, server, laptop, VM etc.), Motherboard, Bios, and if present, System Builder (Like Lenovo). Shows UEFI/BIOS/UEFI [Legacy]. Older systems/kernels without the required /sys data can use dmidecode instead, run as root. Dmidecode can be forced with -! 33"
print_lines_basic "1" "-n" "Advanced Network card information. Same as -Nn. Shows interface, speed, mac id, state, etc."
print_lines_basic "1" "-N" "Network card information. With -x, shows PCI BusID, Port number."
print_lines_basic "1" "-o" "Unmounted $partition_string information (includes UUID and LABEL if available). Shows file system type if you have file installed, if you are root OR if you have added to /etc/sudoers (sudo v. 1.7 or newer) Example:^<username>^ALL^=^NOPASSWD:^/usr/bin/file^"
@@ -3347,6 +3648,10 @@ show_options()
print_lines_basic "1" "-! 33" "Forces use of dmidecode data instead of /sys where relevant (-M)."
print_lines_basic "1" "-! 34" "Skips SSL certificate checks for all downloader activies (wget/fetch/curl only). Must go before other options."
print_lines_basic "1" "-! 40" "Will try to get display data out of X. Default gets it from display :0. If you use this format: -! 40:1 it would get it from display 1 instead, or any display you specify as long as there is no space between -! 40 and the :[display-number]."
+ print_lines_basic "1" "-! 41" "Bypass curl as a downloader option."
+ print_lines_basic "1" "-! 42" "Bypass fetch as a downloader option."
+ print_lines_basic "1" "-! 43" "Bypass wget as a downloader option."
+ print_lines_basic "1" "-! 44" "Bypass curl, fetch, and wget as a downloader options. Forces Perl if HTTP::Tiny present."
if [[ $1 == 'full' ]];then
print_screen_output " "
@@ -3368,129 +3673,8 @@ show_options()
print_screen_output " "
}
-# uses $TERM_COLUMNS to set width using $COLS_MAX as max width
-# IMPORTANT: minimize use of subshells here or the output is too slow
-# IMPORTANT: each text chunk must be a continuous line, no line breaks. For anyone who uses a
-# code editor that can't do visual (not hard coded) line wrapping, upgrade to one that can.
-# args: $1 - 0 1 2 3 4 for indentation level; $2 -line starter, like -m; $3 - content of block.
-print_lines_basic()
-{
- local line_width=$COLS_MAX
- local print_string='' indent_inner='' indent_full='' indent_x=''
- local indent_working='' indent_working_full=''
- local line_starter='' line_1_starter='' line_x_starter=''
- # note: to create a padded string below
- local fake_string=' ' temp_count='' line_count='' spacer=''
- local indent_main=6 indent_x='' b_indent_x='true'
-
- case $1 in
- # for no options, start at left edge
- 0) indent_full=0
- line_1_starter=''
- line_x_starter=''
- b_indent_x='false'
- ;;
- 1) indent_full=$indent_main
- temp_count=${#2}
- if [[ $temp_count -le $indent_full ]];then
- indent_working=$indent_full
- else
- indent_working=$temp_count #$(( $temp_count + 1 ))
- fi
- line_1_starter="$( sed -e :a -e "s/^.\{1,$indent_working\}$/& /;ta" <<< $2 )"
- ;;
- # first left pad 2 and 3, then right pad them
- 2) indent_full=$(( $indent_main + 6 ))
- indent_inner=3
- temp_count=${#2}
- if [[ $temp_count -le $indent_inner ]];then
- indent_working=$indent_inner
- #indent_working_full=$indent_full
- else
- indent_working=$(( $temp_count + 1 ))
- #indent_working_full=$(( $indent_full - $indent_inner - 1 ))
- fi
- line_1_starter="$( sed -e :a -e "s/^.\{1,$indent_working\}$/& /;ta" <<< $2 )"
- line_1_starter="$( sed -e :a -e "s/^.\{1,$indent_full\}$/ &/;ta" <<< "$line_1_starter" )"
- ;;
- 3) indent_full=$(( $indent_main + 8 ))
- indent_inner=3
- temp_count=${#2}
- if [[ $temp_count -le $indent_inner ]];then
- indent_working=$indent_inner
- else
- indent_working=$(( $temp_count + 1 ))
- fi
- line_1_starter="$( sed -e :a -e "s/^.\{1,$indent_working\}$/& /;ta" <<< $2 )"
- line_1_starter="$( sed -e :a -e "s/^.\{1,$indent_full\}$/ &/;ta" <<< "$line_1_starter" )"
- ;;
- # for long options
- 4) indent_full=$(( $indent_main + 8 ))
- temp_count=${#2}
- if [[ $temp_count -lt $indent_full ]];then
- indent_working=$indent_full
- else
- indent_working=$temp_count #$(( $temp_count + 1 ))
- fi
- line_1_starter="$( sed -e :a -e "s/^.\{1,$indent_working\}$/& /;ta" <<< $2 )"
- ;;
- esac
-
- if [[ $b_indent_x == 'true' ]];then
- indent_x=$(( $indent_full + 1 ))
- line_x_starter="$(printf "%${indent_x}s" '')"
- fi
-
- line_count=$(( $line_width - $indent_full ))
-
- # bash loop is slow, only run this if required
- if [[ ${#3} -gt $line_count ]];then
- for word in $3
- do
- temp_string="$print_string$spacer$word"
- spacer=' '
- if [[ ${#temp_string} -lt $line_count ]];then
- print_string=$temp_string # lose any white space start/end
- # echo -n $(( $line_width - $indent_full ))
- else
- if [[ -n $line_1_starter ]];then
- line_starter="$line_1_starter"
- line_1_starter=''
- else
- line_starter="$line_x_starter"
- fi
- # clean up forced connections, ie, stuff we don't want wrapping
- print_string=${print_string//\^/ }
- print_screen_output "$line_starter$print_string"
- print_string="$word$spacer" # needed to handle second word on new line
- temp_string=''
- spacer=''
- fi
- done
- else
- # echo no loop
- print_string=$3
- fi
- # print anything left over
- if [[ -n $print_string ]];then
- if [[ -n $line_1_starter ]];then
- line_starter="$line_1_starter"
- line_1_starter=''
- else
- line_starter="$line_x_starter"
- fi
- print_string=${print_string//\^/ }
- print_screen_output "$line_starter$print_string"
- fi
-}
-# print_lines_basic '1' '-m' 'let us teest this string and lots more and stuff and more stuff and x is wy and z is x and fred is dead and gus is alive an yes we have to go now'
-# print_lines_basic '2' '7' 'and its substring this string and lots more and stuff and more stuff and x is wy and z is x and fred is dead and gus is alive an yes we have to go now'
-# print_lines_basic '2' '12' 'and its sss substring'
-# print_lines_basic '3' '12' 'and its sss substring this string and lots more and stuff and more stuff and x is wy and z is x and fred is dead and gus is alive an yes we have to go now'
-# exit
-
## print out version information for -V/--version
-print_version_info()
+show_version_info()
{
# if not in PATH could be either . or directory name, no slash starting
local script_path=$SELF_PATH script_symbolic_start=''
@@ -3526,12 +3710,50 @@ print_version_info()
}
########################################################################
-#### MAIN FUNCTIONS
+#### STARTUP DATA
########################################################################
-#### -------------------------------------------------------------------
-#### initial startup stuff
-#### -------------------------------------------------------------------
+# This needs some cleanup and comments, not quite understanding what is
+# happening, although generally output is known. Parse the null
+# separated commandline under /proc/<pid passed in $1>/cmdline
+# args: $1 - $PPID
+get_cmdline()
+{
+ eval $LOGFS
+ local i=0 ppid=$1
+
+ if [[ ! -e /proc/$ppid/cmdline ]];then
+ echo 0
+ return
+ fi
+ ##print_screen_output "Marker"
+ ##print_screen_output "\$ppid='$ppid' -=- $(< /proc/$ppid/cmdline)"
+ unset A_CMDL
+ # http://transnum.blogspot.com/2008/11/bashs-read-built-in-supports-0-as.html
+# Because BASH internally uses C-style strings, in which '\0' is the terminator,
+# read -d $'\0' is essentially equivalent to read -d ''. This is why I believed
+# read did not accept null-delimited strings. However, it turns out that BASH
+# actually handles this correctly.
+# I checked BASH’s source code and found the delimiter was simply determined by
+# delim = *list_optarg; (bash-3.2/builtins/read.def, line 296) where list_optarg
+# points to the argument following -d. Therefore, it makes no difference to the
+# value of delim whether $'\0' or '' is used.
+ ## note: need to figure this one out, and ideally clean it up and make it readable
+ while read -d $'\0' L && [[ $i -lt 32 ]]
+ do
+ A_CMDL[i++]="$L" ## note: make sure this is valid - What does L mean? ##
+ done < /proc/$ppid/cmdline
+ ##print_screen_output "\$i='$i'"
+ if [[ $i -eq 0 ]];then
+ A_CMDL[0]=$(< /proc/$ppid/cmdline)
+ if [[ -n ${A_CMDL[0]} ]];then
+ i=1
+ fi
+ fi
+ CMDL_MAX=$i
+ log_function_data "CMDL_MAX: $CMDL_MAX"
+ eval $LOGFE
+}
# Determine where inxi was run from, set IRC_CLIENT and IRC_CLIENT_VERSION
get_start_client()
@@ -3641,6 +3863,7 @@ get_start_client()
log_function_data "IRC_CLIENT: $IRC_CLIENT :: IRC_CLIENT_VERSION: $IRC_CLIENT_VERSION :: PPID: $PPID"
eval $LOGFE
}
+
# note: all variables set in caller so no need to pass
get_irc_client_version()
{
@@ -3688,7 +3911,7 @@ get_irc_client_version()
# the hexchat author decided to make --version/-v return a gtk dialogue box, lol...
# so we need to read the actual config file for hexchat. Note that older hexchats
# used xchat config file, so test first for default, then legacy. Because it's possible
- # for this file to be use edited, doing some extra checks here.
+ # for this file to be user edited, doing some extra checks here.
if [[ -f ~/.config/hexchat/hexchat.conf ]];then
file_data="$( cat ~/.config/hexchat/hexchat.conf )"
elif [[ -f ~/.config/hexchat/xchat.conf ]];then
@@ -3918,46 +4141,8 @@ get_irc_client_version()
fi
}
-# args: $1 - App_Working_Name
-set_perl_python_client_data()
-{
- if [[ -z $IRC_CLIENT_VERSION ]];then
- local version=''
- # this is a hack to try to show konversation if inxi is running but started via /cmd
- # OR via script shortcuts, both cases in fact now
- if [[ $B_RUNNING_IN_DISPLAY == 'true' && -z ${Ps_aux_Data/*konversation*/} ]];then
- IRC_CLIENT='Konversation'
- version=$( get_program_version 'konversation' '^konversation' '2' )
- B_CONSOLE_IRC='false'
- ## NOTE: supybot only appears in ps aux using 'SHELL' command; the 'CALL' command
- ## gives the user system irc priority, and you don't see supybot listed, so use SHELL
- elif [[ $B_RUNNING_IN_DISPLAY == 'false' && -z ${Ps_aux_Data/*supybot*/} ]];then
- version=$( get_program_version 'supybot' '^Supybot' '2' )
- if [[ -n $version ]];then
- IRC_CLIENT_VERSION=" $version"
- if [[ -z ${version/*gribble*/} ]];then
- IRC_CLIENT='Gribble'
- elif [[ -z ${version/*limnoria*/} ]];then
- IRC_CLIENT='Limnoria'
- else
- IRC_CLIENT='Supybot'
- fi
- else
- IRC_CLIENT='Supybot'
- # currently all use the same actual app name, this will probably change.
- fi
- B_CONSOLE_IRC='true'
- else
- IRC_CLIENT="Unknown $1 client"
- fi
- if [[ -n $version ]];then
- IRC_CLIENT_VERSION=" $version"
- fi
- fi
-}
-
## try to infer the use of Konversation >= 1.2, which shows $PPID improperly
-## no known method of finding Kovni >= 1.2 as parent process, so we look to see if it is running,
+## no known method of finding Konvi >= 1.2 as parent process, so we look to see if it is running,
## and all other irc clients are not running. As of 2014-03-25 this isn't used in my cases
is_this_qt4_konvi()
{
@@ -3993,41 +4178,52 @@ is_this_qt4_konvi()
#qdbus org.kde.konversation /irc say $1 $2 "getpid_dir: $konvi_qt4 qt4_konvi: $konvi_qt4_ver verNum: $konvi_qt4_ver_num pid: $konvi_pid ppid: $PPID konvi_home_dir: ${konvi[2]}"
}
-# This needs some cleanup and comments, not quite understanding what is happening, although generally output is known
-# Parse the null separated commandline under /proc/<pid passed in $1>/cmdline
-# args: $1 - $PPID
-get_cmdline()
+# args: $1 - App_Working_Name
+set_perl_python_client_data()
{
- eval $LOGFS
- local i=0 ppid=$1
-
- if [[ ! -e /proc/$ppid/cmdline ]];then
- echo 0
- return
- fi
- ##print_screen_output "Marker"
- ##print_screen_output "\$ppid='$ppid' -=- $(< /proc/$ppid/cmdline)"
- unset A_CMDL
- ## note: need to figure this one out, and ideally clean it up and make it readable
- while read -d $'\0' L && [[ $i -lt 32 ]]
- do
- A_CMDL[i++]="$L" ## note: make sure this is valid - What does L mean? ##
- done < /proc/$ppid/cmdline
- ##print_screen_output "\$i='$i'"
- if [[ $i -eq 0 ]];then
- A_CMDL[0]=$(< /proc/$ppid/cmdline)
- if [[ -n ${A_CMDL[0]} ]];then
- i=1
+ if [[ -z $IRC_CLIENT_VERSION ]];then
+ local version=''
+ # this is a hack to try to show konversation if inxi is running but started via /cmd
+ # OR via script shortcuts, both cases in fact now
+ if [[ $B_RUNNING_IN_DISPLAY == 'true' && -z ${Ps_aux_Data/*konversation*/} ]];then
+ IRC_CLIENT='Konversation'
+ version=$( get_program_version 'konversation' '^konversation' '2' )
+ B_CONSOLE_IRC='false'
+ ## NOTE: supybot only appears in ps aux using 'SHELL' command; the 'CALL' command
+ ## gives the user system irc priority, and you don't see supybot listed, so use SHELL
+ elif [[ $B_RUNNING_IN_DISPLAY == 'false' && -z ${Ps_aux_Data/*supybot*/} ]];then
+ version=$( get_program_version 'supybot' '^Supybot' '2' )
+ if [[ -n $version ]];then
+ IRC_CLIENT_VERSION=" $version"
+ if [[ -z ${version/*gribble*/} ]];then
+ IRC_CLIENT='Gribble'
+ elif [[ -z ${version/*limnoria*/} ]];then
+ IRC_CLIENT='Limnoria'
+ else
+ IRC_CLIENT='Supybot'
+ fi
+ else
+ IRC_CLIENT='Supybot'
+ # currently all use the same actual app name, this will probably change.
+ fi
+ B_CONSOLE_IRC='true'
+ else
+ IRC_CLIENT="Unknown $1 client"
+ fi
+ if [[ -n $version ]];then
+ IRC_CLIENT_VERSION=" $version"
fi
fi
- CMDL_MAX=$i
- log_function_data "CMDL_MAX: $CMDL_MAX"
- eval $LOGFE
}
+########################################################################
+#### DATA PROCESSORS
+########################################################################
+
#### -------------------------------------------------------------------
-#### get data types
+#### GET DATA
#### -------------------------------------------------------------------
+
## create array of sound cards installed on system, and if found, use asound data as well
get_audio_data()
{
@@ -4420,7 +4616,7 @@ get_battery_data()
fi
done
elif [[ $B_FORCE_DMIDECODE == 'true' ]] || [[ ! -d $id_dir && -z $ids ]];then
- get_dmidecode_data
+ set_dmidecode_data
if [[ -n $DMIDECODE_DATA ]];then
if [[ $DMIDECODE_DATA == 'dmidecode-error-'* ]];then
A_BATTERY_DATA[0]=$DMIDECODE_DATA
@@ -4780,13 +4976,7 @@ get_cpu_core_count_alpha()
2) CPU_COUNT_ALPHA='Dual';;
3) CPU_COUNT_ALPHA='Triple';;
4) CPU_COUNT_ALPHA='Quad';;
- 5) CPU_COUNT_ALPHA='Penta';;
- 6) CPU_COUNT_ALPHA='Hexa';;
- 7) CPU_COUNT_ALPHA='Hepta';;
- 8) CPU_COUNT_ALPHA='Octa';;
- 9) CPU_COUNT_ALPHA='Ennea';;
- 10) CPU_COUNT_ALPHA='Deca';;
- *) CPU_COUNT_ALPHA='Multi';;
+ *) CPU_COUNT_ALPHA=$1;;
esac
log_function_data "CPU_COUNT_ALPHA: $CPU_COUNT_ALPHA"
@@ -5220,6 +5410,7 @@ get_cpu_ht_multicore_smp_data()
arm_count = 0
nr = 0
bArm = "false"
+ bRyzen = "false"
bProcInt = "false" # this will avoid certain double counts with processor/Processor lines
bXeon = "false"
}
@@ -5227,8 +5418,12 @@ get_cpu_ht_multicore_smp_data()
/^model name/ && ( $0 ~ /Xeon/ ) {
bXeon = "true"
}
+ # amd rizen 16/32 core maybe
+ /^cpu_family/ && ($2 == 23) {
+ bRyzen = "true"
+ }
# only do this once since sibling count does not change.
- /^siblings/ && ( bXeon == "true" ) && ( siblings == 0 ) {
+ /^siblings/ && ( bXeon == "true" || bRyzen == "true" ) && ( siblings == 0 ) {
gsub(/[^0-9]/,"",$NF)
if ( $NF != "" ) {
siblings = $NF
@@ -5271,6 +5466,8 @@ get_cpu_ht_multicore_smp_data()
}
# array of core ids, again, here we may have HT, so we need to create an array of the
# actual core ids. As With physical, we cannot assume this will be here in a vm
+ # also, for xeon/rizen, this can be misleading because there may be two cpus
+ # inside the single cpu body, which leads to: 0-7 then 0-7 for a rizen 16 core ht
/^core id/ {
core_iter = $NF
a_core_id[core_iter] = $NF
@@ -5298,7 +5495,8 @@ get_cpu_ht_multicore_smp_data()
num_of_physical_cpus++
}
i = 0
- ## count unique cores ##
+ ## count unique cores. Fails for 16 core rizen, which appears to be
+ ## using 2x8 core internally, core id 0-7 repeats 2 times.
for ( i in a_core_id ) {
num_of_cores++
}
@@ -5307,6 +5505,10 @@ get_cpu_ht_multicore_smp_data()
if ( bXeon == "true" && num_of_cores == 1 && siblings > 1 ) {
num_of_cores = siblings/2
}
+ #
+ if ( bRyzen == "true"){
+ num_of_cores = cpu_core_count
+ }
# final check, override the num of cores value if it clearly is wrong
# and use the raw core count and synthesize the total instead of real count
if ( ( num_of_cores == 0 ) && ( cpu_core_count * num_of_physical_cpus > 1 ) ) {
@@ -5327,23 +5529,27 @@ get_cpu_ht_multicore_smp_data()
# print "CpuCoreCount:" cpu_core_count
####################################################################
# algorithm
- # if > 1 processor && processor id (physical id) == core id then Hyperthreaded (HT)
+ # if > 1 processor && processor id (physical id) == core id then Multi threaded (MT)
+ # if siblings > 1 && siblings == 2 * num_of_cores (cpu_core_count) then Multi threaded (MT)
# if > 1 processor && processor id (physical id) != core id then Multi-Core Processors (MCP)
- # if > 1 processor && processor ids (physical id) > 1 then Multiple Processors (SMP)
+ # if > 1 processor && processor ids (physical id) > 1 then Symmetric Multi Processing (SMP)
# if = 1 processor then single core/processor Uni-Processor (UP)
if ( num_of_processors > 1 || ( bXeon == "true" && siblings > 0 ) ) {
- # non-multicore HT
+ # non-multicore MT
if ( num_of_processors == (num_of_cores * 2) ) {
- cpu_type = cpu_type "HT-"
+ cpu_type = cpu_type "MT-"
}
else if ( bXeon == "true" && siblings > 1 ) {
- cpu_type = cpu_type "HT-"
+ cpu_type = cpu_type "MT-"
+ }
+ else if ( siblings > 1 && siblings == 2 * num_of_cores ){
+ cpu_type = cpu_type "MT-"
}
- # non-HT multi-core or HT multi-core
+ # non-MT multi-core or MT multi-core
if (( num_of_processors == num_of_cores) || ( num_of_physical_cpus < num_of_cores)) {
cpu_type = cpu_type "MCP-"
}
- # >1 cpu sockets active
+ # >1 cpu sockets active: Symetric Multi Processing
if ( num_of_physical_cpus > 1 ) {
cpu_type = cpu_type "SMP-"
}
@@ -5715,59 +5921,6 @@ get_desktop_environment()
eval $LOGFE
}
-# note: gawk doesn't support white spaces in search string, gave errors, so use [[:space:]] instead
-# args: $1 - desktop/app command for --version; $2 - search string; $3 - gawk print number
-get_program_version()
-{
- local version_data='' version='' get_version='--version'
-
- # mate-about -v = MATE Desktop Environment 1.4.0
- case $1 in
- # legacy fluxbox had no --version, and current -v works
- dwm|fluxbox|jwm|mate-about|wmii|wmii2)
- get_version='-v'
- ;;
- epoch)
- get_version='version'
- ;;
- esac
-
- case $1 in
- # note, some wm/apps send version info to stderr instead of stdout
- dwm|ksh|scrotwm|spectrwm)
- version_data="$( $1 $get_version 2>&1 )"
- ;;
- csh)
- version_data="$( tcsh $get_version 2>/dev/null )"
- ;;
- # quick debian/buntu hack until I find a universal way to get version for these
- dash)
- if type -p dpkg &>/dev/null;then
- version_data="$( dpkg -l $1 2>/dev/null )"
- fi
- ;;
- *)
- version_data="$( $1 $get_version 2>/dev/null )"
- ;;
- esac
- log_function_data "version data: $version_data"
- if [[ -n $version_data ]];then
- version=$( gawk '
- BEGIN {
- IGNORECASE=1
- }
- /'$2'/ {
- # sample: dwm-5.8.2, ©.. etc, why no space? who knows. Also get rid of v in number string
- # xfce, and other, output has , in it, so dump all commas and parentheses
- gsub(/(,|dwm-|wmii2-|wmii-|v|V|\(|\))/, "",$'$3')
- print $'$3'
- exit # quit after first match prints
- }' <<< "$version_data" )
- fi
- log_function_data "program version: $version"
- echo $version
-}
-
get_desktop_extra_data()
{
eval $LOGFS
@@ -5940,7 +6093,7 @@ get_device_data()
elif [[ $B_ROOT == 'false' ]];then
device='dmidecode-use-root'
else
- get_dmidecode_data
+ set_dmidecode_data
if [[ -n $DMIDECODE_DATA ]];then
if [[ $DMIDECODE_DATA == 'dmidecode-error-'* ]];then
device='dmidecode-no-info'
@@ -6143,7 +6296,7 @@ get_distro_data()
elif [[ ${#a_distro_glob[@]} -gt 1 ]];then
for i in $DISTROS_DERIVED $DISTROS_PRIMARY
do
- # Only echo works with ${var[@]}, not print_screen_output() or script_debugger()
+ # Only echo works with ${var[@]}, not print_screen_output() or self_debugger()
# This is a known bug, search for the word "strange" inside comments
# echo "i='$i' a_distro_glob[@]='${a_distro_glob[@]}'"
if [[ " ${a_distro_glob[@]} " == *" $i "* ]];then
@@ -6418,144 +6571,6 @@ get_distro_lsb_os_release_data()
eval $LOGFE
}
-get_dmidecode_data()
-{
- eval $LOGFS
-
- local dmiData="" b_debugger='false'
-
- if [[ $B_DMIDECODE_SET != 'true' ]];then
- dmidecodePath=$( type -p dmidecode 2>/dev/null )
- if [[ -z $dmidecodePath ]];then
- DMIDECODE_DATA='dmidecode-error-not-installed'
- else
- # note stripping out these lines: Handle 0x0016, DMI type 17, 27 bytes
- # but NOT deleting them, in case the dmidecode data is missing empty lines which will be
- # used to separate results. Then we remove the doubled empty lines to keep it clean and
- # strip out all the stuff we don't want to see in the results. We want the error data in
- # stdout for error handling
- if [[ $b_debugger == 'true' && $HOSTNAME == 'yawn' ]];then
- dmiData="$( cat ~/bin/scripts/inxi/svn/misc/data/dmidecode/dmidecode-memory-variants-2.txt )"
- else
- dmiData="$( $dmidecodePath 2>&1 )"
- fi
- # these tests first, because bsd error messages like this (note how many : are in the string)
- # inxi: line 4928: /usr/local/sbin/dmidecode: Permission denied
- if [[ ${#dmiData} -lt 200 ]];then
- if [[ -z ${dmiData/*Permission denied*/} ]];then
- # if [[ -n $( grep -i 'Permission denied' <<< "$dmiData" ) ]];then
- DMIDECODE_DATA='dmidecode-error-requires-root'
- # this handles very old systems, like Lenny 2.6.26, with dmidecode, but no data
- elif [[ -n $( grep -i 'no smbios ' <<< "$dmiData" ) ]];then
- DMIDECODE_DATA='dmidecode-error-no-smbios-dmi-data'
- else
- DMIDECODE_DATA='dmidecode-error-unknown-error'
- fi
- else
- DMIDECODE_DATA="$( echo "$dmiData" | gawk -F ':' '
- BEGIN {
- IGNORECASE=1
- cutExtraTab="false"
- twoData=""
- oneData=""
- }
- {
- # no idea why, but freebsd gawk does not do this right
- oneData=$1
- twoData=$2
- if ( twoData != "" ) {
- twoHolder="true"
- }
- else {
- twoHolder="false"
- }
- if ( $0 ~ /^\tDMI type/ ) {
- sub(/^\tDMI type.*/, "", $0)
- cutExtraTab="true"
- }
- gsub(/'"$BAN_LIST_NORMAL"'/, "", twoData)
- gsub(/'"$BAN_LIST_ARRAY"'/, " ", twoData)
- # clean out Handle line
- # sub(/^Handle.*/,"", $0)
- sub(/^[[:space:]]*Inactive.*/,"",twoData)
- # yes, there is a typo in a user data set, unknow
- # Base Board Version|Base Board Serial Number
- # Chassis Manufacturer|Chassis Version|Chassis Serial Number
- # System manufacturer|System Product Name|System Version
- # To Be Filled By O.E.M.
- # strip out starting white space so that the following stuff will clear properly
- sub(/^[[:space:]]+/, "", twoData)
- sub(/^Base Board .*|^Chassis .*|empty|.*O\.E\.M\..*|.*OEM.*|^Not .*|^System .*|.*unknow.*|.*N\/A.*|none|^To be filled.*|^0x[0]+$|\[Empty\]|<Bad Index>|Default string|^\.\.$/, "", twoData)
- sub(/.*(AssetTagNum|Manufacturer| Or Motherboard|PartNum.*|SerNum).*/, "", twoData)
- gsub(/\ybios\y|\yacpi\y/, "", twoData) # note: biostar
- sub(/http:\/\/www.abit.com.tw\//, "Abit", twoData)
-
- # for double indented values replace with ~ so later can test for it, we are trusting that
- # indentation will be tabbed in this case
- # special case, dmidecode 2.2 has an extra tab and a DMI type line
- if ( cutExtraTab == "true" ) {
- sub(/^\t\t\t+/, "~", oneData)
- }
- else {
- sub(/^\t\t+/, "~", oneData)
- }
- gsub(/ [ \t]+/, " ", twoData)
- gsub(/^[[:space:]]+|[[:space:]]+$/, "", twoData)
- gsub(/^[[:space:]]+|[[:space:]]+$/, "", oneData)
-
- # reconstructing the line for processing so gawk can use -F : again
- if ( oneData != "" && twoHolder == "true" ) {
- print oneData ":" twoData
- }
- else {
- # make sure all null lines have no spaces in them!
- gsub(/^[[:space:]]+|[[:space:]]+$/,"",$0)
- print $0
- }
- }' \
- | sed '/^$/{
-N
-/^\n$/D
-}' \
- )"
- fi
- # echo ":${DMIDECODE_DATA}:"
- log_function_data "DMIDECODE_DATA (PRE): $DMIDECODE_DATA"
-
- fi
- B_DMIDECODE_SET='true'
- log_function_data "DMIDECODE_DATA (POST): $DMIDECODE_DATA"
- fi
-
- eval $LOGFE
-}
-# get_dmidecode_data;echo "$DMIDECODE_DATA";exit
-
-# BSD only
-get_dmesg_boot_data()
-{
- eval $LOGFS
-
- local dmsg_boot_data=''
-
- if [[ $B_DMESG_BOOT_FILE == 'true' ]];then
- # replace all indented items with ~ so we can id them easily while processing
- # note that if user, may get error of read permissions
- # for some weird reason, real mem and avail mem are use a '=' separator, who knows why, the others are ':'
- dmsg_boot_data="$( cat $FILE_DMESG_BOOT 2>/dev/null | gawk '
- {
- sub(/[[:space:]]*=[[:space:]]*|:[[:space:]]*/,":", $0)
- gsub(/'"$BAN_LIST_ARRAY"'/," ", $0)
- gsub(/\"/, "", $0)
- gsub(/[[:space:]][[:space:]]/, " ", $0)
- print $0
- }' )"
- fi
- DMESG_BOOT_DATA="$dmsg_boot_data"
- log_function_data "$dmsg_boot_data"
- eval $LOGFE
-}
-
get_gcc_system_version()
{
eval $LOGFS
@@ -7095,6 +7110,7 @@ get_graphics_display_server_data()
log_function_data "A_DISPLAY_SERVER_DATA: $a_temp"
eval $LOGFE
}
+
get_graphics_display_compositor()
{
eval $LOGFS
@@ -7138,7 +7154,8 @@ get_graphics_display_compositor()
echo $compositor
eval $LOGFE
}
-# $1 - compositor
+
+## args: $1 - compositor
get_graphics_display_wayland_version()
{
eval $LOGFS
@@ -7845,24 +7862,6 @@ get_init_data()
eval $LOGFE
}
-# note: useless because this is just absurdly inaccurate, too bad...
-get_install_date()
-{
- eval $LOGFS
-
- local installed=''
-
- if ls -al --time-style '+FORMAT %Y-%m-%d' /usr 2>/dev/null;then
- installed=$(ls -al --time-style '+FORMAT %Y-%m-%d' / | awk '/lost\+found/ {print $7;exit}' )
-# elif
-# :
- fi
-
- echo $installed
-
- eval $LOGFE
-}
-
get_kernel_compiler_version()
{
# note that we use gawk to get the last part because beta, alpha, git versions can be non-numeric
@@ -7928,47 +7927,6 @@ get_kernel_version()
eval $LOGFE
}
-# args: $1 - v/n
-get_lspci_data()
-{
- eval $LOGFS
- local lspci_data=''
-
- if [[ $B_LSPCI == 'true' ]];then
- lspci_data="$( lspci -$1 | gawk '{
- gsub(/\(prog-if[^)]*\)/,"")
- sub(/^0000:/, "", $0) # seen case where the 0000: is prepended, rare, but happens
- print
- }' )"
- fi
- log_function_data 'raw' "lspci_data $1:\n$lspci_data"
- if [[ $1 == 'v' ]];then
- LSPCI_V_DATA="$lspci_data"
- elif [[ $1 == 'n' ]];then
- LSPCI_N_DATA="$lspci_data"
- fi
- eval $LOGFE
-}
-
-# args: $1 - busid
-get_lspci_chip_id()
-{
- eval $LOGFS
-
- local chip_id=''
-
- chip_id=$( gawk '
- /^'$1'/ {
- if ( $3 != "" ) {
- print $3
- }
- }' <<< "$LSPCI_N_DATA" )
-
- echo $chip_id
-
- eval $LOGFE
-}
-
get_machine_data()
{
eval $LOGFS
@@ -8027,7 +7985,7 @@ get_machine_data()
array_string="$array_string,$firmware_type"
fi
else
- get_dmidecode_data
+ set_dmidecode_data
if [[ -n $DMIDECODE_DATA ]];then
if [[ $DMIDECODE_DATA == 'dmidecode-error-'* ]];then
array_string=$DMIDECODE_DATA
@@ -8271,37 +8229,6 @@ get_memory_data()
eval $LOGFE
}
-# process and return module version data
-get_module_version_number()
-{
- eval $LOGFS
- local module_version=''
-
- if [[ $B_MODINFO_TESTED != 'true' ]];then
- B_MODINFO_TESTED='true'
- MODINFO_PATH=$( type -p modinfo )
- fi
-
- if [[ -n $MODINFO_PATH ]];then
- module_version=$( $MODINFO_PATH $1 2>/dev/null | gawk '
- BEGIN {
- IGNORECASE=1
- }
- /^version/ {
- gsub(/'"$BAN_LIST_ARRAY"'/, " ", $2)
- gsub(/^ +| +$/, "", $2)
- gsub(/ [ \t]+/, " ", $2)
- print $2
- }
- ' )
- fi
-
- echo "$module_version"
- log_function_data "module_version: $module_version"
- eval $LOGFE
-}
-
-
## create array of network cards
get_networking_data()
{
@@ -8654,7 +8581,7 @@ get_networking_wan_ip_data()
if [[ -n $( grep 'smxi.org' <<< $WAN_IP_URL ) ]];then
ua="-A s-tools/inxi-ip"
fi
- ip_data="$( curl $NO_SSL_OPT $ua -y $DL_TIMEOUT -s $WAN_IP_URL )" || downloader_error=$?
+ ip_data="$( curl $NO_SSL_OPT $ua -L -y $DL_TIMEOUT -s $WAN_IP_URL )" || downloader_error=$?
;;
fetch)
ip_data="$( fetch $NO_SSL_OPT -T $DL_TIMEOUT -q -o - $WAN_IP_URL )" || downloader_error=$?
@@ -8662,6 +8589,12 @@ get_networking_wan_ip_data()
ftp)
ip_data="$( ftp $NO_SSL_OPT -o - $WAN_IP_URL 2>/dev/null )" || downloader_error=$?
;;
+ perl)
+ if [[ -n $( grep 'smxi.org' <<< $WAN_IP_URL ) ]];then
+ ua="s-tools/inxi-ip"
+ fi
+ ip_data="$( download_file 'ua-stdout' $WAN_IP_URL $ua )" || downloader_man_error=$?
+ ;;
wget)
if [[ -n $( grep 'smxi.org' <<< $WAN_IP_URL ) ]];then
ua="-U s-tools/inxi-ip"
@@ -9636,138 +9569,6 @@ get_partition_dev_data()
eval $LOGFE
}
-# args: $1 - dev item, check for mapper, then get actual dev item if mapped
-# eg: lrwxrwxrwx 1 root root 7 Sep 26 15:10 truecrypt1 -> ../dm-2
-get_dev_processed_item()
-{
- eval $LOGFS
-
- local dev_item=$1 dev_return=''
-
- if [[ -n $DEV_DISK_MAPPER && -n $( grep -is 'mapper/' <<< $dev_item ) ]];then
- dev_return=$( echo "$DEV_DISK_MAPPER" | gawk '
- $( NF - 2 ) ~ /^'${dev_item##*/}'$/ {
- item=gensub( /..\/(.+)/, "\\1", 1, $NF )
- print item
- }' )
- fi
- if [[ -z $dev_return ]];then
- dev_return=$dev_item
- fi
-
- echo $dev_return
-
- eval $LOGFE
-}
-
-get_patch_version_string()
-{
- SELF_PATCH=${SELF_PATCH##*[0]} # strip leading zero(s)
-
- if [[ -n $SELF_PATCH ]];then
- SELF_PATCH="-$SELF_PATCH"
- # for cases where it was for example: 00-bsd cleaned to --bsd trim out one -
- SELF_PATCH="${SELF_PATCH/--/-}"
- fi
-}
-
-get_pciconf_data()
-{
- eval $LOGFS
-
- local pciconf_data='' a_temp=''
-
- if [[ $B_PCICONF == 'true' ]];then
- pciconf_data="$( pciconf -lv 2>/dev/null )"
- if [[ -n $pciconf_data ]];then
- pciconf_data=$( gawk '
- BEGIN {
- IGNORECASE=1
- }
- {
- gsub(/'"$BAN_LIST_NORMAL"'/, "", $0)
- gsub(/[[:space:]]+=[[:space:]]+/, "=",$0)
- gsub(/^[[:space:]]+|'"'"'|\"|,/, "", $0)
- gsub(/=0x/,"=",$0)
- # line=gensub(/.*[[:space:]]+(class=[^[:space:]]*|card=[^[:space:]]*)|chip=[^[:space:]]*|rev=[^[:space:]]*|hdr=[^[:space:]]*).*/,"\n\\1","g",$0)
- line=gensub(/(.*@.*)/,"\n\\1",$0)
- print line
- }' <<< "$pciconf_data" )
- # create empty last line with this spacing trick
- pciconf_data="$pciconf_data
-
-EOF"
- # echo "$pciconf_data"
- # now insert into arrays
- IFS=$'\n'
- A_PCICONF_DATA=( $( gawk '
- BEGIN {
- fullLine=""
- driver=""
- vendor=""
- device=""
- class=""
- chipId=""
- pciId=""
- itemData=""
- IGNORECASE=1
- }
- /^.*@/ {
- pciId=""
- vendor=""
- class=""
- driver=""
- device=""
- chipId=""
- itemData=$1
-
- driver=gensub(/^([^@]+)@.*/, "\\1", itemData )
- pciId=gensub(/^.*@pci([0-9\.:]+).*/, "\\1", itemData )
- sub(/:$/, "", pciId)
- itemData=$4
- chipId=gensub(/.*chip=([0-9a-f][0-9a-f][0-9a-f][0-9a-f])([0-9a-f][0-9a-f][0-9a-f][0-9a-f]).*/, "\\2:\\1", itemData )
- if ( $2 ~ /class=020000/ ) {
- class="network"
- }
- else if ( $2 == "class=030000" ) {
- class="display"
- }
- else if ( $2 ~ /class=040300|class=040100/ ) {
- class="audio"
- }
-
- while ( getline && $1 !~ /^$/ ) {
- if ( $1 ~ /^vendor/ ) {
- sub(/^vendor=/, "", $1 )
- vendor=$0
- }
- else if ( $1 ~ /^device/ ) {
- sub(/^device=/, "", $1 )
- device=$0
- }
- else if ( $1 ~ /^class=/ && class == "" ) {
- sub(/^class=/, "", $1)
- class=$0
- }
- }
- if ( device == "" ) {
- device=vendor
- }
- fullLine=class "," device "," vendor "," driver "," pciId "," chipId
- print fullLine
- }' <<< "$pciconf_data" ))
- IFS="$ORIGINAL_IFS"
- fi
- else
- A_PCICONF_DATA='pciconf-not-installed'
- fi
- B_PCICONF_SET='true'
- a_temp=${A_PCICONF_DATA[@]}
- log_function_data "$a_temp"
- log_function_data "$pciconf_data"
- eval $LOGFE
-}
-
# packs standard card arrays using the pciconf stuff
# args: $1 - audio/network/display - matches first item in A_PCICONF_DATA arrays
get_pciconf_card_data()
@@ -9925,7 +9726,7 @@ get_ps_tcm_data()
array_length=${#A_PS_DATA[@]};
while (( $i < $array_length/2 ))
do
- reorder_temp=${A_PS_DATA[i]}f
+ reorder_temp=${A_PS_DATA[i]}
A_PS_DATA[i]=${A_PS_DATA[$array_length-$i-1]}
A_PS_DATA[$array_length-$i-1]=$reorder_temp
(( i++ ))
@@ -9945,238 +9746,261 @@ get_raid_data()
{
eval $LOGFS
- local mdstat=''
-
- if [[ $B_MDSTAT_FILE == 'true' ]];then
- mdstat="$( cat $FILE_MDSTAT 2>/dev/null )"
+ local Mdstat=''
+ local Zpool_Path=$( type -p zpool 2>/dev/null )
+
+ # note: zfs has been available for Linux for a while. BSD systems
+ # will not have mdraid.
+ if [[ -n $Zpool_Path ]];then
+ RAID_TYPE='zfs'
+ get_raid_data_zfs
fi
+ # because there's no way for inxi to handle > 1 types of
+ # software raid on one system, we simply have to assume that
+ # if it had zfs, it won't have mdraid. Note that systems with
+ # no actual mdraid but the kernel module running will have always
+ # an array count of at least 2, for the two header lines of mdraid
+ if [[ ${#A_RAID_DATA[@]} -eq 0 ]];then
+ if [[ $B_MDSTAT_FILE == 'true' ]];then
+ Mdstat="$( cat $FILE_MDSTAT 2>/dev/null )"
+ fi
+ if [[ -n $Mdstat ]];then
+ RAID_TYPE='mdraid'
+ get_raid_data_mdraid
+ fi
+ fi
+ B_RAID_SET='true'
+ a_temp=${A_RAID_DATA[@]}
+ log_function_data "A_RAID_DATA: $a_temp"
+ # echo ${#A_RAID_DATA[@]}
+ # echo -e "A_RAID_DATA:\n${a_temp}"
- if [[ -n $mdstat ]];then
- # need to make sure there's always a newline in front of each record type, and
- # also correct possible weird formats for the output from older kernels etc.
- mdstat="$( sed -e 's/^md/\nmd/' -e 's/^unused[[:space:]]/\nunused /' \
- -e 's/read_ahead/\nread_ahead/' -e 's/^resync=/\nresync=/' -e 's/^Event/\nEvent/' \
- -e 's/^[[:space:]]*$//' -e 's/[[:space:]]read_ahead/\nread_ahead/' <<< "$mdstat" )"
- # some fringe cases do not end as expected, so need to add newlines plus EOF to make sure while loop doesn't spin
- mdstat=$( echo -e "$mdstat\n\nEOF" )
+ eval $LOGFE
+}
- IFS=$'\n'
- A_RAID_DATA=( $(
- gawk '
- BEGIN {
- IGNORECASE=1
- RS="\n"
- }
- /^personalities/ {
- KernelRaidSupport = gensub(/personalities[[:space:]]*:[[:space:]]*(.*)/, "\\1", 1, $0)
- # clean off the brackets
- gsub(/[\[\]]/,"",KernelRaidSupport)
- print "KernelRaidSupport," KernelRaidSupport
- }
- /^read_ahead/ {
- ReadAhead=gensub(/read_ahead (.*)/, "\\1", 1 )
- print "ReadAhead," ReadAhead
- }
- /^Event:/ {
- print "raidEvent," $NF
- }
- # print logic will search for this value and use it to print out the unused devices data
- /^unused devices/ {
- unusedDevices = gensub(/^unused devices:[[:space:]][<]?([^>]*)[>]?.*/, "\\1", 1, $0)
- print "UnusedDevices," unusedDevices
- }
+get_raid_data_mdraid()
+{
+ eval $LOGFS
+
+ # need to make sure there's always a newline in front of each record type, and
+ # also correct possible weird formats for the output from older kernels etc.
+ Mdstat="$( sed -e 's/^md/\nmd/' -e 's/^unused[[:space:]]/\nunused /' \
+ -e 's/read_ahead/\nread_ahead/' -e 's/^resync=/\nresync=/' -e 's/^Event/\nEvent/' \
+ -e 's/^[[:space:]]*$//' -e 's/[[:space:]]read_ahead/\nread_ahead/' <<< "$Mdstat" )"
+ # some fringe cases do not end as expected, so need to add newlines plus EOF to make sure while loop doesn't spin
+ Mdstat=$( echo -e "$Mdstat\n\nEOF" )
+
+ IFS=$'\n'
+ A_RAID_DATA=( $(
+ gawk '
+ BEGIN {
+ IGNORECASE=1
+ RS="\n"
+ }
+ /^personalities/ {
+ KernelRaidSupport = gensub(/personalities[[:space:]]*:[[:space:]]*(.*)/, "\\1", 1, $0)
+ # clean off the brackets
+ gsub(/[\[\]]/,"",KernelRaidSupport)
+ print "KernelRaidSupport," KernelRaidSupport
+ }
+ /^read_ahead/ {
+ ReadAhead=gensub(/read_ahead (.*)/, "\\1", 1 )
+ print "ReadAhead," ReadAhead
+ }
+ /^Event:/ {
+ print "raidEvent," $NF
+ }
+ # print logic will search for this value and use it to print out the unused devices data
+ /^unused devices/ {
+ unusedDevices = gensub(/^unused devices:[[:space:]][<]?([^>]*)[>]?.*/, "\\1", 1, $0)
+ print "UnusedDevices," unusedDevices
+ }
+
+ /^md/ {
+ # reset for each record loop through
+ deviceState = ""
+ bitmapValues = ""
+ blocks = ""
+ chunkSize = ""
+ components = ""
+ device = ""
+ deviceReport = ""
+ finishTime = ""
+ recoverSpeed = ""
+ recoveryProgressBar = ""
+ recoveryPercent = ""
+ raidLevel = ""
+ sectorsRecovered = ""
+ separator = ""
+ superBlock = ""
+ uData = ""
- /^md/ {
- # reset for each record loop through
- deviceState = ""
- bitmapValues = ""
- blocks = ""
- chunkSize = ""
- components = ""
- device = ""
- deviceReport = ""
- finishTime = ""
- recoverSpeed = ""
- recoveryProgressBar = ""
- recoveryPercent = ""
- raidLevel = ""
- sectorsRecovered = ""
+ while ( !/^[[:space:]]*$/ ) {
+ gsub(/'"$BAN_LIST_ARRAY"'/, " ", $0 )
+ gsub(/[[:space:]]+/, " ", $0 )
+ if ( $0 ~ /^md/ ) {
+ device = gensub(/(md.*)[[:space:]]?:/, "\\1", "1", $1 )
+ }
+ if ( $0 ~ /mirror|raid[0-9]+/ ) {
+ raidLevel = gensub(/(.*)raid([0-9]+)(.*)/, "\\2", "g", $0 )
+ }
+ if ( $0 ~ /(active \(auto-read-only\)|active|inactive)/ ) {
+ deviceState = gensub(/(.*) (active \(auto-read-only\)|active|inactive) (.*)/, "\\2", "1", $0 )
+ }
+ # gawk will not return all the components using gensub, only last one
separator = ""
- superBlock = ""
- uData = ""
-
- while ( !/^[[:space:]]*$/ ) {
- gsub(/'"$BAN_LIST_ARRAY"'/, " ", $0 )
- gsub(/[[:space:]]+/, " ", $0 )
- if ( $0 ~ /^md/ ) {
- device = gensub(/(md.*)[[:space:]]?:/, "\\1", "1", $1 )
- }
- if ( $0 ~ /mirror|raid[0-9]+/ ) {
- raidLevel = gensub(/(.*)raid([0-9]+)(.*)/, "\\2", "g", $0 )
- }
- if ( $0 ~ /(active \(auto-read-only\)|active|inactive)/ ) {
- deviceState = gensub(/(.*) (active \(auto-read-only\)|active|inactive) (.*)/, "\\2", "1", $0 )
- }
- # gawk will not return all the components using gensub, only last one
- separator = ""
- for ( i=3; i<=NF; i++ ) {
- if ( $i ~ /[hs]d[a-z][0-9]*(\[[0-9]+\])?(\([SF]\))?/ ) {
- components = components separator $i
- separator=" "
- }
- }
- if ( $0 ~ /blocks/ ) {
- blocks = gensub(/(.*[[:space:]]+)?([0-9]+)[[:space:]]blocks.*/, "\\2", "1", $0)
- }
- if ( $0 ~ /super[[:space:]][0-9\.]+/ ) {
- superBlock = gensub(/.*[[:space:]]super[[:space:]]([0-9\.]+)[[:space:]].*/, "\\1", "1", $0)
- }
- if ( $0 ~ /algorithm[[:space:]][0-9\.]+/ ) {
- algorithm = gensub(/.*[[:space:]]algorithm[[:space:]]([0-9\.]+)[[:space:]].*/, "\\1", "1", $0)
- }
- if ( $0 ~ /\[[0-9]+\/[0-9]+\]/ ) {
- deviceReport = gensub(/.*[[:space:]]\[([0-9]+\/[0-9]+)\][[:space:]].*/, "\\1", "1", $0)
- uData = gensub(/.*[[:space:]]\[([U_]+)\]/, "\\1", "1", $0)
- }
- # need to avoid this: bitmap: 0/10 pages [0KB], 16384KB chunk
- # while currently all the normal chunks are marked with k, not kb, this can change in the future
- if ( $0 ~ /[0-9]+[k] chunk/ && $0 !~ /bitmap/ ) {
- chunkSize = gensub(/(.*) ([0-9]+[k]) chunk.*/, "\\2", "1", $0)
- }
- if ( $0 ~ /^resync=/ ) {
- sub(/resync=/,"")
- print "resyncStatus," $0
+ for ( i=3; i<=NF; i++ ) {
+ if ( $i ~ /[hs]d[a-z][0-9]*(\[[0-9]+\])?(\([SF]\))?/ ) {
+ components = components separator $i
+ separator=" "
}
- if ( $0 ~ /\[[=]*>[\.]*\].*(resync|recovery)/ ) {
- recoveryProgressBar = gensub(/.*(\[[=]*>[\.]*\]).*/, "\\1",1,$0)
+ }
+ if ( $0 ~ /blocks/ ) {
+ blocks = gensub(/(.*[[:space:]]+)?([0-9]+)[[:space:]]blocks.*/, "\\2", "1", $0)
+ }
+ if ( $0 ~ /super[[:space:]][0-9\.]+/ ) {
+ superBlock = gensub(/.*[[:space:]]super[[:space:]]([0-9\.]+)[[:space:]].*/, "\\1", "1", $0)
+ }
+ if ( $0 ~ /algorithm[[:space:]][0-9\.]+/ ) {
+ algorithm = gensub(/.*[[:space:]]algorithm[[:space:]]([0-9\.]+)[[:space:]].*/, "\\1", "1", $0)
+ }
+ if ( $0 ~ /\[[0-9]+\/[0-9]+\]/ ) {
+ deviceReport = gensub(/.*[[:space:]]\[([0-9]+\/[0-9]+)\][[:space:]].*/, "\\1", "1", $0)
+ uData = gensub(/.*[[:space:]]\[([U_]+)\]/, "\\1", "1", $0)
+ }
+ # need to avoid this: bitmap: 0/10 pages [0KB], 16384KB chunk
+ # while currently all the normal chunks are marked with k, not kb, this can change in the future
+ if ( $0 ~ /[0-9]+[k] chunk/ && $0 !~ /bitmap/ ) {
+ chunkSize = gensub(/(.*) ([0-9]+[k]) chunk.*/, "\\2", "1", $0)
+ }
+ if ( $0 ~ /^resync=/ ) {
+ sub(/resync=/,"")
+ print "resyncStatus," $0
+ }
+ if ( $0 ~ /\[[=]*>[\.]*\].*(resync|recovery)/ ) {
+ recoveryProgressBar = gensub(/.*(\[[=]*>[\.]*\]).*/, "\\1",1,$0)
+ }
+ if ( $0 ~ / (resync|recovery)[[:space:]]*=/ ) {
+ recoveryPercent = gensub(/.* (resync|recovery)[[:space:]]*=[[:space:]]*([0-9\.]+%).*/, "\\1~\\2", 1 )
+ if ( $0 ~ /[[:space:]]\([0-9]+\/[0-9]+\)/ ) {
+ sectorsRecovered = gensub(/.* \(([0-9]+\/[0-9]+)\).*/, "\\1", 1, $0 )
}
- if ( $0 ~ / (resync|recovery)[[:space:]]*=/ ) {
- recoveryPercent = gensub(/.* (resync|recovery)[[:space:]]*=[[:space:]]*([0-9\.]+%).*/, "\\1~\\2", 1 )
- if ( $0 ~ /[[:space:]]\([0-9]+\/[0-9]+\)/ ) {
- sectorsRecovered = gensub(/.* \(([0-9]+\/[0-9]+)\).*/, "\\1", 1, $0 )
- }
- if ( $0 ~ /finish[[:space:]]*=/ ) {
- finishTime = gensub(/.* finish[[:space:]]*=[[:space:]]*([[0-9\.]+)([a-z]+) .*/, "\\1 \\2", 1, $0 )
- }
- if ( $0 ~ /speed[[:space:]]*=/ ) {
- recoverSpeed = gensub(/.* speed[[:space:]]*=[[:space:]]*([[0-9\.]+)([a-z]+\/[a-z]+)/, "\\1 \\2", 1, $0 )
- }
+ if ( $0 ~ /finish[[:space:]]*=/ ) {
+ finishTime = gensub(/.* finish[[:space:]]*=[[:space:]]*([[0-9\.]+)([a-z]+) .*/, "\\1 \\2", 1, $0 )
}
- if ( $0 ~ /bitmap/ ) {
- bitmapValues = gensub(/(.*[[:space:]])?bitmap:(.*)/, "\\2", 1, $0 )
+ if ( $0 ~ /speed[[:space:]]*=/ ) {
+ recoverSpeed = gensub(/.* speed[[:space:]]*=[[:space:]]*([[0-9\.]+)([a-z]+\/[a-z]+)/, "\\1 \\2", 1, $0 )
}
-
- getline
}
- raidString = device "," deviceState "," raidLevel "," components "," deviceReport "," uData
- raidString = raidString "," blocks "," superBlock "," algorithm "," chunkSize "," bitmapValues
- raidString = raidString "," recoveryProgressBar "," recoveryPercent "," sectorsRecovered "," finishTime "," recoverSpeed
+ if ( $0 ~ /bitmap/ ) {
+ bitmapValues = gensub(/(.*[[:space:]])?bitmap:(.*)/, "\\2", 1, $0 )
+ }
- print raidString
+ getline
}
- ' <<< "$mdstat" ) )
- IFS="$ORIGINAL_IFS"
- else
- if [[ $BSD_TYPE == 'bsd' ]];then
- get_raid_data_bsd
- fi
- fi
- B_RAID_SET='true'
- a_temp=${A_RAID_DATA[@]}
- log_function_data "A_RAID_DATA: $a_temp"
-# echo -e "A_RAID_DATA:\n${a_temp}"
+ raidString = device "," deviceState "," raidLevel "," components "," deviceReport "," uData
+ raidString = raidString "," blocks "," superBlock "," algorithm "," chunkSize "," bitmapValues
+ raidString = raidString "," recoveryProgressBar "," recoveryPercent "," sectorsRecovered "," finishTime "," recoverSpeed
+
+ print raidString
+ }
+ ' <<< "$Mdstat" ) )
+ IFS="$ORIGINAL_IFS"
eval $LOGFE
}
-get_raid_data_bsd()
+get_raid_data_zfs()
{
eval $LOGFS
- local zpool_path=$( type -p zpool 2>/dev/null )
+
local zpool_data='' zpool_arg='v'
- if [[ -n $zpool_path ]];then
- B_BSD_RAID='true'
- # bsd sed does not support inserting a true \n so use this trick
- # some zfs does not have -v
- if $zpool_path list -v &>/dev/null;then
- zpool_data="$( $zpool_path list -v 2>/dev/null | sed $SED_RX 's/^([^[:space:]])/\
+ # bsd sed does not support inserting a true \n so use this trick
+ # some zfs does not have -v
+ if $Zpool_Path list -v &>/dev/null;then
+ zpool_data="$( $Zpool_Path list -v 2>/dev/null | sed $SED_RX 's/^([^[:space:]])/\
\1/' )"
- else
- zpool_data="$( $zpool_path list 2>/dev/null | sed $SED_RX 's/^([^[:space:]])/\
+ else
+ zpool_data="$( $Zpool_Path list 2>/dev/null | sed $SED_RX 's/^([^[:space:]])/\
\1/' )"
- zpool_arg='no-v'
- fi
+ zpool_arg='no-v'
+ fi
# echo "$zpool_data"
- IFS=$'\n'
- A_RAID_DATA=( $(
- gawk '
- BEGIN {
- IGNORECASE=1
- raidString=""
- separator=""
- components=""
- reportSize=""
- blocksAvailable=""
- chunkRaidAllocated=""
+ IFS=$'\n'
+ A_RAID_DATA=( $(
+ gawk -v bsdType="$BSD_TYPE" '
+ BEGIN {
+ IGNORECASE=1
+ raidString=""
+ separator=""
+ components=""
+ reportSize=""
+ blocksAvailable=""
+ chunkRaidAllocated=""
+ }
+ /SIZE.*ALLOC/ {
+ sub(/.*ALLOC.*/,"", $0)
+ }
+ # gptid/d874c7e7-3f6d-11e4-b7dc-080027ea466c
+ /^[^[:space:]]/ {
+ components=""
+ separator=""
+ raidLevel=""
+ device=$1
+ reportSize=$2
+ chunkRaidAllocated=$3
+ blocksAvailable=$4
+ if ( bsdType != "" ){
+ deviceState=$7
}
- /SIZE.*ALLOC/ {
- sub(/.*ALLOC.*/,"", $0)
+ else {
+ deviceState=$9
}
- # gptid/d874c7e7-3f6d-11e4-b7dc-080027ea466c
- /^[^[:space:]]/ {
- components=""
- separator=""
- raidLevel=""
- device=$1
- deviceState=$7
- reportSize=$2
- blocksAvailable=$4
- chunkRaidAllocated=$3
-
- getline
- # raid level is the second item in the output, unless it is not, sometimes it is absent
- if ( $1 != "" ) {
- if ( $1 ~ /raid|mirror/ ) {
- raidLevel="zfs " $1
- }
- else {
- raidLevel="zfs-no-raid"
- components = $1
- separator=" "
- }
+
+ getline
+ # raid level is the second item in the output, unless it is not, sometimes it is absent
+ if ( $1 != "" ) {
+ if ( $1 ~ /raid|mirror/ ) {
+ raidLevel="zfs " $1
}
-
- while ( getline && $1 !~ /^$/ ) {
- # https://blogs.oracle.com/eschrock/entry/zfs_hot_spares
- if ($1 ~ /spares/) {
- getline
- }
- # print $1
- components = components separator $1
+ else {
+ raidLevel="zfs-no-raid"
+ components = $1
separator=" "
}
- # some issues if we use ~ here
- gsub(/\//,"%",components)
+ }
+
+ while ( getline && $1 !~ /^$/ ) {
+ # https://blogs.oracle.com/eschrock/entry/zfs_hot_spares
+ if ($1 ~ /spares/) {
+ getline
+ }
# print $1
- raidString = device "," deviceState "," raidLevel "," components "," reportSize "," uData
- raidString = raidString "," blocksAvailable "," superBlock "," algorithm "," chunkRaidAllocated
- # none of these are used currently
- raidString = raidString "," bitmapValues "," recoveryProgressBar "," recoveryPercent
- raidString = raidString "," sectorsRecovered "," finishTime "," recoverSpeed
- gsub(/~/,"",raidString)
- print raidString
- }' <<< "$zpool_data" ) )
- IFS="$ORIGINAL_IFS"
- # pass the zpool type, so we know how to get the components
- get_raid_component_data_bsd "$zpool_arg"
- fi
+ components = components separator $1
+ separator=" "
+ }
+ # some issues if we use ~ here
+ gsub(/\//,"%",components)
+ # print $1
+ raidString = device "," deviceState "," raidLevel "," components "," reportSize "," uData
+ raidString = raidString "," blocksAvailable "," superBlock "," algorithm "," chunkRaidAllocated
+ # none of these are used currently
+ raidString = raidString "," bitmapValues "," recoveryProgressBar "," recoveryPercent
+ raidString = raidString "," sectorsRecovered "," finishTime "," recoverSpeed
+ gsub(/~/,"",raidString)
+ print raidString
+ }' <<< "$zpool_data" ) )
+ IFS="$ORIGINAL_IFS"
+ # pass the zpool type, so we know how to get the components
+ get_raid_component_data_zfs "$zpool_arg"
+
eval $LOGFE
}
# note, we've already tested for zpool so no further tests required
# args: $1 - zpool type, v will have a single row output, no-v has stacked for components
-get_raid_component_data_bsd()
+get_raid_component_data_zfs()
{
eval $LOGFS
local a_raid_data='' array_string='' component='' component_string=''
@@ -10193,6 +10017,7 @@ get_raid_component_data_bsd()
zpool_status=''
device=${a_raid_data[0]}
zpool_status="$( zpool status $device )"
+ log_function_data "zpool status $device:\n$zpool_status"
# we will remove ONLINE for status and only use OFFLINE/DEGRADED as tests
# for print output display of issues with components
# note: different zfs outputs vary, some have the components listed by line
@@ -10264,7 +10089,7 @@ get_raid_component_data_bsd()
eval $LOGFE
}
-# get_raid_data_bsd;exit
+# get_raid_data_zfs;exit
get_ram_data()
{
@@ -10272,7 +10097,7 @@ get_ram_data()
local a_temp='' array_string=''
- get_dmidecode_data
+ set_dmidecode_data
if [[ -n $DMIDECODE_DATA ]];then
if [[ $DMIDECODE_DATA == 'dmidecode-error-'* ]];then
@@ -10394,7 +10219,7 @@ get_ram_data()
aArrayData[k,"maxCapacity16"]=calculateSize($2,aArrayData[k,"maxCapacity16"])
#print "mc:" aArrayData[k,"maxCapacity16"] ":" $2
}
- # note: these 3 have cleaned data in get_dmidecode_data, so replace stuff manually
+ # note: these 3 have cleaned data in set_dmidecode_data, so replace stuff manually
if ( $1 == "Location") {
sub(/[[:space:]]Or[[:space:]]Motherboard/,"",$2)
location=$2
@@ -11816,30 +11641,6 @@ get_shell_parent()
eval $LOGFE
}
-# this will be used for some bsd data types
-# args: $1 - option type
-get_sysctl_data()
-{
- eval $LOGFS
-
- local sysctl_data=''
-
- if [[ $B_SYSCTL ]];then
- # darwin sysctl has BOTH = and : separators, and repeats data. Why? No bsd discipline, that's for sure
- if [[ $BSD_VERSION == 'darwin' ]];then
- sysctl_data="$( sysctl -$1 | sed 's/[[:space:]]*=[[:space:]]*/: /' )"
- else
- sysctl_data="$( sysctl -$1 )"
- fi
- fi
- if [[ $1 == 'a' ]];then
- SYSCTL_A_DATA="$sysctl_data"
- fi
- log_function_data "sysctl_data: $sysctl_data"
-
- eval $LOGFE
-}
-
get_tty_console_irc()
{
eval $LOGFS
@@ -12027,7 +11828,7 @@ get_weather_data()
if [[ $b_test_loc != 'true' ]];then
case $DOWNLOADER in
curl)
- location_data="$( curl $NO_SSL_OPT -y $DL_TIMEOUT -s $location_site )" || downloader_error=$?
+ location_data="$( curl $NO_SSL_OPT -L -y $DL_TIMEOUT -s $location_site )" || downloader_error=$?
;;
fetch)
location_data="$( fetch $NO_SSL_OPT -T $DL_TIMEOUT -q -o - $location_site )" || downloader_error=$?
@@ -12035,6 +11836,9 @@ get_weather_data()
ftp)
location_data="$( ftp $NO_SSL_OPT -o - $location_site 2>/dev/null )" || downloader_error=$?
;;
+ perl)
+ location_data="$( download_file 'stdout' $location_site )" || downloader_error=$?
+ ;;
wget)
location_data="$( wget $NO_SSL_OPT -t 1 -T $DL_TIMEOUT -q -O - $location_site )" || downloader_error=$?
;;
@@ -12164,7 +11968,7 @@ get_weather_data()
if [[ $b_test_weather != 'true' ]];then
case $DOWNLOADER in
curl)
- weather_data="$( curl $NO_SSL_OPT -y $DL_TIMEOUT -s $weather_feed"$location" )" || downloader_error=$?
+ weather_data="$( curl $NO_SSL_OPT -L -y $DL_TIMEOUT -s $weather_feed"$location" )" || downloader_error=$?
;;
fetch)
weather_data="$( fetch $NO_SSL_OPT -T $DL_TIMEOUT -q -o - $weather_feed"$location" )" || downloader_error=$?
@@ -12172,6 +11976,9 @@ get_weather_data()
ftp)
weather_data="$( ftp $NO_SSL_OPT -o - $weather_feed"$location" 2>/dev/null )" || downloader_error=$?
;;
+ perl)
+ weather_data="$( download_file 'stdout' "$weather_feed$location" )" || downloader_error=$?
+ ;;
wget)
weather_data="$( wget $NO_SSL_OPT -t 1 -T $DL_TIMEOUT -q -O - $weather_feed"$location" )" || downloader_error=$?
;;
@@ -12326,22 +12133,293 @@ get_weather_data()
# get_weather_data;exit
#### -------------------------------------------------------------------
-#### special data handling for specific options and conditions
+#### SPECIAL DATA HANDLERS - INITIALIZE DATA VALUES
#### -------------------------------------------------------------------
-# args: $1 - string to strip color code characters out of
-# returns count of string length minus colors
-# note; this cleanup may not be working on bsd sed
-calculate_line_length()
+# BSD only
+set_dmesg_boot_data()
{
- local string=$1
- # ansi:  irc: \x0312
- # note: using special trick for bsd sed, tr - NOTE irc sed must use " double quote
- string=$( sed -e 's/'$ESC'\[[0-9]\{1,2\}\(;[0-9]\{1,2\}\)\{0,2\}m//g' -e "s/\\\x0[0-9]\{1,3\}//g" <<< $string )
- #echo $string
- LINE_LENGTH=${#string}
- # echo ${#string}
+ eval $LOGFS
+
+ local dmsg_boot_data=''
+
+ if [[ $B_DMESG_BOOT_FILE == 'true' ]];then
+ # replace all indented items with ~ so we can id them easily while processing
+ # note that if user, may get error of read permissions
+ # for some weird reason, real mem and avail mem are use a '=' separator, who knows why, the others are ':'
+ dmsg_boot_data="$( cat $FILE_DMESG_BOOT 2>/dev/null | gawk '
+ {
+ sub(/[[:space:]]*=[[:space:]]*|:[[:space:]]*/,":", $0)
+ gsub(/'"$BAN_LIST_ARRAY"'/," ", $0)
+ gsub(/\"/, "", $0)
+ gsub(/[[:space:]][[:space:]]/, " ", $0)
+ print $0
+ }' )"
+ fi
+ DMESG_BOOT_DATA="$dmsg_boot_data"
+ log_function_data "$dmsg_boot_data"
+ eval $LOGFE
+}
+
+set_dmidecode_data()
+{
+ eval $LOGFS
+
+ local dmiData="" b_debugger='false'
+
+ if [[ $B_DMIDECODE_SET != 'true' ]];then
+ dmidecodePath=$( type -p dmidecode 2>/dev/null )
+ if [[ -z $dmidecodePath ]];then
+ DMIDECODE_DATA='dmidecode-error-not-installed'
+ else
+ # note stripping out these lines: Handle 0x0016, DMI type 17, 27 bytes
+ # but NOT deleting them, in case the dmidecode data is missing empty lines which will be
+ # used to separate results. Then we remove the doubled empty lines to keep it clean and
+ # strip out all the stuff we don't want to see in the results. We want the error data in
+ # stdout for error handling
+ if [[ $b_debugger == 'true' && $HOSTNAME == 'yawn' ]];then
+ dmiData="$( cat ~/bin/scripts/inxi/svn/misc/data/dmidecode/dmidecode-memory-variants-2.txt )"
+ else
+ dmiData="$( $dmidecodePath 2>&1 )"
+ fi
+ # these tests first, because bsd error messages like this (note how many : are in the string)
+ # inxi: line 4928: /usr/local/sbin/dmidecode: Permission denied
+ if [[ ${#dmiData} -lt 200 ]];then
+ if [[ -z ${dmiData/*Permission denied*/} ]];then
+ # if [[ -n $( grep -i 'Permission denied' <<< "$dmiData" ) ]];then
+ DMIDECODE_DATA='dmidecode-error-requires-root'
+ # this handles very old systems, like Lenny 2.6.26, with dmidecode, but no data
+ elif [[ -n $( grep -i 'no smbios ' <<< "$dmiData" ) ]];then
+ DMIDECODE_DATA='dmidecode-error-no-smbios-dmi-data'
+ else
+ DMIDECODE_DATA='dmidecode-error-unknown-error'
+ fi
+ else
+ DMIDECODE_DATA="$( echo "$dmiData" | gawk -F ':' '
+ BEGIN {
+ IGNORECASE=1
+ cutExtraTab="false"
+ twoData=""
+ oneData=""
+ }
+ {
+ # no idea why, but freebsd gawk does not do this right
+ oneData=$1
+ twoData=$2
+ if ( twoData != "" ) {
+ twoHolder="true"
+ }
+ else {
+ twoHolder="false"
+ }
+ if ( $0 ~ /^\tDMI type/ ) {
+ sub(/^\tDMI type.*/, "", $0)
+ cutExtraTab="true"
+ }
+ gsub(/'"$BAN_LIST_NORMAL"'/, "", twoData)
+ gsub(/'"$BAN_LIST_ARRAY"'/, " ", twoData)
+ # clean out Handle line
+ # sub(/^Handle.*/,"", $0)
+ sub(/^[[:space:]]*Inactive.*/,"",twoData)
+ # yes, there is a typo in a user data set, unknow
+ # Base Board Version|Base Board Serial Number
+ # Chassis Manufacturer|Chassis Version|Chassis Serial Number
+ # System manufacturer|System Product Name|System Version
+ # To Be Filled By O.E.M.
+ # strip out starting white space so that the following stuff will clear properly
+ sub(/^[[:space:]]+/, "", twoData)
+ sub(/^Base Board .*|^Chassis .*|empty|.*O\.E\.M\..*|.*OEM.*|^Not .*|^System .*|.*unknow.*|.*N\/A.*|none|^To be filled.*|^0x[0]+$|\[Empty\]|<Bad Index>|Default string|^\.\.$/, "", twoData)
+ sub(/.*(AssetTagNum|Manufacturer| Or Motherboard|PartNum.*|SerNum).*/, "", twoData)
+ gsub(/\ybios\y|\yacpi\y/, "", twoData) # note: biostar
+ sub(/http:\/\/www.abit.com.tw\//, "Abit", twoData)
+
+ # for double indented values replace with ~ so later can test for it, we are trusting that
+ # indentation will be tabbed in this case
+ # special case, dmidecode 2.2 has an extra tab and a DMI type line
+ if ( cutExtraTab == "true" ) {
+ sub(/^\t\t\t+/, "~", oneData)
+ }
+ else {
+ sub(/^\t\t+/, "~", oneData)
+ }
+ gsub(/ [ \t]+/, " ", twoData)
+ gsub(/^[[:space:]]+|[[:space:]]+$/, "", twoData)
+ gsub(/^[[:space:]]+|[[:space:]]+$/, "", oneData)
+
+ # reconstructing the line for processing so gawk can use -F : again
+ if ( oneData != "" && twoHolder == "true" ) {
+ print oneData ":" twoData
+ }
+ else {
+ # make sure all null lines have no spaces in them!
+ gsub(/^[[:space:]]+|[[:space:]]+$/,"",$0)
+ print $0
+ }
+ }' \
+ | sed '/^$/{
+N
+/^\n$/D
+}' \
+ )"
+ fi
+ # echo ":${DMIDECODE_DATA}:"
+ log_function_data "DMIDECODE_DATA (PRE): $DMIDECODE_DATA"
+
+ fi
+ B_DMIDECODE_SET='true'
+ log_function_data "DMIDECODE_DATA (POST): $DMIDECODE_DATA"
+ fi
+
+ eval $LOGFE
}
+# set_dmidecode_data;echo "$DMIDECODE_DATA";exit
+
+# args: $1 - v/n
+set_lspci_data()
+{
+ eval $LOGFS
+ local lspci_data=''
+
+ if [[ $B_LSPCI == 'true' ]];then
+ lspci_data="$( lspci -$1 | gawk '{
+ gsub(/\(prog-if[^)]*\)/,"")
+ sub(/^0000:/, "", $0) # seen case where the 0000: is prepended, rare, but happens
+ print
+ }' )"
+ fi
+ log_function_data 'raw' "lspci_data $1:\n$lspci_data"
+ if [[ $1 == 'v' ]];then
+ LSPCI_V_DATA="$lspci_data"
+ elif [[ $1 == 'n' ]];then
+ LSPCI_N_DATA="$lspci_data"
+ fi
+ eval $LOGFE
+}
+
+set_pciconf_data()
+{
+ eval $LOGFS
+
+ local pciconf_data='' a_temp=''
+
+ if [[ $B_PCICONF == 'true' ]];then
+ pciconf_data="$( pciconf -lv 2>/dev/null )"
+ if [[ -n $pciconf_data ]];then
+ pciconf_data=$( gawk '
+ BEGIN {
+ IGNORECASE=1
+ }
+ {
+ gsub(/'"$BAN_LIST_NORMAL"'/, "", $0)
+ gsub(/[[:space:]]+=[[:space:]]+/, "=",$0)
+ gsub(/^[[:space:]]+|'"'"'|\"|,/, "", $0)
+ gsub(/=0x/,"=",$0)
+ # line=gensub(/.*[[:space:]]+(class=[^[:space:]]*|card=[^[:space:]]*)|chip=[^[:space:]]*|rev=[^[:space:]]*|hdr=[^[:space:]]*).*/,"\n\\1","g",$0)
+ line=gensub(/(.*@.*)/,"\n\\1",$0)
+ print line
+ }' <<< "$pciconf_data" )
+ # create empty last line with this spacing trick
+ pciconf_data="$pciconf_data
+
+EOF"
+ # echo "$pciconf_data"
+ # now insert into arrays
+ IFS=$'\n'
+ A_PCICONF_DATA=( $( gawk '
+ BEGIN {
+ fullLine=""
+ driver=""
+ vendor=""
+ device=""
+ class=""
+ chipId=""
+ pciId=""
+ itemData=""
+ IGNORECASE=1
+ }
+ /^.*@/ {
+ pciId=""
+ vendor=""
+ class=""
+ driver=""
+ device=""
+ chipId=""
+ itemData=$1
+
+ driver=gensub(/^([^@]+)@.*/, "\\1", itemData )
+ pciId=gensub(/^.*@pci([0-9\.:]+).*/, "\\1", itemData )
+ sub(/:$/, "", pciId)
+ itemData=$4
+ chipId=gensub(/.*chip=([0-9a-f][0-9a-f][0-9a-f][0-9a-f])([0-9a-f][0-9a-f][0-9a-f][0-9a-f]).*/, "\\2:\\1", itemData )
+ if ( $2 ~ /class=020000/ ) {
+ class="network"
+ }
+ else if ( $2 == "class=030000" ) {
+ class="display"
+ }
+ else if ( $2 ~ /class=040300|class=040100/ ) {
+ class="audio"
+ }
+
+ while ( getline && $1 !~ /^$/ ) {
+ if ( $1 ~ /^vendor/ ) {
+ sub(/^vendor=/, "", $1 )
+ vendor=$0
+ }
+ else if ( $1 ~ /^device/ ) {
+ sub(/^device=/, "", $1 )
+ device=$0
+ }
+ else if ( $1 ~ /^class=/ && class == "" ) {
+ sub(/^class=/, "", $1)
+ class=$0
+ }
+ }
+ if ( device == "" ) {
+ device=vendor
+ }
+ fullLine=class "," device "," vendor "," driver "," pciId "," chipId
+ print fullLine
+ }' <<< "$pciconf_data" ))
+ IFS="$ORIGINAL_IFS"
+ fi
+ else
+ A_PCICONF_DATA='pciconf-not-installed'
+ fi
+ B_PCICONF_SET='true'
+ a_temp=${A_PCICONF_DATA[@]}
+ log_function_data "$a_temp"
+ log_function_data "$pciconf_data"
+ eval $LOGFE
+}
+
+# this will be used for some bsd data types
+# args: $1 - option type
+set_sysctl_data()
+{
+ eval $LOGFS
+
+ local sysctl_data=''
+
+ if [[ $B_SYSCTL ]];then
+ # darwin sysctl has BOTH = and : separators, and repeats data. Why? No bsd discipline, that's for sure
+ if [[ $BSD_VERSION == 'darwin' ]];then
+ sysctl_data="$( sysctl -$1 | sed 's/[[:space:]]*=[[:space:]]*/: /' )"
+ else
+ sysctl_data="$( sysctl -$1 )"
+ fi
+ fi
+ if [[ $1 == 'a' ]];then
+ SYSCTL_A_DATA="$sysctl_data"
+ fi
+ log_function_data "sysctl_data: $sysctl_data"
+
+ eval $LOGFE
+}
+
+#### -------------------------------------------------------------------
+#### SPECIAL DATA HANDLERS - UTILITIES FOR GET DATA/PRINT LINES
+#### -------------------------------------------------------------------
## multiply the core count by the data to be calculated, bmips, cache
# args: $1 - string to handle; $2 - cpu count
@@ -12371,6 +12449,162 @@ calculate_multicore_data()
eval $LOGFE
}
+# used in partitions get and print functions
+# args: $1 - dev item, check for mapper, then get actual dev item if mapped
+# eg: lrwxrwxrwx 1 root root 7 Sep 26 15:10 truecrypt1 -> ../dm-2
+get_dev_processed_item()
+{
+ eval $LOGFS
+
+ local dev_item=$1 dev_return=''
+
+ if [[ -n $DEV_DISK_MAPPER && -n $( grep -is 'mapper/' <<< $dev_item ) ]];then
+ dev_return=$( echo "$DEV_DISK_MAPPER" | gawk '
+ $( NF - 2 ) ~ /^'${dev_item##*/}'$/ {
+ item=gensub( /..\/(.+)/, "\\1", 1, $NF )
+ print item
+ }' )
+ fi
+ if [[ -z $dev_return ]];then
+ dev_return=$dev_item
+ fi
+
+ echo $dev_return
+
+ eval $LOGFE
+}
+
+# Note: useless because this is just absurdly inaccurate, too bad...
+get_install_date()
+{
+ eval $LOGFS
+
+ local installed=''
+
+ if ls -al --time-style '+FORMAT %Y-%m-%d' /usr 2>/dev/null;then
+ installed=$(ls -al --time-style '+FORMAT %Y-%m-%d' / | awk '/lost\+found/ {print $7;exit}' )
+# elif
+# :
+ fi
+
+ echo $installed
+
+ eval $LOGFE
+}
+
+# args: $1 - busid
+get_lspci_chip_id()
+{
+ eval $LOGFS
+
+ local chip_id=''
+
+ chip_id=$( gawk '
+ /^'$1'/ {
+ if ( $3 != "" ) {
+ print $3
+ }
+ }' <<< "$LSPCI_N_DATA" )
+
+ echo $chip_id
+
+ eval $LOGFE
+}
+
+# process and return module version data
+get_module_version_number()
+{
+ eval $LOGFS
+ local module_version=''
+
+ if [[ $B_MODINFO_TESTED != 'true' ]];then
+ B_MODINFO_TESTED='true'
+ MODINFO_PATH=$( type -p modinfo )
+ fi
+
+ if [[ -n $MODINFO_PATH ]];then
+ module_version=$( $MODINFO_PATH $1 2>/dev/null | gawk '
+ BEGIN {
+ IGNORECASE=1
+ }
+ /^version/ {
+ gsub(/'"$BAN_LIST_ARRAY"'/, " ", $2)
+ gsub(/^ +| +$/, "", $2)
+ gsub(/ [ \t]+/, " ", $2)
+ print $2
+ }
+ ' )
+ fi
+
+ echo "$module_version"
+ log_function_data "module_version: $module_version"
+ eval $LOGFE
+}
+
+get_patch_version_string()
+{
+ SELF_PATCH=${SELF_PATCH##*[0]} # strip leading zero(s)
+
+ if [[ -n $SELF_PATCH ]];then
+ SELF_PATCH="-$SELF_PATCH"
+ # for cases where it was for example: 00-bsd cleaned to --bsd trim out one -
+ SELF_PATCH="${SELF_PATCH/--/-}"
+ fi
+}
+
+# note: gawk doesn't support white spaces in search string, gave errors, so use [[:space:]] instead
+# args: $1 - desktop/app command for --version; $2 - search string; $3 - gawk print number
+get_program_version()
+{
+ local version_data='' version='' get_version='--version'
+
+ # mate-about -v = MATE Desktop Environment 1.4.0
+ case $1 in
+ # legacy fluxbox had no --version, and current -v works
+ dwm|fluxbox|jwm|mate-about|wmii|wmii2)
+ get_version='-v'
+ ;;
+ epoch)
+ get_version='version'
+ ;;
+ esac
+
+ case $1 in
+ # note, some wm/apps send version info to stderr instead of stdout
+ dwm|ksh|scrotwm|spectrwm)
+ version_data="$( $1 $get_version 2>&1 )"
+ ;;
+ csh)
+ version_data="$( tcsh $get_version 2>/dev/null )"
+ ;;
+ # quick debian/buntu hack until I find a universal way to get version for these
+ dash)
+ if type -p dpkg &>/dev/null;then
+ version_data="$( dpkg -l $1 2>/dev/null )"
+ fi
+ ;;
+ *)
+ version_data="$( $1 $get_version 2>/dev/null )"
+ ;;
+ esac
+ log_function_data "version data: $version_data"
+ if [[ -n $version_data ]];then
+ version=$( gawk '
+ BEGIN {
+ IGNORECASE=1
+ }
+ /'$2'/ {
+ # sample: dwm-5.8.2, ©.. etc, why no space? who knows. Also get rid of v in number string
+ # xfce, and other, output has , in it, so dump all commas and parentheses
+ gsub(/(,|dwm-|wmii2-|wmii-|v|V|\(|\))/, "",$'$3')
+ print $'$3'
+ exit # quit after first match prints
+ }' <<< "$version_data" )
+ fi
+ log_function_data "program version: $version"
+ echo $version
+}
+
# prints out shortened list of flags, the main ones of interest
# args: $1 - string of cpu flags to process
process_cpu_flags()
@@ -12432,8 +12666,12 @@ process_cpu_flags()
eval $LOGFE
}
+########################################################################
+#### PRINT DATA
+########################################################################
+
#### -------------------------------------------------------------------
-#### print and processing of output data
+#### PRINT CONTROLLERS
#### -------------------------------------------------------------------
#### MASTER PRINT FUNCTION - triggers all line item print functions
@@ -12445,15 +12683,15 @@ print_it_out()
# and in some cases, their children, if variable syntax: Xxxx_Yyyy
if [[ -n $BSD_TYPE ]];then
- get_sysctl_data 'a' # set: SYSCTL_A_DATA
- get_dmesg_boot_data # set: DMESG_BOOT_DATA
+ set_sysctl_data 'a' # set: SYSCTL_A_DATA
+ set_dmesg_boot_data # set: DMESG_BOOT_DATA
fi
if [[ $B_SHOW_SHORT_OUTPUT == 'true' ]];then
print_short_data
else
- get_lspci_data 'v' # set: LSPCI_V_DATA
+ set_lspci_data 'v' # set: LSPCI_V_DATA
if [[ $B_EXTRA_EXTRA_DATA == 'true' ]];then
- get_lspci_data 'n' # set: LSPCI_N_DATA
+ set_lspci_data 'n' # set: LSPCI_N_DATA
fi
if [[ $B_SHOW_SYSTEM == 'true' ]];then
print_system_data
@@ -12644,7 +12882,9 @@ print_short_data()
eval $LOGFE
}
-#### LINE ITEM PRINT FUNCTIONS
+#### -------------------------------------------------------------------
+#### PRINT LINES
+#### -------------------------------------------------------------------
# print sound card data
print_audio_data()
@@ -12658,7 +12898,7 @@ print_audio_data()
if [[ $BSD_TYPE == 'bsd' ]];then
if [[ $B_PCICONF == 'true' ]];then
if [[ $B_PCICONF_SET == 'false' ]];then
- get_pciconf_data
+ set_pciconf_data
fi
get_pciconf_card_data 'audio'
elif [[ $B_LSPCI == 'true' ]];then
@@ -13095,7 +13335,8 @@ print_cpu_data()
if [[ -n ${a_cpu_working[2]} ]];then
if [[ -z $BSD_TYPE ]];then
# AMD SOS chips appear to report full L2 cache per core
- if [[ "${a_cpu_info[3]}" == 'amd' ]] && [[ "${a_cpu_info[4]}" == '14' || "${a_cpu_info[4]}" == '16' ]];then
+ if [[ "${a_cpu_info[3]}" == 'amd' ]] &&
+ [[ "${a_cpu_info[4]}" == '14' || "${a_cpu_info[4]}" == '16' ]];then
cpu_cache=$( calculate_multicore_data "${a_cpu_working[2]}" "$cpu_physical_count" )
elif [[ $cpu_vendor != 'intel' ]];then
cpu_cache=$( calculate_multicore_data "${a_cpu_working[2]}" "$(( $cpu_core_count * $cpu_physical_count ))" )
@@ -13309,7 +13550,7 @@ print_cpu_flags_full()
eval $LOGFE
}
-# args: $1 - type [sys/bat/default]; $2 - get_dmidecode_data error return
+# args: $1 - type [sys/bat/default]; $2 - set_dmidecode_data error return
print_dmidecode_error()
{
eval $LOGFS
@@ -13378,7 +13619,7 @@ print_graphics_data()
if [[ $BSD_TYPE == 'bsd' ]];then
if [[ $B_PCICONF == 'true' ]];then
if [[ $B_PCICONF_SET == 'false' ]];then
- get_pciconf_data
+ set_pciconf_data
fi
get_pciconf_card_data 'display'
elif [[ $B_LSPCI == 'true' ]];then
@@ -14219,7 +14460,7 @@ print_networking_data()
if [[ $BSD_TYPE == 'bsd' ]];then
if [[ $B_PCICONF == 'true' ]];then
if [[ $B_PCICONF_SET == 'false' ]];then
- get_pciconf_data
+ set_pciconf_data
fi
get_pciconf_card_data 'network'
elif [[ $B_LSPCI == 'true' ]];then
@@ -14987,7 +15228,11 @@ print_raid_data()
local no_raid_detected='' dev_string='/dev/'
local empty_raid_data='' report_size='report' blocks_avail='blocks' chunk_raid_usage='chunk size'
- if [[ -n $BSD_TYPE ]];then
+ if [[ $B_RAID_SET != 'true' ]];then
+ get_raid_data
+ fi
+ # note, default first tesat is zfs, if empty, falls back to mdraid
+ if [[ $RAID_TYPE == 'zfs' ]];then
no_raid_detected='No zfs software RAID detected-other types not yet supported.'
empty_raid_data='No zfs RAID data available-other types not yet supported.'
report_size='size'
@@ -14997,14 +15242,9 @@ print_raid_data()
no_raid_detected="No RAID data: $FILE_MDSTAT missing-is md_mod kernel module loaded?"
empty_raid_data="No RAID devices: $FILE_MDSTAT, md_mod kernel module present"
fi
-
if [[ $BSD_TYPE == 'bsd' ]];then
dev_string=''
fi
- if [[ $B_RAID_SET != 'true' ]];then
- get_raid_data
- fi
-
for (( i=0; i < ${#A_RAID_DATA[@]}; i++ ))
do
IFS=","
@@ -15034,8 +15274,9 @@ print_raid_data()
super_blocks=''
u_data=''
- if [[ -n $( grep '^md' <<< ${a_raid_working[0]} ) && -z $BSD_TYPE ]] || \
- [[ -n $BSD_TYPE && ${a_raid_working[0]} != '' ]];then
+ # we only want to print lines if anything showed up for md or zfs.
+ if [[ $RAID_TYPE == 'mdraid' && -n $( grep '^md' <<< ${a_raid_working[0]} ) ]] || \
+ [[ $RAID_TYPE == 'zfs' && ${a_raid_working[0]} != '' ]];then
if [[ $B_SHOW_BASIC_RAID == 'true' ]];then
if [[ $basic_raid != '' ]];then
basic_raid_plural='s'
@@ -15111,13 +15352,25 @@ print_raid_data()
if [[ $B_EXTRA_DATA != 'true' ]];then
component=$( sed 's/\[[0-9]\+\]//' <<< $component )
fi
- # NOTE: for bsd zfs, states are: ONLINE,DEGRADED,OFFLINE (at least)
- if [[ -n $( grep -E '(F|DEGRADED)' <<< $component ) ]];then
- component=$( sed -e 's/(F)//' -e 's/F//' -e 's/DEGRADED//' <<< $component )
+ # ZFS: states are: ONLINE,DEGRADED,FAULTED,OFFLINE,REMOVED,UNAVAIL (at least)
+ # MDRAID: states are: (F), F, (S), S
+ # F and S trigger false positives with ZFS, needs fixing
+ if [[ $RAID_TYPE == 'mdraid' && -n $( grep 'F' <<< $component ) ]] || \
+ [[ $RAID_TYPE == 'zfs' && -n $( grep -E '(DEGRADED|FAULTED)' <<< $component ) ]];then
+ if [[ $RAID_TYPE == 'mdraid' ]];then
+ component=$( sed -e 's/(F)//' -e 's/S//' <<< $component )
+ else
+ component=$( sed -e 's/DEGRADED//' -e 's/FAULTED//' <<< $component )
+ fi
failed="$failed $component"
component=''
- elif [[ -n $( grep -E '(S|OFFLINE)' <<< $component ) ]];then
- component=$( sed -e 's/(S)//' -e 's/S//' -e 's/OFFLINE//' <<< $component )
+ elif [[ $RAID_TYPE == 'mdraid' && -n $( grep -E 'S' <<< $component ) ]] || \
+ [[ $RAID_TYPE == 'zfs' && -n $( grep -E '(OFFLINE)' <<< $component ) ]];then
+ if [[ $RAID_TYPE == 'mdraid' ]];then
+ component=$( sed -e 's/(S)//' -e 's/S//' <<< $component )
+ else
+ component=$( sed -e 's/OFFLINE//' <<< $component )
+ fi
spare="$spare $component"
component=''
else
@@ -15213,9 +15466,8 @@ print_raid_data()
if [[ $B_SHOW_BASIC_RAID == 'true' && $basic_raid != '' ]];then
a_raid_data[0]="${C1}Device$basic_raid_plural$SEP3${C2} $basic_raid"
fi
- # note bsd temp test hack to make it run
- if [[ $B_MDSTAT_FILE != 'true' && -z $BSD_TYPE ]] || \
- [[ -n $BSD_TYPE && $B_BSD_RAID == 'false' ]];then
+ # This means no /proc/mdstat and no zfs_pool found
+ if [[ $RAID_TYPE == '' ]];then
if [[ $B_SHOW_RAID_R == 'true' ]];then
a_raid_data[0]="$no_raid_detected"
else
@@ -16076,7 +16328,7 @@ print_weather_data()
}
########################################################################
-#### SCRIPT EXECUTION
+#### LAUNCH
########################################################################
main $@ ## From the End comes the Beginning
diff --git a/inxi.1 b/inxi.1
index e3e1921..d97d551 100644
--- a/inxi.1
+++ b/inxi.1
@@ -1,34 +1,44 @@
-.TH INXI 1 "2017\-09\-21" inxi "inxi manual"
+.TH INXI 1 "2017\-12\-07" inxi "inxi manual"
.SH NAME
inxi \- Command line system information script for console and IRC
.SH SYNOPSIS
\fBinxi\fR \- Single line, short form. Very basic output.
-\fBinxi \fR[\fB\-AbBCdDfFGhHiIlmMnNopPrRsSuw\fR] \fR[\fB\-c NUMBER\fR] \fR[\fB\-v NUMBER\fR]
+\fBinxi \fR[\fB\-AbBCdDfFGhHiIlmMnNopPrRsSuw\fR] \fR[\fB\-c
+NUMBER\fR] \fR[\fB\-v NUMBER\fR]
-\fBinxi \fR[\fB\-t \fR(\fBc\fR or\fB m\fR or\fB cm\fR or\fB mc NUMBER\fR)] \fR[\fB\-x \-OPTION\fR(\fBs\fR)] \fR[\fB\-xx \-OPTION\fR(\fBs\fR)] \fR[\fB\-xxx \-OPTION\fR(\fBs\fR)]
+\fBinxi \fR[\fB\-t \fR(\fBc\fR or\fB m\fR or\fB cm\fR or\fB mc
+NUMBER\fR)] \fR[\fB\-x \-OPTION\fR(\fBs\fR)] \fR[\fB\-xx
+\-OPTION\fR(\fBs\fR)] \fR[\fB\-xxx \-OPTION\fR(\fBs\fR)]
-\fBinxi \fR[\fB\-\-help\fR] \fR[\fB\-\-recommends\fR] \fR[\fB\-\-version\fR] \fR[\fB\-@ NUMBER\fR]
+\fBinxi \fR[\fB\-\-help\fR] \fR[\fB\-\-recommends\fR]
+\fR[\fB\-\-version\fR] \fR[\fB\-@ NUMBER\fR]
.SH DESCRIPTION
-\fBinxi\fR is a command line system information script built for for console and IRC. It is also used for forum technical support, as a debugging tool, to quickly ascertain user system configuration and hardware. inxi shows system
-hardware, CPU, drivers, Xorg, Desktop, Kernel, GCC version(s), Processes, RAM usage, and a wide variety of other
-useful information.
-
-\fBinxi\fR output varies between CLI and IRC, with some default filters and color options applied to IRC use. Script colors can
-be turned off if desired with \fB\-c 0\fR, or changed using the \fB\-c\fR color options listed in the OPTIONS section below.
+\fBinxi\fR is a command line system information script built for for console
+and IRC. It is also used for forum technical support, as a debugging tool,
+to quickly ascertain user system configuration and hardware. inxi shows
+system hardware, CPU, drivers, Xorg, Desktop, Kernel, GCC version(s), Processes,
+RAM usage, and a wide variety of other useful information.
+
+\fBinxi\fR output varies between CLI and IRC, with some default filters and
+color options applied to IRC use. Script colors can be turned off if desired
+with \fB\-c 0\fR, or changed using the \fB\-c\fR color options listed in the
+OPTIONS section below.
.SH PRIVACY AND SECURITY
-In order to maintain basic privacy and security, inxi filters out automatically on IRC things like
-your network card mac address, WAN and LAN IP, your \fB/home\fR username directory in partitions,
-and a few other things.
-
-Because inxi is often used on forums for support, you can also trigger this filtering with the \fB\-z\fR
-option (\fB\-Fz\fR, for example). To override the IRC filter, you can use the \fB\-Z\fR option. This can be useful
-to debug network connection issues online in a private chat, for example.
+In order to maintain basic privacy and security, inxi filters out automatically
+on IRC things like your network card mac address, WAN and LAN IP, your \fB/home\fR
+username directory in partitions, and a few other things.
+
+Because inxi is often used on forums for support, you can also trigger this
+filtering with the \fB\-z\fR option (\fB\-Fz\fR, for example). To override
+the IRC filter, you can use the \fB\-Z\fR option. This can be useful to debug
+network connection issues online in a private chat, for example.
.SH USING OPTIONS
Options can be combined if they do not conflict. Either group the letters
together or separate them.
-Letters with numbers can have no gap or a gap at your discretion unless using \fB \-t\fR.
+Letters with numbers can have no gap or a gap at your discretion unless using
+\fB \-t\fR.
For example:
.B inxi
@@ -44,20 +54,21 @@ Shows basic output, short form (previously \fB\-d\fR). Same as: \fBinxi \-v 2\fR
.TP
.B \-B
Shows Battery data, charge, condition, plus extra information (if battery present).
-Uses \fB/sys\fR or for BSDs, \fBdmidecode\fR. \fBdmidecode\fR does not have very much information,
-and none about current battery state/charge/voltage. Supports multiple batteries
-when using \fB/sys\fR data.
+Uses \fB/sys\fR or for BSDs, \fBdmidecode\fR. \fBdmidecode\fR does not have very
+much information, and none about current battery state/charge/voltage. Supports
+multiple batteries when using \fB/sys\fR data.
-Note on the \fBcharge\fR item, the output shows the current charge, and the percent of
-the available capacity, which can be less than the original design capacity. In the
-following example, the actual current capacity of the battery is \fB22.2 Wh\fR,
-so the charge shows what percent of the current capacity is charged.
+Note on the \fBcharge\fR item, the output shows the current charge, and the
+percent of the available capacity, which can be less than the original design
+capacity. In the following example, the actual current capacity of the battery
+is \fB22.2 Wh\fR, so the charge shows what percent of the current capacity
+is charged.
For example: \fB20.1 Wh 95.4%\fR
-The \fBcondition\fR item shows the current available capacity / original design capacity,
-then the percentage of original capacity available in the battery. In the following
-example, the battery capacity is only 61% of it's original amount.
+The \fBcondition\fR item shows the current available capacity / original design
+capacity, then the percentage of original capacity available in the battery.
+In the following example, the battery capacity is only 61% of it's original amount.
For example: \fB22.2/36.4 Wh 61%\fR
.TP
@@ -97,23 +108,36 @@ Konversation etc.
Setting specific color type removes the global color selection.
.TP
.B \-C
-Show full CPU output, including per CPU clockspeed and CPU max speed (if available). If max speed data
-present, shows \fB(max)\fR in short output formats (\fB\inxi\fR, \fB\inxi \-b\fR) if CPU actual speed
-matches CPU max speed. If CPU max speed does not match CPU actual speed, shows both actual and max speed
-information. See \fB\-x\fR and \fB\-xx\fR for more options.
+Show full CPU output, including per CPU clockspeed and CPU max speed (if available).
+If max speed data present, shows \fB(max)\fR in short output formats (\fB\inxi\fR,
+\fB\inxi \-b\fR) if CPU actual speed matches CPU max speed. If CPU max speed does
+not match CPU actual speed, shows both actual and max speed information.
+See \fB\-x\fR and \fB\-xx\fR for more options.
+
+CPU description includes technical CPU(s) description: \fB(\-MT\-MCP)\fR
+
+* \fBMT\fR \- Multi/Hyper Threaded CPUs, more than 1 thread per core. (Previously \fBHT\fR)
+
+* \fBMCP\fR \- Multi Core Processor (More than 1 core per CPU)
+
+* \fBSMP\fR \- Symmetric Multi Processing (More than 1 physical CPUs)
+
+* \fBUP\fR \- Uni (single core) Processor
+
.TP
.B \-d
-Shows optical drive data. Same as \fB\-Dd\fR. With \fB\-x\fR, adds features line to output. Also shows
-floppy disks if present. Note that there is no current way to get any information about the floppy device
-that I am aware of, so it will simply show the floppy id, without any extra data.
-\fB\-xx\fR adds a few more features.
+Shows optical drive data. Same as \fB\-Dd\fR. With \fB\-x\fR, adds features line to
+output. Also shows floppy disks if present. Note that there is no current way to get
+any information about the floppy device that I am aware of, so it will simply show the
+floppy id, without any extra data. \fB\-xx\fR adds a few more features.
.TP
.B \-D
-Show full hard Disk info, not only model, ie: \fB/dev/sda ST380817AS 80.0GB\fR. Shows disk space
-total + used percentage. The disk used percentage includes space used by swap partition(s), since
-those are not usable for data storage. Note that with RAID disks, the percentage will be wrong
-since the total is computed from the disk sizes, but the used is computed from mounted partition used
-percentages. This small defect may get corrected in the future. Also, unmounted partitions are not
+Show full hard Disk info, not only model, ie: \fB/dev/sda ST380817AS 80.0GB\fR.
+Shows disk space total + used percentage. The disk used percentage includes space
+used by swap partition(s), since those are not usable for data storage. Note that
+with RAID disks, the percentage will be wrong since the total is computed from the
+disk sizes, but the used is computed from mounted partition used percentages. This
+small defect may get corrected in the future. Also, unmounted partitions are not
counted in disk use percentages since inxi has no access to that data.
.TP
.B \-f
@@ -121,22 +145,29 @@ Show all cpu flags used, not just the short list. Not shown with \fB\-F\fR to av
spamming. ARM cpus: show \fBfeatures\fR items.
.TP
.B \-F
-Show Full output for inxi. Includes all Upper Case line letters, plus \fB\-s\fR and \fB\-n\fR.
-Does not show extra verbose options like \fB\-d \-f \-l \-m \-o \-p \-r \-t \-u \-x\fR unless you use
-those arguments in the command, like: \fBinxi \-Frmxx\fR
+Show Full output for inxi. Includes all Upper Case line letters, plus \fB\-s\fR
+and \fB\-n\fR. Does not show extra verbose options like
+\fB\-d \-f \-l \-m \-o \-p \-r \-t \-u \-x\fR unless you use those arguments in
+the command, like: \fBinxi \-Frmxx\fR
.TP
.B \-G
-Show Graphic card information. Card(s), Display Server (vendor and version number), for example:
+Show Graphic card information. Card(s), Display Server (vendor and version number),
+for example:
+
\fBDisplay Server: Xorg 1.15.1 \fR
-,screen resolution(s), OpenGL renderer, OpenGL core profile version/OpenGL version.
-If detected (currently only available if on a desktop: will attempt to show the server type, ie, x11,
-wayland, mir. When xorg is present, its version information will show
-after the server type in parentheses. Future versions will show compositor information as well.
+as well as screen resolution(s), OpenGL renderer, OpenGL core profile version/OpenGL
+version.
+
+If detected (currently only available if on a desktop: will attempt to show the
+server type, ie, x11, wayland, mir. When xorg is present, its version information
+will show after the server type in parentheses. Future versions will show compositor
+information as well.
.TP
.B \-h
-The help menu. Features dynamic sizing to fit into terminal window. Set script global \fBCOLS_MAX_CONSOLE\fR
-if you want a different default value, or use \fB\-y <width>\fR to temporarily override the defaults or actual window width.
+The help menu. Features dynamic sizing to fit into terminal window. Set script
+global \fBCOLS_MAX_CONSOLE\fR if you want a different default value, or
+use \fB\-y <width>\fR to temporarily override the defaults or actual window width.
.TP
.B \-\-help
Same as \fB\-h\fR
@@ -146,42 +177,63 @@ The help menu, plus developer options. Do not use dev options in normal
operation!
.TP
.B \-i
-Show Wan IP address, and shows local interfaces (requires \fBifconfig\fR or \fBip\fR network tool).
-Same as \-Nni. Not shown with \fB\-F\fR for user security reasons, you shouldn't
-paste your local/wan IP. Shows both IPv4 and IPv6 link IP address.
+Show Wan IP address, and shows local interfaces (requires \fBifconfig\fR or
+\fBip\fR network tool). Same as \-Nni. Not shown with \fB\-F\fR for user security
+reasons, you shouldn't paste your local/wan IP. Shows both IPv4 and IPv6 link IP
+address.
.TP
.B \-I
-Show Information: processes, uptime, memory, irc client (or shell type if run in shell, not irc), inxi version.
-See \fB\-x\fR and \fB\-xx\fR for extra information (init type/version, runlevel).
+Show Information: processes, uptime, memory, irc client (or shell type if run in
+shell, not irc), inxi version. See \fB\-x\fR and \fB\-xx\fR for extra information
+(init type/version, runlevel).
.TP
.B \-l
-Show partition labels. Default: short partition \fB\-P\fR. For full \fB\-p\fR output, use: \fB\-pl\fR (or \fB\-plu\fR).
+Show partition labels. Default: short partition \fB\-P\fR. For full \fB\-p\fR output,
+use: \fB\-pl\fR (or \fB\-plu\fR).
.TP
.B \-m
-Memory (RAM) data. Does not show with \fB\-b\fR or \fB\-F\fR unless you use \fB\-m\fR explicitly. Ordered by system board physical system memory array(s) (\fBArray\-[number] capacity:\fR), and individual memory devices (\fBDevice\-[number]\fR). Physical memory array(s) data shows array capacity, and number of devices supported, and Error Correction information. Devices shows locator data (highly variable in syntax), size, speed, type (eg: \fBtype: DDR3\fR).
-
-Note that \fB\-m\fR uses \fBdmidecode\fR, which must be run as root (or start \fBinxi\fR with \fBsudo\fR), unless you figure out how to set up sudo to permit dmidecode to read \fB/dev/mem\fR as user. Note that speed will not show if \fBNo Module Installed\fR is found in size. This will also turn off Bus Width data output if it is null.
-
-If memory information was found, and if the \fB\-I\fR line or the \fB\-tm\fR item have not been triggered,
-will also print the ram used/total.
-
-Because dmidecode data is extremely unreliable, inxi will try to make best guesses. If you see \fB(check)\fR after capacity number, you should check it for sure with specifications. \fB(est)\fR is slightly more reliable, but you should still check the real specifications before buying ram. Unfortunately there is nothing \fBinxi\fR can do to get truly reliable data about the system ram, maybe one day the kernel devs will put this data into \fB/sys\fR, and make it real data, taken from the actual system, not dmi data. For most people, the data will be right, but a significant percentage of users will have either wrong max module size, if present, or max capacity.
+Memory (RAM) data. Does not show with \fB\-b\fR or \fB\-F\fR unless you use \fB\-m\fR
+explicitly. Ordered by system board physical system memory array(s) (\fBArray\-[number]
+capacity:\fR), and individual memory devices (\fBDevice\-[number]\fR). Physical memory
+array(s) data shows array capacity, and number of devices supported, and Error Correction
+information. Devices shows locator data (highly variable in syntax), size, speed,
+type (eg: \fBtype: DDR3\fR).
+
+Note that \fB\-m\fR uses \fBdmidecode\fR, which must be run as root (or start
+\fBinxi\fR with \fBsudo\fR), unless you figure out how to set up sudo to permit
+dmidecode to read \fB/dev/mem\fR as user. Note that speed will not show if \fBNo Module
+Installed\fR is found in size. This will also turn off Bus Width data output if it is null.
+
+If memory information was found, and if the \fB\-I\fR line or the \fB\-tm\fR item have
+not been triggered, will also print the ram used/total.
+
+Because dmidecode data is extremely unreliable, inxi will try to make best guesses.
+If you see \fB(check)\fR after capacity number, you should check it for sure with
+specifications. \fB(est)\fR is slightly more reliable, but you should still check
+the real specifications before buying ram. Unfortunately there is nothing \fBinxi\fR
+can do to get truly reliable data about the system ram, maybe one day the kernel devs
+will put this data into \fB/sys\fR, and make it real data, taken from the actual system,
+not dmi data. For most people, the data will be right, but a significant percentage of
+users will have either wrong max module size, if present, or max capacity.
.TP
.B \-M
Show machine data. Device, Motherboard, Bios, and if present, System Builder (Like Lenovo).
-Older systems/kernels without the required \fB/sys\fR data can use dmidecode instead, run as root. If using dmidecode,
-may also show bios revision as well as version. \fB\-! 33\fR can force use of \fBdmidecode\fR data instead of \fB/sys\fR.
-Will also attempt to show if the system was booted by BIOS, UEFI, or UEFI [Legacy]. The last one is legacy BIOS boot mode
-in a systemboard using UEFI but booted as BIOS/Legacy.
-
-Device requires either /sys or dmidecode. Note that 'other\-vm?' is a type that means it's usually a vm, but inxi
-failed to detect which type, or to positively confirm which vm it is. Primary vm identification is via systemd\-detect\-virt
-but fallback tests that should support some BSDs as well are used. Less commonly used or harder to detect VMs may not
-be correctly detected, if you get a wrong output, post an issue and we'll get it fixed if possible.
-
-Due to unreliable vendor data, device will show: desktop; laptop; notebook; server; blade plus some obscure stuff that
-inxi is unlikely to ever run on.
+Older systems/kernels without the required \fB/sys\fR data can use dmidecode instead, run
+as root. If using dmidecode, may also show bios revision as well as version. \fB\-! 33\fR
+can force use of \fBdmidecode\fR data instead of \fB/sys\fR. Will also attempt to show
+if the system was booted by BIOS, UEFI, or UEFI [Legacy]. The last one is legacy BIOS
+boot mode in a systemboard using UEFI but booted as BIOS/Legacy.
+
+Device requires either /sys or dmidecode. Note that 'other\-vm?' is a type that means
+it's usually a vm, but inxi failed to detect which type, or to positively confirm which
+vm it is. Primary vm identification is via systemd\-detect\-virt but fallback tests that
+should support some BSDs as well are used. Less commonly used or harder to detect VMs
+may not be correctly detected, if you get a wrong output, post an issue and we'll get it
+fixed if possible.
+
+Due to unreliable vendor data, device will show: desktop; laptop; notebook; server;
+blade plus some obscure stuff that inxi is unlikely to ever run on.
.TP
.B \-n
Show Advanced Network card information. Same as \fB\-Nn\fR. Shows interface, speed,
@@ -204,7 +256,8 @@ Show full partition information (\fB\-P\fR plus all other detected partitions).
.TP
.B \-P
Show Partition information (shows what \fB\-v 4\fR would show, but without extra data).
-Shows, if detected: \fB/ /boot /home /opt /tmp /usr /var /var/tmp /var/log\fR. Use \fB\-p\fR to see all mounted partitions.
+Shows, if detected: \fB/ /boot /home /opt /tmp /usr /var /var/tmp /var/log\fR.
+Use \fB\-p\fR to see all mounted partitions.
.TP
.B \-r
Show distro repository data. Currently supported repo types:
@@ -227,58 +280,76 @@ Show distro repository data. Currently supported repo types:
\fBYUM/ZYPP\fR (Fedora, Redhat, Suse + derived versions)
-(as distro data is collected more will be added. If your's is missing please show us how to get this
-information and we'll try to add it.)
+(as distro data is collected more will be added. If your's is missing please
+show us how to get this information and we'll try to add it.)
.TP
.B \-R
-Show RAID data. Shows RAID devices, states, levels, and components, and extra data with \fB\-x\fR / \fB\-xx\fR.
+Show RAID data. Shows RAID devices, states, levels, and components, and
+extra data with \fB\-x\fR / \fB\-xx\fR.
+
md\-raid: If device is resyncing, shows resync progress line as well.
+
+Note: Only md\-raid and ZFS are supported. Other software raid types could
+be added, but only if users supply all data required, and if the software
+raid actually can be made to give the required output.
+
+Note: due to the complexity, only one raid type per system is supported.
+Md\-raid overrides ZFS if no ZFS was found.
.TP
.B \-\-recommends
Checks inxi application dependencies + recommends, and directories, then shows
what package(s) you need to install to add support for that feature.
.TP
.B \-s
-Show sensors output (if sensors installed/configured): mobo/cpu/gpu temp; detected
-fan speeds. Gpu temp only for Fglrx/Nvidia drivers. Nvidia shows screen number for > 1 screens.
+Show sensors output (if sensors installed/configured): mobo/cpu/gpu temp;
+detected fan speeds. Gpu temp only for Fglrx/Nvidia drivers. Nvidia shows
+screen number for > 1 screens.
.TP
.B \-S
-Show System information: host name, kernel, desktop environment (if in X), distro. With \fB\-xx\fR show
-dm \- or startx \- (only shows if present and running if out of X), and if in X, with \fB\-xxx\fR show more desktop info, like shell/panel etc.
+Show System information: host name, kernel, desktop environment (if in X),
+distro. With \fB\-xx\fR show dm \- or startx \- (only shows if present and
+running if out of X), and if in X, with \fB\-xxx\fR show more desktop info,
+like shell/panel etc.
.TP
.B \-t
\fR[\fBc\fR or\fB m\fR or\fB cm\fR or\fB mc NUMBER\fR]\fR
-Show processes. If followed by numbers \fB1\-20\fR, shows that number of processes for each type
-(default: \fB5\fR; if in irc, max: \fB5\fR)
+Show processes. If followed by numbers \fB1\-20\fR, shows that number of
+processes for each type (default: \fB5\fR; if in irc, max: \fB5\fR)
-Make sure to have no space between letters and numbers (\fB\-t cm10\fR \- right, \fB\-t cm 10\fR \- wrong).
+Make sure to have no space between letters and numbers (\fB\-t cm10\fR
+\- right, \fB\-t cm 10\fR \- wrong).
.TP
.B \-t c\fR
\- cpu only. With \fB\-x\fR, shows also memory for that process on same line.
.TP
.B \-t m\fR
-\- memory only. With \fB\-x\fR, shows also cpu for that process on same line. If the \-I line is not triggered,
-will also show the system used/total ram information in the first \fBMemory\fR line of output.
+\- memory only. With \fB\-x\fR, shows also cpu for that process on same line.
+If the \-I line is not triggered, will also show the system used/total ram
+information in the first \fBMemory\fR line of output.
.TP
.B \-t cm\fR
-\- cpu+memory. With \fB\-x\fR, shows also cpu or memory for that process on same line.
+\- cpu+memory. With \fB\-x\fR, shows also cpu or memory for that process on
+same line.
.TP
.B \-u
-Show partition UUIDs. Default: short partition \fB\-P\fR. For full \fB\-p\fR output, use: \fB\-pu\fR (or \fB\-plu\fR).
+Show partition UUIDs. Default: short partition \fB\-P\fR. For full \fB\-p\fR
+output, use: \fB\-pu\fR (or \fB\-plu\fR).
.TP
.B \-U
Note \- Maintainer may have disabled this function.
If inxi \fB\-h\fR has no listing for \fB\-U\fR then it's disabled.
-Auto\-update script. Note: if you installed as root, you must be root to update,
-otherwise user is fine. Also installs / updates this Man Page to: \fB/usr/local/share/man/man1\fR
-(if \fB/usr/local/share/man/\fR exists AND there is no inxi man page in \fB/usr/share/man/man1\fR,
-otherwise it goes to \fB/usr/share/man/man1\fR)
-This requires that you be root to write to that directory.
+Auto\-update script. Note: if you installed as root, you must be root to
+update, otherwise user is fine. Also installs / updates this Man Page to:
+\fB/usr/local/share/man/man1\fR (if \fB/usr/local/share/man/\fR exists
+AND there is no inxi man page in \fB/usr/share/man/man1\fR, otherwise it
+goes to \fB/usr/share/man/man1\fR). This requires that you be root to write
+to that directory.
-Previous versions of inxi manually installed man page were installed to \fB/usr/share/man/man1\fR. If
-you want the man page to go into \fB/usr/local/share/man/man1\fR move it there and inxi will update to
+Previous versions of inxi manually installed man page were installed to
+\fB/usr/share/man/man1\fR. If you want the man page to go into
+\fB/usr/local/share/man/man1\fR move it there and inxi will update to
that path from then on.
.TP
.B \-V
@@ -288,7 +359,8 @@ inxi version information. Prints information then exits.
same as \fB\-V\fR
.TP
.B \-v
-Script verbosity levels. Verbosity level number is required. Should not be used with \fB\-b\fR or \fB\-F\fR.
+Script verbosity levels. Verbosity level number is required. Should not be
+used with \fB\-b\fR or \fB\-F\fR.
Supported levels: \fB0\-7\fR Examples :\fB inxi \-v 4 \fR or \fB inxi \-v4\fR
.TP
@@ -296,66 +368,82 @@ Supported levels: \fB0\-7\fR Examples :\fB inxi \-v 4 \fR or \fB inxi \-v4\fR
\- Short output, same as: \fBinxi\fR
.TP
.B \-v 1
-\- Basic verbose, \fB\-S\fR + basic CPU (cores, model, clock speed, and max speed, if available)
-+ \fB\-G\fR + basic Disk + \fB\-I\fR.
+\- Basic verbose, \fB\-S\fR + basic CPU (cores, model, clock speed, and max
+speed, if available) + \fB\-G\fR + basic Disk + \fB\-I\fR.
.TP
.B \-v 2
-\- Adds networking card (\fB\-N\fR), Machine (\fB\-M\fR) data, Battery (\fB\-B\fR) (if available), and shows basic hard disk data
-(names only). Same as: \fBinxi \-b\fR
+\- Adds networking card (\fB\-N\fR), Machine (\fB\-M\fR) data, Battery (\fB\-B\fR)
+(if available), and shows basic hard disk data (names only). Same as: \fBinxi \-b\fR
.TP
.B \-v 3
-\- Adds advanced CPU (\fB\-C\fR); network (\fB\-n\fR) data; triggers \fB\-x\fR advanced data option.
+\- Adds advanced CPU (\fB\-C\fR); network (\fB\-n\fR) data; triggers \fB\-x\fR
+advanced data option.
.TP
.B \-v 4
-\- Adds partition size/filled data (\fB\-P\fR) for (if present):\fB/ /home /var/ /boot\fR
-Shows full disk data (\fB\-D\fR)
+\- Adds partition size/filled data (\fB\-P\fR) for (if present):
+\fB/ /home /var/ /boot\fR Shows full disk data (\fB\-D\fR)
.TP
.B \-v 5
-\- Adds audio card (\fB\-A\fR); memory/ram (\fB\-m\fR);sensors (\fB\-s\fR), partition label (\fB\-l\fR) and UUID (\fB\-u\fR), short form of
+\- Adds audio card (\fB\-A\fR); memory/ram (\fB\-m\fR);sensors (\fB\-s\fR),
+partition label (\fB\-l\fR) and UUID (\fB\-u\fR), short form of
optical drives.
.TP
.B \-v 6
-\- Adds full partition data (\fB\-p\fR), unmounted partition data (\fB\-o\fR), optical drive data (\fB\-d\fR);
-triggers \fB\-xx\fR extra data option.
+\- Adds full partition data (\fB\-p\fR), unmounted partition data (\fB\-o\fR),
+optical drive data (\fB\-d\fR); triggers \fB\-xx\fR extra data option.
.TP
.B \-v 7
\- Adds network IP data (\fB\-i\fR); triggers \fB\-xxx\fR
.TP
.B \-w
-Adds weather line. Note, this depends on an unreliable api so it may not always be working in the future.
-To get weather for an alternate location, use \fB\-W <location_string>\fR. See also \fB\-x\fR, \fB\-xx\fR, \fB\-xxx\fR option.
-Please note, your distribution's maintainer may chose to disable this feature, so if \fB\-w\fR or \fB\-W\fR don't work, that's why.
+Adds weather line. Note, this depends on an unreliable api so it may not always
+be working in the future. To get weather for an alternate location, use
+\fB\-W <location_string>\fR. See also \fB\-x\fR, \fB\-xx\fR, \fB\-xxx\fR option.
+Please note, your distribution's maintainer may chose to disable this feature,
+so if \fB\-w\fR or \fB\-W\fR don't work, that's why.
.TP
.B \-W <location_string>
-Get weather/time for an alternate location. Accepts postal/zip code, city,state pair, or latitude,longitude.
-Note: city/country/state names must not contain spaces. Replace spaces with '\fB+\fR' sign. No spaces around \fB,\fR (comma).
+Get weather/time for an alternate location. Accepts postal/zip code,
+city,state pair, or latitude,longitude. Note: city/country/state names must not
+contain spaces. Replace spaces with '\fB+\fR' sign. No spaces around \fB,\fR (comma).
Use only ascii letters in city/state/country names, sorry.
-Examples: \fB\-W 95623\fR OR \fB\-W Boston,MA\fR OR \fB\-W45.5234,\-122.6762\fR OR \fB\-W new+york,ny\fR
-OR \fB\-W bodo,norway\fR.
+Examples: \fB\-W 95623\fR OR \fB\-W Boston,MA\fR OR \fB\-W45.5234,\-122.6762\fR
+OR \fB\-W new+york,ny\fR OR \fB\-W bodo,norway\fR.
.TP
.B \-y <integer >= 80>
-This is an absolute width override which sets the output line width max. Overrides \fBCOLS_MAX_IRC\fR / \fBCOLS_MAX_CONSOLE\fR globals, or the actual widths of the terminal. If used with \fB\-h\fR or \fB\-c 94\-99\fR, put \fB\-y\fR option first or the override will be ignored. Cannot be used with \fB\-\-help\fR/\fB\-\-version\fR/\fB\-\-recommends\fR type long options. Example: \fBinxi \-y 130 \-Fxx\fR
+This is an absolute width override which sets the output line width max.
+Overrides \fBCOLS_MAX_IRC\fR / \fBCOLS_MAX_CONSOLE\fR globals, or the
+actual widths of the terminal. If used with \fB\-h\fR or \fB\-c 94\-99\fR,
+put \fB\-y\fR option first or the override will be ignored. Cannot be
+used with \fB\-\-help\fR/\fB\-\-version\fR/\fB\-\-recommends\fR type
+long options. Example: \fBinxi \-y 130 \-Fxx\fR
.TP
.B \-z
-Adds security filters for IP addresses, Mac, location (\fB\-w\fR), and user home directory name. Default on for irc clients.
+Adds security filters for IP addresses, Mac, location (\fB\-w\fR), and user
+home directory name. Default on for irc clients.
.TP
.B \-Z
-Absolute override for output filters. Useful for debugging networking issues in irc for example.
+Absolute override for output filters. Useful for debugging networking
+issues in irc for example.
.SH EXTRA DATA OPTIONS
-These options are for long form only, and can be triggered by one or more \fB\-x\fR, like \fB\-xx\fR.
-Alternately, the \fB\-v\fR options trigger them in the following way:
-\fB\-v 3\fR adds \fB\-x\fR; \fB\-v 6\fR adds \fB\-xx\fR; \fB\-v 7\fR adds \fB\-xxx\fR
+These options are for long form only, and can be triggered by one or
+more \fB\-x\fR, like \fB\-xx\fR. Alternately, the \fB\-v\fR options
+trigger them in the following way: \fB\-v 3\fR adds \fB\-x\fR;
+\fB\-v 6\fR adds \fB\-xx\fR; \fB\-v 7\fR adds \fB\-xxx\fR
-These extra data triggers can be useful for getting more in\-depth data on various options.
-Can be added to any long form option list, like: \fB\-bxx\fR or \fB\-Sxxx\fR
+These extra data triggers can be useful for getting more in\-depth
+data on various options. Can be added to any long form option list,
+like: \fB\-bxx\fR or \fB\-Sxxx\fR
There are 3 extra data levels: \fB\-x\fR; \fB\-xx\fR; and \fB\-xxx\fR
-The following shows which lines / items get extra information with each extra data level.
+The following shows which lines / items get extra information with each
+extra data level.
.TP
.B \-x \-A
-\- Adds version/port(s)/driver version (if available) for each Audio device.
+\- Adds version/port(s)/driver version (if available) for each Audio
+device.
.TP
.B \-x \-A
\- Shows PCI Bus ID/Usb ID number of each Audio device.
@@ -367,17 +455,19 @@ The following shows which lines / items get extra information with each extra da
\- bogomips on CPU (if available); CPU Flags (short list).
.TP
.B \-x \-C
-\- CPU microarchitecture + revision (like Sandy Bridge, K8, ARMv8, P6, and so on). Only shows if detected. Newer
-microarchitectures will have to be added as they appear, and require the CPU family id and model id.
+\- CPU microarchitecture + revision (like Sandy Bridge, K8, ARMv8, P6,
+and so on). Only shows if detected. Newer microarchitectures will have
+to be added as they appear, and require the CPU family id and model id.
Example: \fBarch: Sandy Bridge rev.2\fR, \fBarch: K8 rev.F+\fR
.TP
.B \-x \-d
-\- Adds items to features line of optical drive; adds rev version to optical drive.
+\- Adds items to features line of optical drive; adds rev version to
+optical drive.
.TP
.B \-x \-D
-\- Hdd temp with disk data if you have hddtemp installed, if you are root OR if you have added to
-\fB/etc/sudoers\fR (sudo v. 1.7 or newer):
+\- Hdd temp with disk data if you have hddtemp installed, if you are root
+OR if you have added to \fB/etc/sudoers\fR (sudo v. 1.7 or newer):
.B <username> ALL = NOPASSWD: /usr/sbin/hddtemp (sample)
@@ -392,42 +482,53 @@ Example: \fBarch: Sandy Bridge rev.2\fR, \fBarch: K8 rev.F+\fR
\- Shows PCI Bus ID/Usb ID number of each Graphics card.
.TP
.B \-x \-i
-\- Show IP v6 additional scope data, like Global, Site, Temporary for each interface.
+\- Show IP v6 additional scope data, like Global, Site, Temporary for
+each interface.
-Note that there is no way I am aware of to filter out the deprecated IP v6 scope site/global
-temporary addresses from the output of \fBifconfig\fR. \fBip\fR tool shows that clearly.
+Note that there is no way I am aware of to filter out the deprecated
+IP v6 scope site/global temporary addresses from the output of
+\fBifconfig\fR. \fBip\fR tool shows that clearly.
-\fBip\-v6\-temporary\fR \- (\fBip\fR tool only), scope global temporary. Scope global temporary deprecated is not shown
+\fBip\-v6\-temporary\fR \- (\fBip\fR tool only), scope global temporary.
+Scope global temporary deprecated is not shown
-\fBip\-v6\-global\fR \- scope global (\fBifconfig\fR will show this for all types, global, global temporary,
-and global temporary deprecated, \fBip\fR shows it only for global)
+\fBip\-v6\-global\fR \- scope global (\fBifconfig\fR will show this for
+all types, global, global temporary, and global temporary deprecated,
+\fBip\fR shows it only for global)
-\fBip\-v6\-link\fR \- scope link (\fBip\fR/\fBifconfig\fR) \- default for \fB\-i\fR.
+\fBip\-v6\-link\fR \- scope link (\fBip\fR/\fBifconfig\fR) \- default
+for \fB\-i\fR.
-\fBip\-v6\-site\fR \- scope site (\fBip\fR/\fBifconfig\fR). This has been deprecated in IPv6, but still exists.
-\fBifconfig\fR may show multiple site values, as with global temporary, and
-global temporary deprecated.
+\fBip\-v6\-site\fR \- scope site (\fBip\fR/\fBifconfig\fR). This has been
+deprecated in IPv6, but still exists. \fBifconfig\fR may show multiple site
+values, as with global temporary, and global temporary deprecated.
\fBip\-v6\-unknown\fR \- unknown scope
.TP
.B \-x \-I
-\- Show current init system (and init rc in some cases, like OpenRC). With \-xx, shows init/rc
-version number, if available.
+\- Show current init system (and init rc in some cases, like OpenRC).
+With \-xx, shows init/rc version number, if available.
.B \-x \-I
-\- Show system GCC, default. With \-xx, also show other installed GCC versions.
+\- Show system GCC, default. With \-xx, also show other installed GCC
+versions.
.TP
.B \-x \-I
\- Show current runlevel (not available with all init systems).
.TP
.B \-x \-I
-\- If in shell (not in IRC client, that is), show shell version number (if available).
+\- If in shell (not in IRC client, that is), show shell version number
+(if available).
.TP
.B \-x \-m
-\- Shows memory device Part Number (\fBpart:\fR). Useful to order new or replacement memory sticks etc. Usually part numbers are unique, particularly if you use the word \fBmemory\fR in the search as well. With \fB\-xx\fR, shows Serial Number and Manufactorer as well.
+\- Shows memory device Part Number (\fBpart:\fR). Useful to order new or
+replacement memory sticks etc. Usually part numbers are unique, particularly
+if you use the word \fBmemory\fR in the search as well. With \fB\-xx\fR,
+shows Serial Number and Manufactorer as well.
.TP
.B \-x \-m
-\- If present, shows maximum memory module/device size in the Array line. Only some systems will have this data available.
+\- If present, shows maximum memory module/device size in the Array line.
+Only some systems will have this data available.
.TP
.B \-x \-N
\- Adds version/port(s)/driver version (if available) for each Network card;
@@ -436,20 +537,24 @@ version number, if available.
\- Shows PCI Bus ID/Usb ID number of each Network card.
.TP
.B \-x \-R
-\- md\-raid: Shows component raid id. Adds second RAID Info line: raid level; report on drives
-(like 5/5); blocks; chunk size; bitmap (if present). Resync line, shows blocks synced/total blocks.
+\- md\-raid: Shows component raid id. Adds second RAID Info line: raid level;
+report on drives (like 5/5); blocks; chunk size; bitmap (if present). Resync
+line, shows blocks synced/total blocks.
-\- zfs\-raid: Shows raid array full size; available size; portion allocated to RAID (ie, not available as storage)."
+\- zfs\-raid: Shows raid array full size; available size; portion allocated
+to RAID (ie, not available as storage)."
.TP
.B \-x \-S
\- Desktop toolkit if available (GNOME/XFCE/KDE only); Kernel gcc version.
.TP
.B \-x \-t
-\- Adds memory use output to cpu (\fB\-xt c\fR), and cpu use to memory (\fB\-xt m\fR). For \fB\-xt c\fR will also show
-system Used/Total ram data if \fB\-t m\fR (memory) is not used AND \fB\-I\fR is not triggered.
+\- Adds memory use output to cpu (\fB\-xt c\fR), and cpu use to memory
+(\fB\-xt m\fR). For \fB\-xt c\fR will also show system Used/Total ram data
+if \fB\-t m\fR (memory) is not used AND \fB\-I\fR is not triggered.
.TP
.B \-x \-w / \-W
-\- Adds wind speed and time zone (\fB\-w\fR only), and makes output go to two lines.
+\- Adds wind speed and time zone (\fB\-w\fR only), and makes output go to
+two lines.
.TP
.B \-xx \-A
\- Adds vendor:product ID of each Audio device.
@@ -457,7 +562,8 @@ system Used/Total ram data if \fB\-t m\fR (memory) is not used AND \fB\-I\fR is
.B \-xx \-B
\- Adds serial number, voltage (if available).
-Note that \fBvolts\fR shows the data (if available) as: Voltage Now / Minimum Design Voltage
+Note that \fBvolts\fR shows the data (if available) as: Voltage Now / Minimum
+Design Voltage
.TP
.B \-xx \-C
\- Shows Minimum CPU speed (if available).
@@ -475,8 +581,9 @@ Note that \fBvolts\fR shows the data (if available) as: Voltage Now / Minimum De
\- Wayland/Mir only: if found, attempts to show compositor (experimental).
.TP
.B \-xx \-G
-\- For free drivers, adds OpenGL compatibility version number if it's available. For nonfree drivers,
-the core version and compatibility versions are the same. Example:
+\- For free drivers, adds OpenGL compatibility version number if it's available.
+For nonfree drivers, the core version and compatibility versions are the same.
+Example:
\fB3.3 Mesa 11.2.0 (compat\-v: 3.0)\fR
.TP
@@ -487,33 +594,38 @@ the core version and compatibility versions are the same. Example:
\- Adds other detected installed gcc versions to primary gcc output (if present).
.TP
.B \-xx \-I
-\- Show, if detected, system default runlevel. Supports Systemd/Upstart/Sysvinit type defaults. Note that
-not all systemd systems have the default value set, in that case, if present, it will use the data from
-\fB/etc/inittab\fR.
+\- Show, if detected, system default runlevel. Supports Systemd/Upstart/Sysvinit
+type defaults. Note that not all systemd systems have the default value set, in
+that case, if present, it will use the data from \fB/etc/inittab\fR.
.TP
.B \-xx \-I
-\- Adds parent program (or tty) that started shell, if not IRC client, to shell information.
+\- Adds parent program (or tty) that started shell, if not IRC client, to shell
+information.
.TP
.B \-xx \-m
\- Shows memory device Manufacturer and Serial Number.
.TP
.B \-xx \-m
-\- Single/double bank memory, if data is found. Note, this may not be 100% right all of the time since it depends on the order that data is found in \fBdmidecode\fR output for \fBtype 6\fR and \fBtype 17\fR.
+\- Single/double bank memory, if data is found. Note, this may not be 100% right
+all of the time since it depends on the order that data is found in \fBdmidecode\fR
+output for \fBtype 6\fR and \fBtype 17\fR.
.TP
.B \-xx \-M
-\- Adds chassis information, if any data for that is available. Also shows BIOS rom size if using dmidecode.
+\- Adds chassis information, if any data for that is available. Also shows BIOS
+rom size if using dmidecode.
.TP
.B \-xx \-N
\- Adds vendor:product ID of each Network card.
.TP
.B \-xx \-R
-\- md\-raid: Adds superblock (if present); algorythm, U data. Adds system info line (kernel support,
-read ahead, raid events). Adds if present, unused device line. If device is resyncing, shows
-resync progress line as well.
+\- md\-raid: Adds superblock (if present); algorythm, U data. Adds system info
+sline (kernel support, read ahead, raid events). Adds if present, unused device
+line. If device is resyncing, shows resync progress line as well.
.TP
.B \-xx \-S
-\- Adds, if run in X, display manager type to Desktop information, if present. If none, shows N/A.
-Supports most known display managers, like xdm, gdm, kdm, slim, lightdm, or mdm.
+\- Adds, if run in X, display manager type to Desktop information, if present.
+If none, shows N/A. Supports most known display managers, like xdm, gdm, kdm,
+slim, lightdm, or mdm.
.TP
.B \-xx \-w / \-W
\- Adds humidity and barometric pressure.
@@ -522,22 +634,29 @@ Supports most known display managers, like xdm, gdm, kdm, slim, lightdm, or mdm.
\- Automatically uploads debugger data tar.gz file to \fIftp.techpatterns.com\fR.
.TP
.B \-xxx \-B
-\- Adds battery chemistry (like: \fBLi\-ion\fR), cycles (NOTE: there appears to be a problem with the Linux kernel
-obtaining the cycle count, so this almost always shows \fB0\fR. There's nothing that can be done about this glitch, the
-data is simply not available as of 2016\-04\-18), location (only available from dmidecode derived output).
+\- Adds battery chemistry (like: \fBLi\-ion\fR), cycles (NOTE: there appears to
+be a problem with the Linux kernel obtaining the cycle count, so this almost
+always shows \fB0\fR. There's nothing that can be done about this glitch, the
+data is simply not available as of 2016\-04\-18), location (only available from
+dmidecode derived output).
.TP
.B \-xxx \-m
-\- Memory bus width: primary bus width, and if present, total width. eg: bus width: 64 bit (total: 72 bits). Note that total / data widths are mixed up sometimes in dmidecode output, so inxi will take the larger value as total if present. If no total width data is found, then inxi will not show that item.
+\- Memory bus width: primary bus width, and if present, total width. eg:
+bus width: 64 bit (total: 72 bits). Note that total / data widths are mixed up
+sometimes in dmidecode output, so inxi will take the larger value as total if
+present. If no total width data is found, then inxi will not show that item.
.TP
.B \-xxx \-m
\- Adds device Type Detail, eg: DDR3 (Synchronous).
.TP
.B \-xxx \-m
-\- If present, will add memory module voltage. Only some systems will have this data available.
+\- If present, will add memory module voltage. Only some systems will have this
+data available.
.TP
.B \-xxx \-S
-\- Adds, if run in X, shell/panel type info to Desktop information, if present. If none, shows nothing.
-Supports some current desktop extras like gnome\-panel, lxde\-panel, and others. Added mainly for Mint support.
+\- Adds, if run in X, shell/panel type info to Desktop information, if present.
+If none, shows nothing. Supports some current desktop extras like gnome\-panel,
+lxde\-panel, and others. Added mainly for Mint support.
.TP
.B \-xxx \-w / \-W
\- Adds location (city state country), weather observation time, altitude of system.
@@ -545,43 +664,73 @@ If wind chill, heat index, or dew point are available, shows that data as well.
.SH ADVANCED OPTIONS
.TP
.B \-! 31
-Turns off hostname in System line. Useful, with \fB\-z\fR, for anonymizing your inxi output for posting on
-forums or IRC.
+Turns off hostname in System line. Useful, with \fB\-z\fR, for anonymizing your
+inxi output for posting on forums or IRC.
.TP
.B \-! 32
-Turns on hostname in System line. Overrides inxi config file value (if set): B_SHOW_HOST='false'.
+Turns on hostname in System line. Overrides inxi config file value (if set):
+B_SHOW_HOST='false'.
.TP
.B \-! 33
-Force use of \fBdmidecode\fR. This will override \fB/sys\fR data in some lines, like \fB\-M\fR.
+Force use of \fBdmidecode\fR. This will override \fB/sys\fR data in some lines,
+like \fB\-M\fR.
.TP
.B \-! 34
-Skip SSL certificate checks for all downloader actions (\fB\-U\fR, \fB\-w\fR, \fB\-W\fR, \fB\-i\fR).
-Use if your system does not have current SSL certificate lists, or if you have problems making a connection for
-any reason. Only works with \fBwget\fR, \fBcurl\fR, and \fBfetch\fR. This must go before the other options you use.
+Skip SSL certificate checks for all downloader actions (\fB\-U\fR, \fB\-w\fR,
+\fB\-W\fR, \fB\-i\fR). Use if your system does not have current SSL certificate
+lists, or if you have problems making a connection for any reason. Only works
+with \fBwget\fR, \fBcurl\fR, and \fBfetch\fR. This must go before the other
+options you use.
.TP
.B \-! 40
Will try to get display data out of X (does not usually work as root user).
-Default gets display info from display \fB:0\fR. If you use this format: \fB\-! 40:1\fR it
-would get it from display \fB1\fR instead, or any display you specify
-as long as there is no space between \fB\-! 40\fR and the \fB:[display id]\fR.
+Default gets display info from display \fB:0\fR. If you use this format:
+\fB\-! 40:1\fR it would get it from display \fB1\fR instead, or any display
+you specify as long as there is no space between \fB\-! 40\fR and the
+\fB:[display id]\fR.
-Note that in some cases, \fB\-! 40\fR will cause inxi to hang endlessly when running the option
-in console with Intel graphics (confirmed). Other free drivers like nouveau/ati unknown yet.
-It may be that this is a bug with the intel graphics driver, more information required.
+Note that in some cases, \fB\-! 40\fR will cause inxi to hang endlessly when
+running the option in console with Intel graphics (confirmed). Other free
+drivers like nouveau/ati unknown yet. It may be that this is a bug with the
+intel graphics driver, more information required.
-You can test this easily by running this command out of X/display server: \fBglxinfo -display :0\fR
+You can test this easily by running this command out of X/display server:
+\fBglxinfo -display :0\fR
If it hangs, \fB\-! 40\fR will not work.
+.TP
+.B \-! 41
+Bypass \fBCurl\fR as a downloader option. Priority is: Curl, Wget, Fetch,
+HTTP::Tiny, OpenBSD only: ftp
+
+.TP
+.B \-! 42
+Bypass \fBFetch\fR as a downloader option.Priority is: Curl, Wget, Fetch,
+HTTP::Tiny, OpenBSD only: ftp
+
+.TP
+.B \-! 43
+Bypass \fBWget\fR as a downloader option. Priority is: Curl, Wget, Fetch,
+HTTP::Tiny, OpenBSD only: ftp
+
+.TP
+.B \-! 44
+Bypass \fBCurl\fR, \fBFetch\fR, and \fBWget\fR as downloader options. This
+basically forces the downloader selection to use \fBPerl 5.x\fR \fBHTTP::Tiny\fR,
+which is in general slower than \fBCurl\fR or \fBWget\fR but it may help bypass
+issues with downloading.
+
.SH DEBUGGING OPTIONS
.TP
.B \-%
Overrides defective or corrupted data.
.TP
.B \-@
-Triggers debugger output. Requires debugging level \fB1\-14\fR (\fB8\-10\fR \- logging of data).
-Less than 8 just triggers inxi debugger output on screen.
+Triggers debugger output. Requires debugging level \fB1\-14\fR
+(\fB8\-10\fR \- logging of data). Less than 8 just triggers inxi
+debugger output on screen.
.TP
.B \-@
\fR[\fB1\fR\-\fB7\fR] \- On screen debugger output.
@@ -596,8 +745,9 @@ Less than 8 just triggers inxi debugger output on screen.
\- Color logging.
.TP
.B \-@ <11\-14>
-The following create a tar.gz file of system data, plus collecting the inxi output to file:
-To automatically upload debugger data tar.gz file to \fIftp.techpatterns.com\fR:
+The following create a tar.gz file of system data, plus collecting
+the inxi output to file: To automatically upload debugger data
+tar.gz file to \fIftp.techpatterns.com\fR:
\fBinxi \-xx@ <11\-14>\fR
@@ -607,27 +757,31 @@ For alternate ftp upload locations: Example:
\fIftp.yourserver.com/incoming\fB \-xx@ 14\fR
.TP
.B \-@ 11
-\- With tree traversal data file read of \fB/sys\fR
+\- With tree traversal data file read of \fB/sys\fR, and other system
+data.
.TP
.B \-@ 12
\- With xorg conf and log data, xrandr, xprop, xdpyinfo, glxinfo etc.
.TP
.B \-@ 13
-\- With data from dev, disks, partitions, etc., plus thes tree traversal data file read of \fB/sys\fR.
+\- With data from dev, disks, partitions, etc.
.TP
.B \-@ 14
\- Everything, full data collection.
.SH SUPPORTED IRC CLIENTS
-BitchX, Gaim/Pidgin, ircII, Irssi, Konversation, Kopete, KSirc, KVIrc, Weechat, and Xchat. Plus any others that
-are capable of displaying either built in or external script output.
+BitchX, Gaim/Pidgin, ircII, Irssi, Konversation, Kopete, KSirc, KVIrc, Weechat,
+and Xchat. Plus any others that are capable of displaying either built in or external
+script output.
.SH RUNNING IN IRC CLIENT
-To trigger inxi output in your IRC client, pick the appropriate method from the list below:
+To trigger inxi output in your IRC client, pick the appropriate method from the
+list below:
.TP
.B Xchat, irssi
\fR(and many other IRC clients)
.B /exec \-o inxi
\fR[\fBoptions\fR]
-If you leave off the \fB\-o\fR, only you will see the output on your local IRC client.
+If you leave off the \fB\-o\fR, only you will see the output on your local
+IRC client.
.TP
.B Konversation
.B /cmd inxi
@@ -641,10 +795,11 @@ the second for KDE 5]:
.B ln \-s /usr/local/bin/inxi /usr/share/konversation/scripts/inxi
-If inxi is somewhere else, change the path \fB/usr/local/bin\fR to wherever it is located.
+If inxi is somewhere else, change the path \fB/usr/local/bin\fR to wherever it
+is located.
-If you are using KDE/QT 5, then you may also need to add the following to get the konversation
-\fR/inxi\fR command to work:
+If you are using KDE/QT 5, then you may also need to add the following to get
+the konversation \fR/inxi\fR command to work:
.B ln \-s /usr/share/konversation /usr/share/apps/
@@ -660,9 +815,10 @@ Then you can start inxi directly, like this:
.B OLD: /shell \-o inxi
\fR[\fBoptions\fR]
-Newer (2014 and later) WeeChats work pretty much the same now as other console IRC
-clients, with \fB/exec \-o inxi \fR[\fBoptions\fR]. Also, newer WeeChats have dropped
-the \fB\-curses\fR part of their program name, ie: \fBweechat\fR instead of \fBweechat\-curses\fR.
+Newer (2014 and later) WeeChats work pretty much the same now as other console
+IRC clients, with \fB/exec \-o inxi \fR[\fBoptions\fR]. Also, newer WeeChats
+have dropped the \fB\-curses\fR part of their program name, ie:
+\fBweechat\fR instead of \fBweechat\-curses\fR.
Deprecated:
@@ -678,26 +834,31 @@ Make the script executable by
.B chmod +x shell.py
-Move it to your home folder: \fB/.weechat/python/autoload/\fR then logout, and start WeeChat with
+Move it to your home folder: \fB/.weechat/python/autoload/\fR then logout,
+and start WeeChat with
.B weechat\-curses
-Top of screen should say what pythons scripts have loaded, and should include shell. Then to run inxi,
-you would enter a command like this:
+Top of screen should say what pythons scripts have loaded, and should include
+shell. Then to run inxi, you would enter a command like this:
.B /shell \-o inxi \-bx
-If you leave off the \fB\-o\fR, only you will see the output on your local weechat. WeeChat
-users may also like to check out the weeget.py
+If you leave off the \fB\-o\fR, only you will see the output on your local
+weechat. WeeChat users may also like to check out the weeget.py
.SH INITIALIZATION FILE
-inxi will read the following configuration/initialization files in the following order:
+inxi will read the following configuration/initialization files in the
+following order:
-\fB/etc/inxi.conf\fR is the default configurations. These can be overridden by user configurations
-found in one of the following locations (inxi will place its config file using the following precedence
-as well, that is, if \fB$XDG_CONFIG_HOME\fR is not empty, it will go there, else if \fB$HOME/.conf/inxi.conf\fR
-exists, it will go there, and as a last default, the legacy location is used:
+\fB/etc/inxi.conf\fR is the default configurations. These can be overridden
+by user configurations found in one of the following locations (inxi will
+place its config file using the following precedence as well, that is,
+if \fB$XDG_CONFIG_HOME\fR is not empty, it will go there, else if
+\fB$HOME/.conf/inxi.conf\fR exists, it will go there, and as a last default,
+the legacy location is used:
-\fB$XDG_CONFIG_HOME/inxi.conf\fR or \fB$HOME/.conf/inxi.conf\fR or \fB$HOME/.inxi/inxi.conf\fR
+\fB$XDG_CONFIG_HOME/inxi.conf\fR or \fB$HOME/.conf/inxi.conf\fR or
+\fB$HOME/.inxi/inxi.conf\fR
See wiki pages for more information on how to set these up:
.TP
@@ -742,23 +903,26 @@ Steven Barrett (aka: damentz) \- usb audio patch; swap percent used patch.
Jarett.Stevens \- dmidecode \-M patch for older systems with no /sys
-And a special thanks to the nice people at irc.oftc.net channels #linux\-smokers\-club and #smxi,
-who all really have to be considered to be co\-developers because of their non\-stop enthusiasm
-and willingness to provide real time testing and debugging of inxi development.
+And a special thanks to the nice people at irc.oftc.net channels
+#linux\-smokers\-club and #smxi, who all really have to be considered to
+be co\-developers because of their non\-stop enthusiasm and willingness to
+provide real time testing and debugging of inxi development.
-A further thanks to the Siduction forum members, who have helped get some features
-working by providing a lot of datasets that revealed possible variations, particularly
-for the ram \fB\-m\fR option.
+A further thanks to the Siduction forum members, who have helped get some
+features working by providing a lot of datasets that revealed possible variations,
+particularly for the ram \fB\-m\fR option.
-Further thanks to the various inxi package maintainers, distro support people, forum
-moderators, and in particular, sys admins with their particular issues, which almost always
-help make inxi better, and any others who contribute ideas, suggestions, and patches.
+Further thanks to the various inxi package maintainers, distro support people,
+forum moderators, and in particular, sys admins with their particular issues,
+which almost always help make inxi better, and any others who contribute ideas,
+suggestions, and patches.
-Without a wide range of diverse Linux kernel based Free Desktop systems to test on, we could
-never have gotten inxi to be as reliable and solid as it's turning out to be.
+Without a wide range of diverse Linux kernel based Free Desktop systems to test
+on, we could never have gotten inxi to be as reliable and solid as it's turning
+out to be.
-And of course, big thanks locsmif, who figured out a lot of the core methods, logic,
-and tricks used in inxi.
+And of course, big thanks locsmif, who figured out a lot of the core methods,
+logic, and tricks used in inxi.
-This Man page was originally created by Gordon Spencer (aka aus9) and is maintained by
-Harald Hope (aka h2 or TechAdmin).
+This Man page was originally created by Gordon Spencer (aka aus9) and is
+maintained by Harald Hope (aka h2 or TechAdmin).
diff --git a/inxi.1.gz b/inxi.1.gz
index 817288d..ceca21e 100644
--- a/inxi.1.gz
+++ b/inxi.1.gz
Binary files differ
diff --git a/inxi.changelog b/inxi.changelog
index afd0aea..894cb98 100644
--- a/inxi.changelog
+++ b/inxi.changelog
@@ -1,4 +1,257 @@
=====================================================================================
+Version: 2.3.56
+Patch Version: 00
+Script Date: 2018-01-17
+-----------------------------------
+Changes:
+-----------------------------------
+New version, new tarball. Added an important debugger output, lsusb -v
+
+-----------------------------------
+-- Harald Hope - Wed, 17 Jan 2018 11:36:09 -0800
+
+=====================================================================================
+Version: 2.3.55
+Patch Version: 00
+Script Date: 2018-01-13
+-----------------------------------
+Changes:
+-----------------------------------
+
+New version, tarball. this is only for Manjaro, they seem to have not done the
+/etc/os-release file pretty name correctly, so the bland name reports there.
+
+Added manjoro-release to the lsb good list. No other changes.
+
+-----------------------------------
+-- Harald Hope - Sat, 13 Jan 2018 16:28:09 -0800
+
+=====================================================================================
+Version: 2.3.54
+Patch Version: 00
+Script Date: 2018-01-13
+-----------------------------------
+Changes:
+-----------------------------------
+
+New version, new tarball. Significant albeit small fix to the debugger tool.
+
+Without this fix, newer kernels can hang on the data parsing.
+
+
+-----------------------------------
+-- Harald Hope - Sat, 13 Jan 2018 11:51:50 -0800
+
+=====================================================================================
+Version: 2.3.53
+Patch Version: 00
+Script Date: 2017-12-07
+-----------------------------------
+Changes:
+-----------------------------------
+
+New version, new tarball, new man page. This should fix the Rizen multithreaded
+cpu output issues. Now inxi handles > 8 cores in terms of output filters,
+descriptions, correctly noting that it's multithreaded.
+
+Because AMD has entered the Multithreading game, I've changed the trade term:
+HT - HyperThreading to MT - MultiThreading to support both Intel and AMD variants.
+
+Updated CPU output filters to also account for these very large core counts.
+
+I believe this commit now adds full support for the new Ryzen series, but I'll have
+to see when it comes to other variants that may appear. I've tried to future proof
+the MT tests, but I won't know of those are fully functional and accurate until
+inxi sees the real data.
+
+-----------------------------------
+-- Harald Hope - Thu, 07 Dec 2017 10:35:40 -0800
+
+=====================================================================================
+Version: 2.3.52
+Patch Version: 00
+Script Date: 2017-12-02
+-----------------------------------
+Changes:
+-----------------------------------
+
+New version, new tarball. Maintainers, you can ignore this release, it's only
+a reshuffling and renaming of internal functions.
+
+-----------------------------------
+-- Harald Hope - Sat, 02 Dec 2017 17:24:43 -0800
+
+=====================================================================================
+Version: 2.3.51
+Patch Version: 00
+Script Date: 2017-11-31
+-----------------------------------
+Changes:
+-----------------------------------
+
+New version, new tarball. This is an attempt at a fix for issue #129
+
+Because I don't want to break existing cpu logic, I just added in a rizen switch,
+which will just use cpu_core_count value, then trigger HT output.
+
+This fix may or may not work, but the issue poster vanished and has not followed up.
+
+For now I'm keeping this a Ryzen specific adjustment, but it may be safe to extend
+it further, that is, if siblings > 1 && siblings = 2 * cores then it's HT.
+
+-----------------------------------
+-- Harald Hope - Fri, 01 Dec 2017 13:21:13 -0800
+
+=====================================================================================
+Version: 2.3.50
+Patch Version: 00
+Script Date: 2017-11-28
+-----------------------------------
+Changes:
+-----------------------------------
+
+New version, new tarball, bug fix for -R raid, zfs. Improved filters, clutter
+cleaner, more likely to somewhat work with gnu/linux zfs.
+
+-----------------------------------
+-- Harald Hope - Tue, 28 Nov 2017 19:41:30 -0800
+
+=====================================================================================
+Version: 2.3.49
+Patch Version: 00
+Script Date: 2017-11-28
+-----------------------------------
+Changes:
+-----------------------------------
+
+New version, new tarball, new man page. This is the first attempt to correct an
+issue a forum poster raised, which is the fact that despite the fact that GNU/Linux
+has had reasonably ok zfs support for years now, inxi only tested for zfs on bsd
+systems.
+
+This has been corrected. Due to the complexity of handling software raid, inxi
+will now test first for ZFS data, if none is found, it will then test for
+/proc/mdstat.
+
+In a perfect world I'd like to have full dynamic Raid support, but I'm missing
+all the key ingredients required to add that:
+
+1. systems to test on
+2. software raid, I don't use it
+3. data collection for non mdraid and zfs software raid, including the values
+possible to gather from all non software raid.
+
+Basically, the only way I'd extend -R raid option is if I get direct ssh access to
+a machine that uses the alternate software raid type, otherwise it would take
+forever to figure out the options.
+
+Since the number of people who might be actually running zfs and mdraid and
+using inxi probably numbers in the 10 globally, I figured this solution was a fine
+way to handle adding zfs without messing up mdraid, which is more common on linux.
+
+It also does not break BSDs, since bsds as far as I know don't use mdraid, and don't
+have /proc/mdraid in the first place.
+
+Also redid the man page to add -! 41, -! 42, -! 43, -! 44 options, which bypass
+curl, fetch, wget, and all of them, respectively. Plus making the lines less wide.
+
+That should make those people who actually use 80 column wide vi as an editor
+happy, lol.
+
+-----------------------------------
+-- Harald Hope - Tue, 28 Nov 2017 17:17:00 -0800
+
+=====================================================================================
+Version: 2.3.48
+Patch Version: 00
+Script Date: 2017-11-27
+-----------------------------------
+Changes:
+-----------------------------------
+
+New version, new tarball. No external changes, full reordering of internals to be
+easier and more predictable to find. Better section headers, all ordering alpha
+by subsections.
+
+Fixed some small debugger gatherer oversights as well.
+
+Note that I made the debugger stuff more portable, so I could use it in another
+program.
+
+-----------------------------------
+-- Harald Hope - Mon, 27 Nov 2017 12:13:05 -0800
+
+=====================================================================================
+Version: 2.3.47
+Patch Version: 00
+Script Date: 2017-11-26
+-----------------------------------
+Changes:
+-----------------------------------
+
+New version, new tarball. Bug fix for Curl, in some cases it may hit a redirect,
+so I added the -L flag to follow redirects.
+
+Make sure to update to this version or various downloader actions could fail.
+-----------------------------------
+-- Harald Hope - Sun, 26 Nov 2017 18:30:35 -0800
+
+=====================================================================================
+Version: 2.3.46
+Patch Version: 00
+Script Date: 2017-11-26
+-----------------------------------
+Changes:
+-----------------------------------
+
+New version, new tarball. Added an optional downloader: Perl HTTP::Tiny
+
+Note that this is the last choice because it's slow, the order has been revised:
+
+1. curl
+2. wget
+3. fetch
+4. Perl 5 HTTP::Tiny
+5. OpenBSD ftp
+
+wget has been downgraded due to the recent 1.19-2 bug with wget -O that did
+not get resolved quickly, and which should never have been released since
+that's a basic wget action, which means they aren't testing gnu wget the way
+they should be.
+
+All inxi downloaders can now use this option. However, in my tests it's signicantly
+slower to use HTTP::Tiny than curl or wget, so inxi will test for the downloaders
+in that order. While -i uses dig as it's primary IP tool, if dig is not installed,
+the IP will follow the same downloader priority. -U and -w/-W use downloaders.
+
+Because HTTP::Tiny is optional, and is merely used if wget/curl/fetch are not
+installed, I would not consider Perl to be a real dependency yet, just an option, so
+I guess for packager maintainers, Perl should be added as a recommends, or a
+dependency if you want to fully support the debugger options (Core Modules).
+
+While I'm still not sure which Perl modules I'm going to be using, I'm sticking
+for now to Core Modules, the standard, with some experimental exceptions that
+would only be used if the user had them present.
+
+Long term the goal is to get rid of as many dependencies as possible, replacing
+them were possible with Perl tools, but this is going to take forever, if it
+ever happens, so don't hold your breath.
+
+In the future, I expect more and more components that were gawk to be rewritten
+to Perl (Core Modules), slowly, however, very slowly.
+
+Updated --recommends to indicate the downloader options more clearly as well.
+
+Added new options for bypassing curl (-! 41), fetch (-! 42) wget (-! 43), or
+curl, fetch, and wget (-! 44) to disable all of them. This is in case one of
+those is broken or you want to test Perl downloader, mostly.
+
+Also cleaned up debugger output and made debugger portable to other scripts.
+
+-----------------------------------
+-- Harald Hope - Sun, 26 Nov 2017 15:14:34 -0800
+
+=====================================================================================
Version: 2.3.45
Patch Version: 00
Script Date: 2017-11-21