Commit graph

1254 commits

Author SHA1 Message Date
inxi-svn b7cc482ea4 small bug fix, networking cards didn't print out numbered card id 2014-03-17 04:24:42 +00:00
inxi-svn c9b53cdbcd bsd bash doesn't like the *"value"* bash test, so had to remove it. 2014-03-17 04:13:32 +00:00
inxi-svn 8d6b87f9d8 some bug fixes, bsd fixes; set gpu default for out of x temps, guessing there at :0.0 screen; changed to if type -p program &>/dev/null;then
instead  of $(type -p program) subshell.

I'll see if getting rid of as many subshells as possible has much impact on performance, certainly makes the code ugly but maybe it's worth it.

No version change.
2014-03-17 04:07:31 +00:00
inxi-svn 21a520950e New version. Big set of changes: changed all ver: and version: to v:; changed all bash
${var} to $var where appropriate to avoid extra overhead of ${..}; removed 'basename'
and replaced with ${path##*/} which avoids unnessary subshells.

Fixed dynamic line wraps on -I and -S lines, now those in most cases will work well 
down to 80 cols. 

Fixed bug in optical drives, at some point in the last few years, the kernel in /sys
changed the path to the optical drive data, added in /ata8/ (example) so both methods
are now handled. This should fix a lot of failures to show optical drive brand name etc.

Added weechat detection, trying also supybot/limnoria detection in irc client version.
There was weechat-curses, but I guess they finally dropped the -curses. Limnoria is
a fork of supybot but still uses the supybot program name, but added in limnoria too
if they get around to changing that.

More dynamic sizing tweaks, more optimization of code. Discovered that dipping into gawk
is almost 250x more expensive in terms of execution time than using bash variable. 
Will change to use bash directly as time goes along where it's safe and accurate.

Added handling to support /run paths using directories, like /run/gdm/gdm.pid for dm data.
2014-03-16 22:55:01 +00:00
inxi-svn 40053aa5b7 no version change, just added wrapper around tput cols so only use it if in terminal 2014-03-15 17:56:51 +00:00
inxi-svn c8b6706bc5 changed to use bash variable stuff instead of subshell, no functional change,
but the bash variable manipulation seems to be a bit, quite a bit in some cases, more 
efficient than subshells, so I'll remove as many subshells as makes sense over time.

Only dumping the wc -c subshells from the help print loops increased speed of that by
about 300% or so, literally.
2014-03-15 04:28:02 +00:00
inxi-svn 94359c91c1 bug fix, forgot to add in a flag every loop 2014-03-15 04:00:30 +00:00
inxi-svn 0c7d9ebc10 New version. Updated dynamic sizing, fixed some glitches in cpu flags, fixed bugs in
cpu main. Cleaned up a few more variable and width issues. Used a few more ${#var} for
counting.
2014-03-15 03:41:16 +00:00
inxi-svn e8e3f9be84 New Version, new man. This continues the dyanamic line sizing, I'm doing these one at a
time to make it easier to test stuff one by one.

Full refactoring/reordering of top global variables, moved user/maintainer set variables
to top, and clearly identify all globals.

Changed LINE_MAX to COL_MAX but all user configuration files will stay working since
inxi now will check for that and translate them to the new variable names.

New lines fixed, -C cpu and -f cpu plus full flags. Flags output is now fully dynamic to
display screen in terminal/console. Moved cpu short flags to -x because it's not that
important in general and just clutters things  up in my opinion.

Print flags/bogomips on separate line if line greater than display width.

The rest of the lines will get a similar treatment, but it takes a bit of trial and error
for each line to get it working right.

Note that IRC line lengths are NOT dyanamic unless I can find a way to determine the column
width of irc clients, but that won't be accurate since fonts vary in widths for each character.

CPU was the worst offender in my opinion in terms of regular output wrapping to new line messily,
next will be the things with ports/chip id/card id.

Tightened up a bit more the dyanamic help / version output handler.
2014-03-14 20:21:10 +00:00
inxi-svn 77fe7b1855 more adjustments 2014-03-14 04:58:19 +00:00
inxi-svn 58eda26bff a few more fine tunings of help 2014-03-14 04:55:41 +00:00
inxi-svn c5ecc2b1d1 a few more tweaks on help 2014-03-14 04:51:43 +00:00
inxi-svn 1de9cdb49c a few more help menu tweaks to make things line up right. 2014-03-14 04:49:12 +00:00
inxi-svn e654fb42be fixed a small thing with -w/-W in help 2014-03-14 04:26:43 +00:00
inxi-svn 73272bb410 removed null default from init line 2014-03-14 03:13:42 +00:00
inxi-svn 2734a2746b some small indentation fixes 2014-03-14 02:51:56 +00:00
inxi-svn 6dfa2422ce bug fix, didn't strip out ^ properly 2014-03-14 02:39:27 +00:00
inxi-svn a2f1b02e53 New version, new man page. Finally, after all these years, dynamically resized to terminal
window column width help/version outputs. There is a significant slowdown to achieve this,
but I've optimized it as much as I could so it should be acceptable for most users now.
2014-03-14 02:28:40 +00:00
inxi-svn 8235cdd10f bug fix, parse error 2014-03-13 00:48:44 +00:00
inxi-svn 5ef2329092 small bug fix for arch linux, added fallback test for systemd version 2014-03-13 00:45:53 +00:00
inxi-svn e7ec0a9fea small change in upstart detection, picked a more robust method 2014-03-13 00:34:39 +00:00
inxi-svn aca844c7d8 New feature, not new line option though. Now shows init type with -x (also shows rc
type if openrc). -xx shows init / rc version number. Change runlevel to target if
systemd and if non numeric runlevel given. Should support systemd/upstart/epoch/runit
sysvinit. Supports openrc as extra data if it's present. Rearranged -I line a bit but
really just exchanged Runlevel: for Init: v: Runlevel: default:

This is the first step, some of the init system ID methods are weak and non robust
and this may need to be revised, but it should for now identify systemd/upstart quite
accurately, and in most cases sysvinit. Note that to get sysvinit version number requires
tool: strings which in debian/ubuntu is in package binutils. I don't know the package names
for arch/fedora/etc for the recommends check tool in inxi yet.

I believe this will be good enough for a first draft version, but over time we'll get it
more fine tuned, but as it is now, it should cover at least 99% of users, which isn't bad.
2014-03-13 00:18:26 +00:00
inxi-svn 70ddbfe37a bug fix in output 2014-03-03 23:38:39 +00:00
inxi-svn 4f954bdb70 forgot help menu update 2014-03-03 23:35:01 +00:00
inxi-svn af7336ceba New version; updated man page. Changed slightly the output for x server, in preparation
for adding alternate display servers, like Wayland or Mir. Rather than release all the
stuff at once I'm going to do it bit by bit. Currently I have not found a wayland iso
test cd that boots in virtual box so I will have to wait to really add support there.
2014-03-03 23:31:47 +00:00
inxi-svn 73101b5a9d added some debugger output 2014-01-14 23:07:22 +00:00
inxi-svn 82ca2008f7 changed UNITY to Unity, no version change, but new tarball. 2014-01-14 18:48:16 +00:00
inxi-svn 68ede84adc added in an xfce version fix for arch, user reports xfdesktop did not return a value, so we'll add a second test, xfce4-panel
--version and see if that works
2014-01-13 23:55:02 +00:00
inxi-svn 062f941199 small change, added N/A if no default runlevel is detected, that should help with debugging. 2014-01-13 23:44:05 +00:00
inxi-svn 5d35d02e07 bug fix, forgot to set upstart path 2014-01-13 23:17:26 +00:00
inxi-svn 3e55bb677c New version; new tarball; new man page. Added Unity desktop support; added -xx feature
to show default runlevel, using systemd/upstart/sysvinit type default tests.

Fixed gtk library version detections, now will support dpkg/pacman version tests, which
should give more data to more people than previously, where the old tests usually would
return null unless gtk dev packages were installed on the system.
2014-01-13 23:01:03 +00:00
inxi-svn 31ef4f7e05 added some debugging data, real version update will be later today. 2014-01-13 20:05:31 +00:00
inxi-svn ec7691fbc9 New version, new tarball. Fixed new gnome change, they, of course, removed gnome-about
and so version numbers failed. Now first trying gnome-session to get version number.

Also, there's a bug in at least gtk detection in opensuse, not sure what it is, they could
be using a different syntax for the test:
pkg-config --modversion gtk+-3.0

returns no such package on gnome 3.10 installs, but I have no idea what package name to
test for there in this case.

So leaving gtk version bugs unhandled due to no user information or feedback, if you want
it fixed or if it works for your distro, let me know and also if it does not work, tell
me the correct commmand, with its output, to get gtk version.

That's for inxi -Sx output that is.
2013-12-02 22:09:25 +00:00
inxi-svn 8d22723bfb trying a gnome version update 2013-12-02 21:44:30 +00:00
inxi-svn a32dcb803a Adding nvidia-smi debug data collectors for possible gpu / nvidia extra features.
No other changes, no change in version yet. This is only for inxi -U updates, developers ignore this for now.
2013-11-05 20:29:13 +00:00
inxi-svn 99f60b3485 changed date format, from month day year to 2013-10-15 type, no other changes. 2013-10-15 20:20:03 +00:00
inxi-svn 5692b62d14 small bug fix 2013-10-06 19:12:58 +00:00
inxi-svn 2bc7b45c45 small bug fix for urpmq parsing 2013-10-06 18:54:21 +00:00
inxi-svn 9dff36e58e New version, new tarball. Only for uprmq distros, small update to add support for another
repo type output, the initial listing was not complete of possible syntaxes. Now handles: 

Nonfree Updates (Local19) /mnt/data/mirrors/mageia/distrib/cauldron/x86_64/media/nonfree/updates

as well, apparently that is a possible output format in certain cases with urpmq.

Non urpmq distros ignore this update, there are no other actual changes.
2013-10-06 18:10:04 +00:00
inxi-svn 088a7812a1 New version, tarball. Added urpmq for -r.
Other distros than Mandriva, Mageia, no other changes so no need to update unless you want to.

This adds support for Mandriva, Mageia. urpmq parsing is similar but not identical to pisi.
2013-10-05 01:40:00 +00:00
inxi-svn 7b67885e42 This does not have a new version number (there is a new date), and is only for solusos,
so all other distro maintainer can ignore this update. New tarball. Adds support for
solusos-release distro file in /etc/.
2013-09-10 17:51:12 +00:00
inxi-svn 9e195afcc3 New version, new tarball. Fixed a bug / issue with failed usb nic detection, amazingly, the regex
in inxi failed to check for Ethernet.*Adapter, heh. Most usb nics are wifi, so I guess ethernet just
escaped me.
2013-08-20 19:28:02 +00:00
inxi-svn 316b13a070 small fix, replaced \s with [[:space:]] to be consistent 2013-08-12 23:30:26 +00:00
inxi-svn 6bf5746de2 New version, new tarball. Fixed a bug in Xorg where it shows drivers as unloaded when they
are actually loaded. Since we can't fix xorg, inxi will try to work around this bug by validating
one step further in the Xorg.0.log data, to confirm that drivers noted as loaded/unloaded/failed are 
actually running the display(s) of the system.

There is a possible case of error that might happen due to this change in the case of a system with
a complex xorg that uses two drivers/modules to run two different displays, ie, nvidia on one, and amd
on the other, for example, or intel/nvidia, etc. However, if that bug appears, we'll get that data set
of debugging output and fix it at that point. 

This fix repairs an existing xorg bug that is unlikely to get fixed any time soon (the call to load the
detected drivers, eg, vesa, intel, is repeated, causing a failure of driver already loaded on the second
occurance.
2013-08-12 23:25:45 +00:00
inxi-svn 90f4c78dd4 Tiny change, no new version, removed a stray 's' line 4306 that may have made certain distro
ids get slightly corrupted, but this is so trivial just fixing it, new tarball.
2013-07-13 18:49:23 +00:00
inxi-svn 191e560418 New version, new tarball. Two new desktop/window managers added: spectrwm (similar to scrotwm) and
herbstluftwm. Both tested and working, thanks anticap from Antix for doing the testing/issue report on this.
2013-07-01 22:15:51 +00:00
inxi-svn 8afddd9a29 New version, new tarball. The recent bug fixes reminded me to check for ARM working, that had some bugs too,
so I've updated that. -f for ARM now shows features instead of flags, and the -C regular cpu output does not
show cache/flags for arm cpus becuase they don't have those features.

Added some flags passed to various cpu functions and better detections of ARM cpu to handle dual core and other
issues that were not handled before as well, or at all.
2013-06-20 02:18:56 +00:00
inxi-svn 854f348969 New version, new tarball. Another stab at finally fixing the cpu / core count failures on fringe
cases. This required fixing some core logic assumptions that are not currently correct, particularly
on two cases, some xeon cpus fail to show core id for each core, showing 0 for all of them, second,
vm cpus do not show physical ids at all for at least intel, nor do they show core id. 

While we can't get HT totally reliable, particularly for vm xeon, since inxi has no way to know in
that case if a core is attached to a physical core or a virtual one, all of them being virtual in that
case, but still inxi is now reporting the correct number of cores, or threads in vm xeons, and is not
showing multicore cpus as single core, which was the main issue.

This required redoing the counter logic for the cpu/core/physical arrays, now they are set independently,
and can handle any of the others not being set, without creating an error or failure condition.

Also added in last check for a certain intel case where core id is 0 but > 1 physical cores exist, that
now also shows the correct cpu / core count.

While this is tested on many data sets of proc cpuinfo, it's still possible there is a fringe case I have
not seen that will trigger yet another unexpected behavior.
2013-06-20 00:29:19 +00:00
inxi-svn a1822fd07f new version, new tarball. Added support for openSUSE repo syntax/location, as long as it's
zypp or yum it will work. If it's both then it will show only one I believe, if that's a possible scenario, no idea.

Added one more fix for those pesky intel vm cpu core errors, now if /proc/cpuinfo shows no siblings at all,
and no core_id, but does have physical id, it will use the count for physical id as a default for core count.

Not perfect, but better than calling a dual core cpu a single core.

There's still a lot of mysteries with vm versions of kvm cpus, for example, if you see a dual core xeon, is
that actually one core with ht, or two cores? There is no way to find that information out that I can see that is
reliable.
2013-06-16 20:59:53 +00:00
inxi-svn 6888c8320d added a comment to clarify 2013-06-15 00:28:38 +00:00