Commit graph

1470 commits

Author SHA1 Message Date
inxi-svn 5d69fe3632 cleanup of help 2014-04-27 21:47:57 +00:00
inxi-svn d1afab4736 Quick update to -D, now inxi uses the total partition swap space to calculate the
disk used percentage as well. Since swap space is not available as disk space, it 
makes sense to me to count it as used. -P/-p show the percent of swap used as well.
2014-04-27 21:42:30 +00:00
inxi-svn 33636dc58b small cleanup for bsd section 2014-04-27 21:06:50 +00:00
inxi-svn 052a5d16ed New version, new tarball. A bug fix for btrfs, which does not internally use /dev/sdx[number]
to identify a partition, but rather the basic /dev/sdc for example.

This made -D show wrong disk used percentage.

Also, I added --total for df that have that supported, there is however an oddity which you
can see here:

df  --total  -P -T --exclude-type=aufs --exclude-type=devfs --exclude-type=devtmpfs  \
--exclude-type=fdescfs --exclude-type=iso9660 --exclude-type=linprocfs --exclude-type=procfs \
--exclude-type=squashfs --exclude-type=sysfs --exclude-type=tmpfs --exclude-type=unionfs | \
awk 'BEGIN {total=0} !/total/ {total = total + $4 }END {print total}'
result:
614562236

df  --total  -P -T --exclude-type=aufs --exclude-type=devfs --exclude-type=devtmpfs  \
--exclude-type=fdescfs --exclude-type=iso9660 --exclude-type=linprocfs --exclude-type=procfs \
--exclude-type=squashfs --exclude-type=sysfs --exclude-type=tmpfs --exclude-type=unionfs | \
awk 'BEGIN {total=0} /^total/ {total = total + $4 }END {print total}'

result:
614562228

df  -P -T --exclude-type=aufs --exclude-type=devfs --exclude-type=devtmpfs  \
--exclude-type=fdescfs --exclude-type=iso9660 --exclude-type=linprocfs --exclude-type=procfs \
--exclude-type=squashfs --exclude-type=sysfs --exclude-type=tmpfs --exclude-type=unionfs | \
awk 'BEGIN {total=0} {total = total + $4 }END {print total}'
    
result:
614562236
       
In my tests, using --total gives a greater disk user percentage than adding the results
up manually, as inxi did before, and still does for systems without --total for df.
          
df  --total  -P -T --exclude-type=aufs --exclude-type=devfs --exclude-type=devtmpfs  \
--exclude-type=fdescfs --exclude-type=iso9660 --exclude-type=linprocfs \
 --exclude-type=procfs --exclude-type=squashfs --exclude-type=sysfs --exclude-type=tmpfs \
--exclude-type=unionfs
               
Filesystem                     Type 1024-blocks      Used Available Capacity Mounted on
/dev/disk/by-label/root-data   ext3    12479556  12015624    335816      98% /
/dev/sdc9                      ext3    20410156  18013360   1979432      91% /home
/dev/sdc7                      ext3     4904448   3785460   1016672      79% /media/sdb2
/dev/sdc5                      ext3    30382896  27467220   2295720      93% /var/www/m
/dev/sdc8                      ext3    61294356  41849300  18196972      70% /home/me/1
/dev/sdb1                      ext3   307532728 285159432  20810456      94% /home/me/2
/dev/sdd1                      ext3    26789720  18153076   7542620      71% /home/me/3
/dev/sdd2                      ext3   213310776 206932912   2040960     100% /home/me/4
/dev/sda7                      ext3    10138204   1185772   8434348      13% /home/me/5
total                          -      687242840 614562156  62652996      91% -
               
Strange, no? the data is in blocks, and it should of course in theory add up to exactly the
same thing. However, because --total lets df do the math, I'm going to use that for now,
unless someone can show it's not good.
               
inxi still falls back for bsds and older df to the standard method.
2014-04-27 20:01:35 +00:00
inxi-svn 788ca63f98 tiny cleanup, dumped a sed and use bash parameter expansion instead. 2014-04-25 03:04:36 +00:00
inxi-svn c45b522a8f added a data directory to svn 2014-04-24 20:22:27 +00:00
inxi-svn cafa625166 New version, tarball. This fixes one small oversight, placing USB in front of ID-[x]
of disk drive lists. Was showing USB ID-1: /dev/sde now shows: ID-1: USB /dev/sde
that is more intuitive and keeps the columns in alignment more or less, easier
to read.

Second, fixes a bug with some file systems / usb drives
where they do not use usb- in the /dev/disk/by-id line but only wwn-
https://access.redhat.com/site/documentation/en
-US/Red_Hat_Enterprise_Linux/5/html/Online_Storage_Reconfiguration_Guide/persistent_naming.html
explains it somewhat.

the fix is adding a second if null test of the device /dev/sdx in by-path, that seems 
to fix the issue. by-path does have the usb- item, though it does not have the name
so it's not as reliable in absolute terms, but it's fine as a second step fallback 
option.
2014-04-24 18:56:23 +00:00
inxi-svn 9ceb7b8cb1 dmidecode output cleanup, for dev memory stuff. 2014-04-15 00:44:02 +00:00
inxi-svn 3c75f53521 text edit, nothing. 2014-04-14 21:01:34 +00:00
inxi-svn a4ea1d50aa removed _placeholder function name part, no reason for it. 2014-04-14 20:55:27 +00:00
inxi-svn 1e2a0d28c5 small adjustment for force dmidecode, error message fixed. 2014-04-14 20:45:50 +00:00
inxi-svn 6a2a82c1bf While this release has some new features, they are all intended for development use
for the next major feature, -m / memory, so there is no particular reason to package
this release. There is a new development option, -! 33, which lets me override /sys
data use for -M, which is useful to debug dmidecode output for -m and other features.

No new version, new man. There may be a few more of these releases, but functionally
there is no particular reason to make a new package if you are a maintainer, so there
is no new version number. This release is a preparation for some branches/one/inxi
tests that will be run in the future.

The man/help document -! 33 just to have it there, but it should make no difference
to anyone but me at this stage.
2014-04-14 20:35:38 +00:00
inxi-svn 7e0535d4c2 A few fixes to 2.1.20, bmips broke in some cases, that's fixed now. Also changed the
way to handle bad ARM data, when bogomips are too low, < 50, we try to get the data
from /sys, but now this runs on all the cores, so it may work as well on the multicore
arm if the /proc/cpuinfo has bogomip that is too low and no cpu frequency.
2014-04-09 07:11:43 +00:00
inxi-svn d473167200 quick check of cpu 2014-04-09 06:30:46 +00:00
inxi-svn fdd359621b forgot to remove a debugger, grr 2014-04-09 01:00:11 +00:00
inxi-svn 904290c8a0 bug fix, forgot a $ sign 2014-04-09 00:26:12 +00:00
inxi-svn a2ec193fd6 New version, tarball, ARM cpu /proc/cpuinfo has broken the bogomips output, since this
is an upstream bug, I'm adding in a quick hack that will work maybe for single core
ARM cpus, but NOT for multicores that have the same issue.
2014-04-09 00:17:54 +00:00
inxi-svn 48700dbe25 tiny bug fix, googlecode was spelled goooglecode, heh. 2014-04-08 22:55:27 +00:00
inxi-svn 0647816d98 found another small bug/issue, which will impact probably nobody, inxi was using an obsolete kde command
kde-config rather than the current: kde4-config, so now it tests if the commands exist, tries kde4, then kde5 then kde

this is probably not used by any distro so it does not matter, but it was wrong so it's fixed now.
2014-04-06 23:19:54 +00:00
inxi-svn bb90012cd7 New version, tarball, correction of loop counts for -p/-P ID-<number>, this
requires
a third counter to get all the stuff right. Sorry about the extra release, that's 
life.
2014-04-06 21:35:15 +00:00
inxi-svn 65880a7f33 small bug fix, with -P the counter was printing the i instead of the counter for ID 2014-04-05 05:32:18 +00:00
inxi-svn 6efc583f6b raid, shortened the output lines a little 2014-04-04 18:45:08 +00:00
inxi-svn ebca1c219d New version/tarball. This completes, I think, the line wrap update. -o is now handled,
unmounted drives.

IMPORTANT: some distros use inxi for detecting partitions, the syntax on the following 
have changed slightly:

HDD: per drive changes from: 1: id: to ID-1:
Partitions: per partition changes from ID: to ID-1:
Unmounted partitions: per unmounted changes from ID: to ID-1

You see the pattern, they are all the same now, and they are all numbered. I think this
is easier to read when scanning long lines of drives/partitions, or even short ones.

Also fixed a long standing oddity, not a bug, but for some weird reason, -p did not
include the location, like /dev/sda1, unless -l or -u were used. That makes no sense
so I have moved the dev/remote location output to standard -p/-P

Except for bug fixes, this completes the overally line wrap update, all lines wrap,
you can set widths with -y now, and the old issue of not fitting nicely into 80 column
wide widths is solved. Note that in some areas, p/P for example, at times if the mount
point or remote location is very long the line may still wrap, but making this perfect
is too convoluted so I'm calling it good enough now, all lines are handled reasonably well,
certainly radically better than before 2.1.0.
2014-04-04 18:16:45 +00:00
inxi-svn f543d2cb72 small fix, noted that long options do not work with -y 2014-04-03 17:52:24 +00:00
inxi-svn 7ea015abef New version, new man page, new tarball. Added -y [integer >= 80] option. This allows for absolute override
of width settings. This overrides any dynamically detected widths, as well as the globals:
COLS_MAX_CONSOLE='115'
COLS_MAX_IRC='105'
Now that inxi widths are largely dynamic in terminal, with a few lingering exceptions, it made sense
to also allow for overrides of this. This is useful in cases where for example you want to output
inxi to text file or for other purposes, or if you just want to test the widths, as in my case.

-y cannot be used with --recommends, but otherwise it works fine, with --help/-c 94-99 you have to 
put -y first in the list of options.

Example: inxi -v7 -y150 > inxi.txt will ignore the terminal settings and output the lines at basically
max length.
2014-04-03 17:46:31 +00:00
inxi-svn 713535277b fixed a small bug in 2.1.16 that broke irc line counter 2014-04-03 05:11:36 +00:00
inxi-svn 26e1d560c3 New version, tarball. This fix only impacts bsd sed, but it fixes the line length failure
issue because bsd sed doesn't work with \x1b, but it does when you do:
ESC=$(echo | tr '\n' '\033' )
I found this trick on:
http://unix.stackexchange.com/questions/42321/how-can-i-instruct-bsd-sed-to-interpret-escape-sequences-like-n-and-t

No other changes. Non bsd users, you can ignore this.
2014-04-03 04:30:30 +00:00
inxi-svn f75d42d43d tiny spacing glitch on -d fixed 2014-04-02 01:06:17 +00:00
inxi-svn b49c7fa48b small bug fix with null partitions array print out 2014-04-01 22:09:29 +00:00
inxi-svn a1d4e0be88 small bug fix, forgot to check for null value in i printout 2014-04-01 21:26:15 +00:00
inxi-svn befef56f93 new version/tarball. This corrects some subtle issues with line wraps:
Audio -A - now wrap is fully dynamic down to 80 characters, and also the expansion of ALSA
to Advanced Linux Sound System only happens if that fits in the display width.

-N/-n/-i - Most networking/ip address stuff wraps now.

-d - optical drive data wraps better now too.

This more or less completes the line wrap redo.
2014-04-01 21:02:47 +00:00
inxi-svn 0477d886c3 added slitaz-release to distros derived, that's a slackware one 2014-04-01 01:09:46 +00:00
inxi-svn 11f1097d01 new version/tarball. Tiny fix in debugger, it turns out that in some systems, the command:
strings --version used in the debugger results in a hang, which you can duplicate with:
strings 
alone, without any argument or info, that will hang too, so I assume if the system doesn't
have the --version parameter, strings ignores that, and basically just does what it would do
with no option, hang.

Thanks for user ypharis persistence in tracking down this issue. So far only appeared on slackware
based distros, but since the debugger should 'just work', removing the version test.
2014-04-01 00:52:57 +00:00
inxi-svn 1ed6348436 tiny fix, added back in missing dash - to inxi debugger output file 2014-03-31 18:51:55 +00:00
inxi-svn 75cb0eca7c New version, only relevant to Porteus distro, a slackware derived distro, should now id it
correctly. No other changes.
2014-03-30 18:55:38 +00:00
inxi-svn ee653828ee added debugger collection item, not for any current feature, but maybe in the future. 2014-03-28 20:17:31 +00:00
inxi-svn 7d7cfe1675 made a mistake, used bash 4.0 method, fails on 3.2. 2014-03-28 07:00:17 +00:00
inxi-svn 6394a16120 new version, fixed zfs raid failure to report raid devices on some systems. Added wrapping
for -D disk option. Note that -d is not correctly wrapping because the lines are too long with 
extra data, but it's ok for now.
2014-03-27 22:35:17 +00:00
inxi-svn 97c23714e8 some tiny output adjustments, no new tarball 2014-03-27 02:19:28 +00:00
inxi-svn 1e5d3a4e41 bsd zfs fix, ignore if linux 2014-03-26 23:34:28 +00:00
inxi-svn c2581789bd for bsd without root privilege, cpu line starter was not showing, so fixed that. Ignore this if Linux. 2014-03-26 23:21:58 +00:00
inxi-svn d7d5dc8f3e Ignore change 2.1.12, the speed data was too inconsistent, using >>> since it's cleaner
and seems to be faster on some cpus, slower on others.

Rolling it back to version 2.1.11
2014-03-26 22:29:44 +00:00
inxi-svn 53e455c5eb new version: this is only an optimization release, testing some slightly more efficient
methods:
something <<<  $variable is signficantly slower than: echo $variable | something
so I replaced almost all instances of <<< with echo ...|

I've seen speed differences of up to 10% but it's not consistent, so this is just 
something to boost performance slightly on older systems I'd guess.
2014-03-26 21:57:03 +00:00
inxi-svn e1a6e45740 small fix in data collector 2014-03-26 19:57:39 +00:00
inxi-svn f61487f0b7 New version: fixed an old bug, with -c 0, no colors, RED and NORMAL
color codes were
not set to null, which results in some cases with red output, along with 
turning
terminal/console font color red.
2014-03-26 19:46:58 +00:00
inxi-svn 6556ae2375 New version; added supybot/limnoria/gribble support. This only works
when the supybot
'SHELL' command is used, 'CALL' gives the user irc client data, and 
supybot etc are
not detectable.

Fine tuned some error message lengths so they fit into 80 columns or so.
2014-03-25 20:56:58 +00:00
inxi-svn b4319c40f5 adding debugger data directory 2014-03-25 20:07:13 +00:00
inxi-svn c1c0752e97 New version, fixed cpu core speed wrapping, improved -p and -P wrapping, though some
lines
will still be too long, but not as many.
2014-03-25 01:43:30 +00:00
inxi-svn 0115b374a8 New version. Added dynamic wrapping to -G, and also am now wrapping -C per cpu cores speeds,
for systems with a lot of them, that will clean up the output.

Added dynamic wrapping to --recommends and -c 94-99.

These are the main things, there's a few smaller issues with -xx output on -N/-n/-i but
those will noly really show with full output and it takes a while to get this stuff stable
so maybe some other time, but it's ok for now.
2014-03-25 00:01:20 +00:00
inxi-svn 5f516498bd added more debugging data collection for lspci output types, might be able to get better support for failed machine type and other data
types.
2014-03-21 22:33:51 +00:00
inxi-svn 683902e148 more debugger fine tuning 2014-03-20 20:13:10 +00:00
inxi-svn a08f5986e2 added lspci -nn to debug collector 2014-03-20 19:54:20 +00:00
inxi-svn 776719b25b debugger output file name change to make it a bit cleaner 2014-03-20 19:48:03 +00:00
inxi-svn a830e996ac new version, attempt 2 at detecting all possible syntaxes for cards. Now using
the bus id itself to determine if the 
VGA compatible controller
3D controller
Display Controller
refer to separate chips or the same one.

Bus id gives the data needed, because the video chip, the real card, that is,
is on for example 00:05.0 the trailing .0 is the key, that's the actual card.

The audio or display controller for the same card would be for example: 00:05.1

I don't know if this is fully reliable, but it will have to do, either some cards
as is get missed, or some cards get double id'ed, unless I use a hack like this.

There's nothing else I can find but the bus id to determine that it's the same
physical device or not.
2014-03-19 04:31:40 +00:00
inxi-svn dbcf4656c3 forgot to remove a debugger output 2014-03-19 03:59:16 +00:00
inxi-svn 18dfe1ec25 removed display controller, need more data before using that 2014-03-19 03:18:23 +00:00
inxi-svn 1325cb6574 new version, bug fix, adding 3D controller to output causes doubled card id in some cases. 2014-03-19 02:19:31 +00:00
inxi-svn 58d95fff6f New version, serious bug fix, do NOT use 2.1.4, it will fail to start. Bad copy/paste. 2014-03-18 08:32:31 +00:00
inxi-svn 76d9eb8397 Found another non handled gfx lspci, 3D controller, added that as well to gfx card 2014-03-18 03:05:18 +00:00
inxi-svn 1d34526818 New version. Some BSD fixes, and a more important fix, added 'display controller'
to graphics card detection, that's a new one on me. Dual card systems might use this.

00:02.0 Display controller: Intel Corporation 82865G Integrated Graphics Controller (rev 02)

01:00.0 VGA compatible controller: NVIDIA Corporation NV44A [GeForce 6200] (rev a1)

Some more switches to bash native methods as well.
2014-03-18 02:26:26 +00:00
inxi-svn 45ab090d91 fixed a few more small glitches 2014-03-17 04:28:45 +00:00
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
inxi-svn 455394f2a8 no new version number, but a bug fix anyway, added in another vm disk drive fix.
Don't want to inflate inxi versions needlessly.
2013-06-15 00:16:32 +00:00
inxi-svn 7cc4628ab4 New version, new tarball. Some subtle bug fixes, a kvm virtual machine uses disk id in
/proc/partitions of 253, which made the disk totals fail to show up at all. Added that in.

Moved sourcing of configuration files to right after initialize_data so that some variables
can be forced to different values before the next set of system/app checks.

This is to allow specifically turning off, for some headless servers where $DISPLAY is not
null due to a bash configuration bug, these:
B_SHOW_X_DATA='false'
B_RUNNING_IN_X='false'

Setting those two to false in inxi.conf will turn off all the X checks etc even if the $DISPLAY
is set to non null.

Added in support for ksplice kernel version, requires installed uptrack-uname, if that is
present and if uptrack-name kernel version is different from uname then it will add (ksplice)
to kernel version string, and use ksplice kernel version. Also created a single function
get_kernel_version for use by short form/long form inxi output.

For intel xeon cpus, trying a work around for a bug in /proc/cpuinfo which fails to show core_id
or physical_id for cpus, using siblings / 2 for xeons with no actual core counts.

Fixed a bug that made fixes for multimounted partitions fail for disk used. Added in support
for also excluding single partitions mounted to different places.
2013-06-14 23:08:38 +00:00
inxi-svn 1bc928d497 fixed bad display in opensuse glx recommends, only fix for opensuse users unless you already packaged the last version, then you
should update because the output will be broken.
2013-05-30 21:38:59 +00:00
inxi-svn d5e792aca8 small change only for opensuse 12.3 in recommends, ignore this if you are not a package maintainer for opensuse 12.3. 2013-05-30 18:24:54 +00:00
inxi-svn c6905ed8e8 New tarball, version, man page. Improved remote weather, now it uses -W, and deprecated -! location=..
That was too hard to type and too hard to remember. Also do more dyanamic reordering of weather
output, depending on how much data is present, and how many x options are used.

Added error handling for generic deprecated options, and for options that do not have the correct
syntax for OPTARG, like with -W.

This should about do it for the weather option for now unless I missed something somewhere.
2013-05-26 03:19:38 +00:00
inxi-svn c27514aa58 tiny change, no version number change, new tarball: changed the second 'Weather:' in the first line to: Conditions: The redundancy
looked a bit odd, but for maintainers, it's not an issue, there will be an actual release later in a week or so with resorted weather 
data probably, we'll see.
2013-05-21 02:41:40 +00:00
inxi-svn 4c8d81372a small code adjustment 2013-05-20 03:09:45 +00:00
inxi-svn fd376c3009 new version, tarball. Bug fix, overly loose regex removed na from country/state/city strings,
like nashville.
2013-05-20 03:08:05 +00:00
inxi-svn 62b72f3472 small help bug fix, added in linebreak to help menu 2013-05-18 18:38:11 +00:00
inxi-svn 598fb932b2 New version, new tarball. Fixed some lintian issues in man page, changed man/help for
-! location= option, to indicate that users must replace space with + themselves.

Because of how bash handles these options, inxi cannot add in + signs itself automatically.

This should be closer to cleanup of this new feature.
2013-05-18 17:52:16 +00:00
inxi-svn 63ae1f9273 last typos and fixes, this should be it 2013-05-18 05:48:26 +00:00
inxi-svn 68ba60a3e7 changed help menu to reflect that you can only use asci letters in town/state field 2013-05-18 05:46:29 +00:00
inxi-svn 01fba3c64d new version, tarball. Fixed issue with spaces in names for cities/states/countries, added
man and help instructions to remove spaces and examples.
2013-05-18 05:37:29 +00:00
inxi-svn 5be282cea6 bug fix 2013-05-18 05:32:42 +00:00
inxi-svn a8c397a3cb fixed the glitch with two plus word city/country names, should work now 2013-05-18 05:28:30 +00:00
inxi-svn 7b312d6a42 new tarball, version, bug fixes on weather, also optimized speed for slow isps, and added
a global that can be set in user / system configs to make a longer wget time out. Default
is 8 seconds.

This should take care of the failure from slow load issue reported.
2013-05-18 05:14:27 +00:00
inxi-svn 5204b510aa patch version jump 2013-05-18 04:50:46 +00:00
inxi-svn 8794cf2f32 patch 2, trying to speed up for slow connection the weather tests 2013-05-18 04:49:36 +00:00
inxi-svn 421ecfd430 trying a patch fix for slow remote connections 2013-05-18 04:37:24 +00:00
inxi-svn eaed735103 bug fix, forgot to remove debugging flag 2013-05-18 04:13:09 +00:00
inxi-svn 76dc2733b8 new version, new tarball, bug fix for weather 2013-05-18 04:11:18 +00:00
inxi-svn dc2fd3aa53 new tarball, version. Bug fix on -! location=, forgot to have it pack its own location
array, that's now correct.
2013-05-18 03:27:05 +00:00
inxi-svn e5511af34b forgot one upper case 2013-05-18 02:27:00 +00:00
inxi-svn 601997fc59 uppercased the weather options 2013-05-18 02:25:50 +00:00
inxi-svn 65b18f4e0e forgot -z, note that it blocks location too 2013-05-18 02:13:13 +00:00
inxi-svn 5465241cfe New version, new tarball, new man page. Unless disabled by distribution maintainers, offers
weather -w option. With -x, -xx-, -xxx, shows more information. Basic line is just weather
and system time there. -x adds time zone, which is useful for servers, particurly web servers.
-x also adds wind speed. -xx adds humidity and barometric pressure. -xxx adds a possible new line, 
if data is available, heat index, wind chill, and dew point. 
-xxx also adds a line for location (blocked by irc/-z) / weather observation time.

-z filter applies as usual to location data, removes it in irc by default. -Z overrides override.

The api this uses is probably going to be dropped at some point, so this is just going to work 
while it works, then it will need to be updated at some point, so don't get very attached to it.

Also adds option to, with -w: -! location=<location string>
This lets users send an alternate location using either <city,state> or <postal code>
or <latitude,longitude> (commas for city,state and latitude,longitude are not optional, and the order
must be as listed.

If There is a developer flag if distro maintainers do not want this enabled, simply set:
B_ALLOW_WEATHER='false'
before packaging and the weather feature will be disabled.
2013-05-18 02:04:29 +00:00
inxi-svn 68677c9278 New version, new tarball. Made separators surround the partition id, that avoids any possible
errors with detections, also added in missing detection for separator.
2013-05-03 22:45:16 +00:00
inxi-svn 4af4fce377 New version, tarball. Fixed a small issue that would create a wrong reporting of disk
useage if bind mounts are used, ie, multiple binds to a single mount. Now inxi will
check a list of the previously used partitions before adding the size of the used space
to the total used, if the partition has already been used it will skip it. This was/is
a quick and dirty fix, but it's totally fine I believe and should resolve two separate 
issues:

1. use of bind mount method, where multiple partition names are bound to the same partition
2. accidental dual mounting to the same partition.

partitions section will still show the same data, ie, if bind is used, it will show all
the bind mounts even when they are attached/bound to a partition that is already listed.
This seems useful information, though maybe we can get the key word 'bind' in there somehow,
but for now I won't worry about that issue, that's just a nice to have, not a bug.
2013-05-03 20:57:40 +00:00
inxi-svn 43a2cbc589 New version, tarball. As always with fixes, one thing creates a bug in another. Fixed
linux driver version handling, now only trimming off number from bsd drivers.

Some linux drivers, like tg3 for broadcom ethernet, have numbers ending them. So this is
a bug fix for 1.8.44 release mainly.

Also includes openbsd initial fixes for some issues related to sysctl parsing for cpu and ram.
2013-03-02 17:54:48 +00:00
inxi-svn fd14505984 no version change, just added 'chipset' to banlist to filter out. 2013-03-01 06:15:15 +00:00
inxi-svn 7966cdeac9 New version, new tarball. This version brings the -A, -G, -N, -n, -i pci data
to bsd. Using a pciconf parser to do most of the heavy lifting in this one.

Two functions do the main pci card processing for audio, graphics, and networking.

All seems to be shipshape and working, tested on freebsd 7.3, 9.0, and 9.1 and 
the output is consistent.
2013-03-01 05:55:24 +00:00
inxi-svn 46e36c755b New version, new tarball. Improved B_ALLOW_UPDATES handling, now if set to false,
turns off all -h and -H menu options for updating. Also triggers an error message
if you use -U or -! <10-16/http://>.

Distro maintainers, take note, if you used the B_ALLOW_UPDATES flag, you no longer
need to change the code anywhere, the error messages and blocking the -h output for
update features is automatic as soon as the flag is set to 'false'.

I needed to change the -! handling because -! is now also being used for extra features 
like -! 31 and -! 32 and probably more stuff in the future, plus the -! 30 used by 
things like the inxi gui tool being worked on by trash80.

Also included in this version are more bsd changes, including initial function for pciconf
data parsing, this will be used for -A, -G, and -N options for card data.

Further bsd improvements are better error/no data available messages for -D and -o.
2013-02-28 23:35:53 +00:00
inxi-svn 48fa28f1ec New version, small bug fix, inxi failed to add in md raid partition size data to HDD used data.
The hdd used still fails to properly calculate the actual raid sizes but that's a bit too tricky
to do easily so will leave that for some other time.

Also added in more hdd used partition types for bsds, wd and ad type drivers for disks.
2013-02-28 07:15:13 +00:00
inxi-svn 9ccd707d49 small change, new tarball, added some excludes items to unmounted list, scd, dvdrw, cdrw. 2013-02-28 06:27:40 +00:00
inxi-svn 43fd70ca90 New version, updated man page. A bug fix for an old time bug: with mdraid, -o (unmounted
partitions) would show components of the md raid array as unmounted partitions.

This is of course incorrect, and is now fixed. 

Small update of man page as well to note that -o will not show components of mdraid arrays.
2013-02-28 06:12:04 +00:00
inxi-svn 20ca07336e updated bsd zfs raid error messages to reflect that only zfs is supported at this time 2013-02-27 22:08:35 +00:00
inxi-svn 2a93e5e522 New version, bug fix for mdraid, and cleaned up some errors and weak spots in component
output for mdraid. Certain conditions would trigger a false return for raid components, now
it shows more explicitly the online/spare/failed data so it's clear. Also shows 'none' for 
online if none are detected.
2013-02-27 22:02:44 +00:00
inxi-svn c4be977f5c bug fix 2013-02-27 21:16:20 +00:00
inxi-svn 85c4073d80 small bug fix, cleaned up for older bsds )) on their own line. 2013-02-27 20:57:24 +00:00
inxi-svn c66b0fa297 New version, updated man page. Completed zfs raid support for bsds, now include component
status as with mdraid, will show offline/failed devices as well in standard output.

Updated help and man page to reflect the difference between -R, -Rx, and -Rxx output for
zfs / mdraid.

No linux inxi changes, this should not alter any behaviors in -R for mdraid, if it does, it's 
a bug, please report it.
2013-02-27 20:45:26 +00:00
inxi-svn 48b8a5e6e9 New version, updated man page, new tarball.
Fixed partition bug that could falsely identify a remote filesystem like nfs as /dev fs

Added two options: 
-! 31 - Turns off Host section of System line. This is useful if you want to post output
from server without posting its name.
-! 32 - Turns on Host section if it has been disabled by user configuration file
B_SHOW_HOST='false'

Added missing CPU data message, fixed missing cpu cache/bogomips output, turned off
bogomips if null for bsd systems because bogomips is a linux kernel feature.

Added N/A for no memory report, this would mainly hit bsd systems where user has no
permissions to use sysctl or has no read rights for /var/run/dmesg.boot.

Many fixes for partitions, now for bsd, if available, uses gpart list to get uuid/label
Added support for raid file system syntax in bsd, now excludes main raid device name, 
and adds a flag to raiddevice/partitionname type so output can identify it as a raid
slice/partition.

In man page, added -! 31 / -! 32 sections, and some other small edits.

Added bsd raid line error message, added bsd sensors line error message.

Many other small bug fixes that should make linux more robust in terms of missing
data, and better/cleaner output for bsd.
2013-02-18 20:33:05 +00:00
inxi-svn a08712ce7d New tarball. Tiny fix for an obscure fringe case, leaving numbering as is.
In some cases, dmidecode returns the grammatically wrong message: 
'No smbios nor dmi data' instead of 'No smbios or dmi data', corrected the search
to look for simpler: 'no smbios ' to avoid that random error.
2013-02-12 17:57:17 +00:00
inxi-svn ba17e082c9 New version, new tarball. This update fixes a recent bug report with ancient dmidecode versions, that do not
properly support the -s option. Now -M uses only one method for dmidecode, manual construction of the Machine
data from the raw dmidecode file. The file output is also parsed a bit to make it more consistently reliable
for inxi purposes.

This update also includes all recent bsd branch updates, including the new #!/usr/bin/env bash on top which
lets inxi run in any environment without changes. Also for bsd, sets sed -i/sed -i '' global value, which 
means that now all the branches are the same, except the bsd branches will contain the most recent tests
and bsd handling. 

As each step is reached, I'll release a new inxi that should be stable, this is the first one however that
can be used as is, no changes, for bsd, debian kfreebsd, and linux systems.

Pleasen note that most bsd features are either incomplete or missing completely at this point, but it's a
start.

Some initial changes as well to help options to show more correct linux or bsd terms. These will be updated
as time permits, it is a long process.
2013-02-12 05:01:07 +00:00
inxi-svn 84bb021fe5 New version, new tarball. Cleaned up patch number sed cleanup that didn't work in bsd. 2013-02-09 04:52:57 +00:00
inxi-svn 90645ebe46 New version, new tarball. All bug fixes and cleanup preparing to support bsd systems, including
kfreebsd from Debian.

Cleaned up all sed and grep that will be used by bsds, added more granular flag for bsd types.

Cleaned up and corrected issues between bsd/linux, more escapes and tests added to drop error
counts in bsds. 

Please note that you must use the inxi from branches/bsd for true bsds because sed has extra -i ''
added, and has the proper #!/usr/local/bin/bash

Added -! 16 for gnubsd download/update, that's for gnu bsd systems like gnu/kfreebsd from debian.

That retains the top #!/bin/bash path, and also uses gnu sed so no -i '' syntax.

Moved some grep -o to gawk or sed to avoid using gnu grep unnecessarily, leaving gnu grep where
it will be linux only, for example parsing a /proc file.

Fixed tty irc bugs for bsds and linux, now should show the right console size for both, ideally.
2013-02-09 04:43:18 +00:00
inxi-svn 5b564bc84e New version, new tarball. Note, this is a refactor release only, and features the core bsd
support built in, although inxi will not run in bsd unless the top: #!/bin/bash is changed
to #!/usr/local/bin/bash

The actual bsd branch can be grabbed from: 
http://inxi.googlecode.com/svn/branches/bsd/inxi
then you can keep that version updated using: inxi -! 15 
which will grab the latest bsd version from the svn server.

This release also fixes a lot of small bugs that testing for bsd support exposed, but functionally
most people should see no difference, I just want to get this version up because there are
so many small changes that it's worth having a release.

I was going to have the fixed dmidecode for old systems in 1.8.35 but that will have to wait til
1.8.36

Linux users should see no real changes, except maybe a thing or two will work in certain circumstances 
when it didn't before, like showing MHz on ARM cpus on short inxi.
2013-02-08 04:06:54 +00:00
inxi-svn 5b86605d24 some code cleanup, new tarball, no other changes that matter 2013-01-29 00:40:35 +00:00
inxi-svn 2703defd0c forgot, was using awk, changed to gawk 2013-01-29 00:39:14 +00:00
inxi-svn 9515a5ab00 added a comment to explain the hack for su/process grandparent 2013-01-29 00:37:01 +00:00
inxi-svn 9ec6d89b08 quick bug fix, no version changes, handling su return value for shell parent, weird stuff.
Now will drill in until it hopefully gets su parent.
2013-01-29 00:30:34 +00:00
inxi-svn 84137bfac8 new version, new tarball, new man page.
small change -Ixx will show running in tty if it's not in X, with tty number.

sort of redundant to System: console: data, but that's ok, we'll live for now.
2013-01-29 00:22:50 +00:00
inxi-svn 4d59973cd1 New version, new tarball, new man page. Fixed an old bug where if you start inxi with
an ssh command sometimes it will not show any client information, just the debugger 
PPID output. Now it will test as a final check to see if it can detect any parent to
the process. Actually grandparent I believe. Seems to work, it's a fringe case but
why not handle it?

New -xx feature, for -I it will show, if inxi is not running in IRC client and if 
is running in X, and if the grandparent is not 'login', will show the application
the shell is running in.

Example: 
Info:      Processes: 271 Uptime: 5:36 Memory: 3255.8/4048.5MB Runlevel: 3 
           Gcc sys: 4.7.2 alt: 4.0/4.2/4.4/4.5/4.6 
                      Client: Shell (bash 4.2.37 - started in konsole) inxi: 1.8.33
2013-01-29 00:03:06 +00:00
inxi-svn fd8087040b New version, new tarball. Disabled -U in irc clients, with an exit error message. 2013-01-23 22:46:54 +00:00
inxi-svn 0b43930283 last fine tuning, now for specific irc support purposes, you can see what symbolic link started the real inxi 2013-01-23 22:41:07 +00:00
inxi-svn 66d7f02207 small bug fix with symbolic link path detection for --version 2013-01-23 22:35:10 +00:00
inxi-svn 9d0661b197 small glitch fix, very obscure case so checking --version path as symbolic link, use readlink if it is one. 2013-01-23 22:30:42 +00:00
inxi-svn b31926900b New version, new tarball. Fixed overly verbose output for --version/-V in irc. Also updated
and made cleaner the version data in verbose mode, non irc.

Fixed instance where program location would only show a dot . or relative path to inxi. Now
in version full will show the full path, or should.

Basic version line now show:  inxi 1.8.30-00 (January 22 2013)

The verbose information/version shows the license information, website/irc support info, and
a few other changes.

Also fixed a small bug where the copyright shows current year, not the actual year of the inxi
copyright contained in the top comment header.
2013-01-23 22:05:47 +00:00
inxi-svn 7705e68d40 New Version, new tarball. Added inxi.changelog to tarball as well.
Continuing fixes for ARM cpus, it was noted that short form inxi failed to show cpu speed
derived from bogomips. That's because of the old min/max output that short form used.
Updated that section to now use N/A as flag, and if N/A for min/max speed, use the speed
given from first cpu array index, the one derived from bogomips for ARM/razberry pi.

Note that there is still no other ARM /proc/cpuinfo available to see if the razberry pi
fixes work for all ARM cpus, but the fixes will stop hangs and endless loops at worst,
and may also show some type of cpu speeds for ARM cpus that are not in razpi devices.
2013-01-22 20:47:00 +00:00
inxi-svn 5b4e6a45e6 Bug fix, new version, new tarball.
quick work around fix for razberrie pi, get cpu data hung on arm /proc/cpuinfo because
it doesn't use the standard processor : [digit] format, but uses a string in the
processor : field, which then hangs inxi which was expecting an integer.

Corrected this with a work around, but it will require a lot more ARM /proc/cpuinfo samples
before the support for ARM can be considered stable.

For cpu speed, following wikipedia, used bogomips being equal to 1x cpu speed, to derive cpu speed.

Better than nothing I guess, but will be wrong in other cases, particularly with dual core arm.
2013-01-22 00:14:48 +00:00
inxi-svn 27dbddd581 small fix in variable declaration 2013-01-18 22:49:43 +00:00
inxi-svn 352cd1920d new version, fixed a long standing weakness, now the long -f full cpu flag output
sorts, that's much easier to read. I also made the line lengths on that much more accurate
to avoid a bunch of long flags creating a longer line, and made the first line shorter to handle
the line starter text.

New tarball as well, no man page changes.

Not sure why this was left undone for so long, but here it is, nice and neat.
2013-01-18 22:22:58 +00:00
inxi-svn 3f071d5849 trying to add -! 30 to trick inxi into thinking it is running in shell 2013-01-11 20:22:05 +00:00
inxi-svn 1688781f7f New version: desktop/dm added: WindowMaker, WM2. Also added in legacy wmii2 which may work.
windowmaker and wm2 are detected via xprop -root, there is no version information for wm2 available
so if you know how to detect that, let me know.

New tarball as well, though no man page changes.
2013-01-09 19:33:08 +00:00
inxi-svn 4e82d9b4d9 bug fix on disk size handling, some vm disk use the start number 252 in /proc/partitions, inxi failed to handle that, and so failed to
show proper disk size in virtual machine.

New tarball/version number.
2012-12-22 20:11:43 +00:00
inxi-svn f60b86253f fixed pardus/pisi sources collection to fit with new method, new tarball, no new version number 2012-12-22 04:39:52 +00:00
inxi-svn f2fbe65485 new tarball, new version. This fixes a somewhat obscure issue where for example rpmforge adds apt repos, and also I assume
some apt rpm tools might do the same for yum repos. Now inxi will simply note the presence of each type, for apt and yum.

I didnt' do this feature for pacman and pisi, because I've never heard of that, but if necessary, I'll add it.

Now inxi will hopefully correctly note the presence of the various repos and list the files with the repo type correctly
noted for each type.

I also fixed a bug in the yum/rpm type repo detection, inxi failed to properly handle spaces around the = sign, which made
it falsely identify as enabled disabled repos, it tested for only ^enabled=1 whereas also ^enabled = 1 is a possible syntax.

This is now corrected.
2012-12-22 04:01:02 +00:00
inxi-svn 2642ac39c7 more fine tuning of some gawk cleanup of os/lsb-release data, new tarball, no new version, this is more for future proofing at this point 2012-12-20 20:57:36 +00:00
inxi-svn 7f96ace5bf added some logging, again, nothing worth a version bump, but a new tarball anyway. 2012-12-20 20:29:02 +00:00
inxi-svn 54f23fb3e8 code cleanup on os-release/lsb-release, shouldn't make any difference for users, but there's a new tarball if you want to update the package. 2012-12-20 20:07:17 +00:00
inxi-svn b8382ecb68 fixed an old bug, sed -E is not supported in very old systems, and is actually not documented in man sed for GNU at all.
That's a bsd method, which slipped into inxi, I've replaced that with -r which is the correct syntax, and which will work
on old linux systems as well as new.

Since there is no functional change and only very old installs would ever see the difference, I'm leaving the version number
alone. New tarball as well.
2012-12-06 20:05:26 +00:00
inxi-svn 47d31be239 new version, fixed a weak shell handler, now it shows the actual shell that inxi started in if not irc.
Also added -x option, show shell version number as well. For dash/csh, this uses a hack of getting dpkg version,
which covers many users, but not all, hopefully I can find a universal way to get shell version for dash/csh
2012-12-05 21:34:56 +00:00
inxi-svn d14d9b7a23 new version, new tarball, a long time oversight, now if running in shell, shows the shell type, like bash, zsh, etc
instead of just the plain 'shell'.
2012-11-20 05:00:15 +00:00
inxi-svn b668b4c4f3 ok, last fix, made pattern looser, now () around x86_64, i686, etc, are optional in search.
Last, I think, tarball, and this is it.
2012-11-17 23:26:06 +00:00
inxi-svn d519d13c02 new tarball, last patch, now globally strip out (x86_64/i686 type data too 2012-11-17 23:22:19 +00:00
inxi-svn ac174c5b94 fixed output a little, now strips out (686) and (x86_64) as well.
New tarball, no version number change since it's just a cosmetic change
2012-11-17 23:08:37 +00:00
inxi-svn c0f2247d7e patched/debugged version of 1.8.22, this is the real version, with new tarball.
Includes all fixes from last svn commit, plus the bug fix.

Now properly handles opensuse/suse distro id wether it has os-release or not.
2012-11-17 22:54:07 +00:00
inxi-svn 269b4cc828 removed debugger 2012-11-17 22:50:32 +00:00
inxi-svn f8dd3b9b1d bug fix, wait for 1.8.22 until verified 2012-11-17 22:49:30 +00:00
inxi-svn 4e030ed5ea undid numbering, sigh 2012-11-17 22:38:57 +00:00
inxi-svn bbf0f29ca3 new version 1.8.22, fixed an old bug with opensuse/suse detection, now sets to default to os-release parser, and a corrected basic
fallback for only /etc/SuSE-release present, presents only first line of that file.

Also improved the /etc/os-release handler to include more data if the PRETTY_NAME field is blank.

New tarball as well.
2012-11-17 22:32:32 +00:00
inxi-svn 2c5b161c2f first patch attempt for inxi suse id, that uses os-release by default now 2012-11-17 21:48:36 +00:00
inxi-svn dc812f80a3 Version update.
Hexchat bug fix/workaround, worked around dev decision to start popping up a gtk dialogue when running
hexchat -v or --version command.

Now reads the actual user config files, hopefully anyway. Since trusting config files that are in the user 
~./hexchat directory for version information is quite unreliable, this is just a quick hack, but that's fine,
inxi is always happy to hack around bad developer ideas to provide the most accurate, or best guess, at the
answer.
2012-11-14 20:32:38 +00:00
inxi-svn 67ec681c24 Actual new version, support for -xx option for A, G, and N, outputs vendor:product string if found.
Updated --help, updated inxi.1.gz man file, updated inxi.tar.gz file.

I think that's it unless there's a bug fix.
2012-10-19 19:28:31 +00:00
inxi-svn 2ab831b0db tweaked A output a bit to make it cleaner on shorter lines 2012-10-19 18:51:02 +00:00
inxi-svn 6a4a15e6ee added A and G vendor:product output for xx, this also requires redoing the line length counters 2012-10-19 18:37:09 +00:00
inxi-svn 48bfe97c44 bug fix, advanced -n 2012-10-19 05:55:09 +00:00
inxi-svn 5abe728d51 another bug fix 2012-10-19 05:52:13 +00:00
inxi-svn 7c55077cf0 bug fix 2012-10-19 05:45:46 +00:00
inxi-svn b8e9e33348 patch update 2012-10-19 05:43:53 +00:00
inxi-svn f962121e5e bug fix 2012-10-19 05:43:37 +00:00
inxi-svn 839e844279 update patch number 2012-10-19 05:34:38 +00:00
inxi-svn 5c3b8443c6 updates 2012-10-19 05:33:30 +00:00
inxi-svn 194ee57cbc first test at adding vendor:product id for -xx 2012-10-19 05:10:56 +00:00
inxi-svn ea42c7495c bug fixes 2012-10-19 03:37:30 +00:00
inxi-svn 6658d489a2 output cleanup 2012-10-19 03:31:20 +00:00
inxi-svn 2afc2495f1 same error for usb audio, fixed that too 2012-10-19 03:27:55 +00:00
inxi-svn 2e71eaaf8d added more to the usb network bus id 2012-10-19 03:25:53 +00:00
inxi-svn 95888330fc fixed an old bug in networking, usb, that puts the vendor:product id instead of the bus id for usb, some other changes coming so no
version change yet.
2012-10-19 03:23:21 +00:00
inxi-svn 079944e590 one more distro id added to debugger collector, no need for new version 2012-10-04 02:34:10 +00:00
inxi-svn b9fdb8b36a added in fallback mode /etc/os-release for all distros, and as preferred mode for Arch, which
is I believe the only one that actually uses this at this point.

Preferred is lsb-release, because that tends to be more accurate.

Note, this may trigger arch derived distro errors, sigh...
2012-10-04 01:36:08 +00:00
inxi-svn bfce0a8fd7 added support for /dev/mapper partitions, those didn't show before, and triggered an error due to /
in path, ie, /dev/mapper/truecrypt1 for example.

Also fixed some subtle bugs that could in some instances trigger errors on partition label/uuid, not likely, but it could.
2012-10-03 20:53:13 +00:00
inxi-svn c7d6a07719 Added MATE desktop support, same method as cinnamon, xprop shows the string _MARCO which is the renamed metacity window manager.
Then mate-about -v gives the current mate version.

New inxi, 1.8.17, new tarball.
2012-09-17 00:47:08 +00:00
inxi-svn a5731b47b5 improved cinnamon desktop support for -S, apparently cinnamon has forked from gnome proper, and is now identifiable
via xprop, so that is now moved to full desktop version handling. This requires bypassing the gnome test, which
is a good thing, because the gnome test uses a deprecated method for gnome detection. Still works, but best to
move from it no matter what.

New tarball, new inxi version.
2012-09-16 17:59:06 +00:00
inxi-svn 5eff92a613 bug fix 2012-09-11 18:42:56 +00:00
inxi-svn 6d1c39fd17 forgot to update mandb on mv 2012-09-11 17:59:32 +00:00
inxi-svn 1676f029f1 updated inxi updater to get inxi.1.gz instead of inxi.8.gz, and also to mv man8/inxi.8.gz to man1/inxi.1.gz if detected.
that should bring inxi back into sync with the methods of man.
2012-09-11 17:55:47 +00:00
inxi-svn 29c55b61d9 Added support for hexchat, version update, but this is the only actual change. 2012-07-30 20:23:31 +00:00
inxi-svn f1dcb81d1d added to data collector /etc/os-release 2012-07-22 00:25:04 +00:00
inxi-svn ac3fe7fdb5 fixed tabs/spaces 2012-07-02 03:57:12 +00:00
trash80.v2.0 ba8ed4d8b2 oops, hit ctrl-x instead of ctrl-c. Fix. No version bump. 2012-07-02 03:30:41 +00:00
trash80.v2.0 0aef2c518d Update to log python version. Not going to bump version number since this isn't greatly important and I just bumped the version number. So version 1.8.13 will have python version logging included. 2012-07-02 03:29:23 +00:00
trash80.v2.0 e874c108eb bumping version number. 2012-07-02 03:24:25 +00:00
trash80.v2.0 b6d597a6ce printing out python version before running xiin. Not yet logged. 2012-07-02 03:23:43 +00:00
inxi-svn 7dfa71fdf3 small change, with -xx, now inxi shows one driver per line, but shows the total disk space on a separate line
that makes it a bit more readable. New version number, new tarball.

I debated making it one per line default as soon as -x is triggered but will leave it this way for now, with -xx
you get the easier to read single line output in all cases, so that's probably good enough.
2012-07-01 21:35:19 +00:00
inxi-svn d85b9a1928 small change, new version, making dm info, if present, show out of X as well. this can be useful if you for example have
ssh'ed into box, and don't remember what dm is running the desktop. Shows N/A if in X if nothing detected, does not show
out of X since could be a headless server.

Updated man page, new tarball.
2012-06-26 19:22:01 +00:00
inxi-svn 561247de00 typo fix 2012-06-25 23:59:26 +00:00
inxi-svn cc7a979269 debugged, final tarball for this round. 2012-06-25 23:58:29 +00:00
inxi-svn 3367734d20 bug fix 2012-06-25 23:55:02 +00:00
inxi-svn bd55bd0c11 bug fix, new tarball 2012-06-25 23:52:07 +00:00
inxi-svn 0ec99ebc47 tweaked it a bit, updated man page to note that -U installs/updates man, new tarball. 2012-06-25 23:49:21 +00:00
inxi-svn e9c2c3882a inxi -U will now install the man file too, but only if /usr/share/man/man8 directory exists.
And if user is logged in as root. The -U procedure for inxi itself will run independently of that.

On completion of inxi download/update, if successful, will do the man page update/install.

And that's that.
2012-06-25 23:35:24 +00:00
inxi-svn 88217d7c74 tiny change in help menu for -t, new tarball, I think that's close to it now. 2012-06-24 22:25:13 +00:00
inxi-svn c05fd8d332 added i3 wm to desktop detection, new tarball as well. Version bump since this is a real change. 2012-06-24 20:34:14 +00:00
inxi-svn fb69777002 Added more dm, ldm, tint2. Added kicker to extra de info.
Biggest change, totally reworked the man page, now it's much more complete and has a lot more information.

Includes how to run in IRC clients, how to create konversation shortcut for /inxi type start.

Ok, that's it, probably will refine the desktop extra information and maybe add a dm or two more.

Also added in startx detection for when no dm was detected, thanks JavaAtom for that one.
2012-06-24 20:04:46 +00:00
inxi-svn c6af37371d fixed little issue, now only shows exact string search for desktop extra info 2012-06-24 08:41:29 +00:00
inxi-svn f83ab4df38 forgot to fill in a word 2012-06-24 08:37:19 +00:00
inxi-svn 4d219d23a5 by special Mint request, adding shell/panel type extra extra extra output to desktop, this is so easy to do
I decided to just add an -xxx option, for extra extra extra data, no output if nothing detected.

No big support issues, and Mint has used inxi by default for a while, so I think it's fine to add this for them.
2012-06-24 08:30:14 +00:00
inxi-svn ce04297c0f small tweak added, if by some weird chance there's more than one dm, shows all of them, in comma separated list.
This might help debug certain odd issues where a user might not know this is the case, or forgot, or something else weird.
2012-06-24 07:45:22 +00:00
inxi-svn 3821e2a16e new -xx feature for -S, shows display manager running if in X. Supports currently the following:
entrance gdm gdm3 kdm kdm-trinity lightdm lxdm mdm nodm slim wdm xdm

there's been a relative flood of new display managers, and a few more are probably coming, so
it's actually a somewhat useful thing to have this option.

This is also going to close issue 30, which is not going to be further handled due to ratrace
of trying to support various software packages running on the systems.

Also updated man page for that -xx item.
2012-06-24 07:03:39 +00:00
inxi-svn 6e4f112e82 New inxi version, new tarball.
Added support for razor-desktop in desktop id section. Tiny change, but there it is.
2012-05-27 19:12:55 +00:00
inxi-svn cdaa47b016 Made a few subtle text adjustments, no version number change, these are purely cosmetic adjustments.
Made new tarball as well for maintainers.
2012-05-17 06:21:33 +00:00
inxi-svn 911fe425dc moved man pages to trunk, easier that way 2012-05-16 01:30:00 +00:00
inxi-svn 4bdb6b0621 By suggestion and good sense, -R has been modified. New tarball as well.
Now RAID works like this:

-b - if no /proc/mdstat, or if no devices found and module is running, show nothing, otherwise show short form as before
-F - if no proc/mdstat, show nothing, if no devices but mdstat and if -xx, show all lines, otherwise show normal
-R - show all messages and missing file/module information so users, particularly sys admins, know right away module
is running even if no devices.
-v 6 and less, like -F. -v 7, like -R run, ie, show all messages.

this gets rid of unneeded line output given that only if you have md_mod running will you have any data for /proc/mdstat
and that module is only running if you have mdraid installed. 

Also redid the no data messages for no module state and no devices state to better reflect what is actually happening.

Good adjustment and good cleanup of unneeded output while tightening the actual usability of the specific messages received.
2012-05-15 01:51:58 +00:00
inxi-svn eee6f3e83e added link in comments to raid info 2012-05-11 21:59:04 +00:00
inxi-svn b345b8b44f removed debugger data, whoops! 2012-05-11 18:48:14 +00:00
inxi-svn 31bf0858c1 removed patch number from 1.8.2 2012-05-11 18:47:17 +00:00
inxi-svn 53c1943a82 fixed small issue, turns out sometimes for raid devices, the [2/2] [UU] type data is simply not present.
That is now handled explicitly, version 1.8.2
2012-05-11 18:46:54 +00:00
inxi-svn 5af065c955 tiny glitch, fixed missing separator in raid 2012-05-11 18:33:42 +00:00
inxi-svn 7641bd1ca6 small tweak, made hardcoded /proc/mdstat use global path variable. 2012-05-11 17:46:31 +00:00
inxi-svn 62e0e35b79 help tweak, fixed -b and -v2 descriptions to note that they are close but not identical 2012-05-11 17:33:35 +00:00
inxi-svn 654694cd16 removed RAID line from -b output if either no /proc/mdstat file or if no raid devices detected. -b should always
be as short and non verbose as possible. Also noted in --help that -b does not show hard drive names, just totals.
2012-05-11 17:30:17 +00:00
inxi-svn 6ecaee1046 tweak 2012-05-11 06:44:31 +00:00
inxi-svn 217e14414e final tweak to missing mdstat file output 2012-05-11 06:44:02 +00:00
inxi-svn b26c4ec1e7 cleanup 2012-05-11 06:25:51 +00:00
inxi-svn 9837f9cbec adjusted the missing mdstat file method to be right. 2012-05-11 06:23:52 +00:00
inxi-svn f744c6ffbe added a protection against no /proc/mdstat might be needed on old systems, we'll see. 2012-05-11 06:21:32 +00:00
inxi-svn 65aa044f30 New feature, updated to inxi 1.8.0, -R for RAID output.
Includes 4 levels, -b shows basic only, -R shows primary info, device id, components, state, and report on drives 

-Rx shows more, and triggers a second info line per device with more raid info.

-Rxx also adds more information, and triggers system raid support info and unmounted raid devices line.

-F uses -R now.

And that's that, enough raid stuff for a lifetime.
2012-05-11 06:01:17 +00:00
inxi-svn 4fa7edd006 updated man pages, removed temporarily raid function 2012-05-10 05:15:35 +00:00
inxi-svn 482930ff07 fixed typo in -v 5 help item. 2012-05-08 23:46:59 +00:00
inxi-svn 02579b3a16 Added man pages, including the gz part. No idea why I forgot to do this, this is by aus9 by the way.
So there's the man pages, needs some work, but at least it's something.
2012-05-06 23:38:13 +00:00
inxi-svn bd72fdf2c6 new -xx feature, by request, -D shows serial number of hdd as well. Also fixed the drive output to be more clearly labeled with
data type names, as with the rest of the outputs.
2012-04-26 23:51:55 +00:00
inxi-svn f85208ecbc small bug fix, only affects gentoo/sabayon konvi version number detection. Path change needed as alternate. 2012-04-26 20:25:04 +00:00
inxi-svn fe958e912b trying a fix for konvi version for sabayon, they changed paths 2012-04-26 20:17:25 +00:00
inxi-svn d37c485f87 added /proc/mdstat output to disk data collector function. 2012-04-26 18:16:39 +00:00
inxi-svn cdb03510b4 adding in validation since user set ip addresses can be wrong. It's always something, sigh... 2012-04-16 20:29:13 +00:00
inxi-svn de5ccd8a1c added feature where a different ip page can be added by whoever.
That would need to be set in the inxi override config file. The page must show only
one line of output, and that last item on that line must be the ip address.

Ok, that's it, not a big deal, but some people may prefer a non smxi ip address page
for whatever reason, so have at it. Or not.
2012-04-16 18:06:13 +00:00
inxi-svn 7dc1634887 language tweak, getting there 2012-03-26 22:33:18 +00:00
inxi-svn 2ffdda3578 language tweak 2012-03-26 22:29:30 +00:00
inxi-svn 02348a009f language tweak to -M output 2012-03-26 22:28:58 +00:00
inxi-svn 673c4d4585 language tweak 2012-03-26 22:22:42 +00:00
inxi-svn f94a67dca6 language tweak 2012-03-26 22:22:19 +00:00
inxi-svn ef8f431ec4 fixed for older systems, -M with dmidecode can be empty, so error messages should also show that. 2012-03-26 22:17:27 +00:00
inxi-svn e64687d88f user patch, added support, as root user, for dmidecode in -M data.
This helps users of older systems get system machine data.
2012-03-26 21:41:53 +00:00
inxi-svn fcd3ccaf4c updated recommends for arch, xprop has changed to xorg-xprop 2012-03-26 20:32:27 +00:00
inxi-svn 9d8da0627f bug fix, some intel cpus give core id as 0 for each core, thus creating a situation where
inxi thinks it's a single core cpu, no matter if it's multicpu or multicore.

Using the: cpu cores
value to double check, as a fallback. This seems to work, ie, if cpu cores is listed as 1
but processor count * cpu count is > 1, then clearly the intel reporting bug is in play.

Note that this is NOT an inxi bug, but is a bug in how some intel cpus create their
cpuinfo data, but since intel is a major player, it's worth handling that issue.
2012-02-21 20:14:15 +00:00
inxi-svn bd15318705 fixed a logging bug, won't have any impact on users. 2012-02-13 05:27:36 +00:00
inxi-svn bf4333570e fixed typo, thanks to alert user for this bug report 2012-02-13 05:22:02 +00:00
inxi-svn f6abbdf3c8 tweaked grep to make sure it's ^rootfs 2012-02-09 23:39:45 +00:00
inxi-svn e7fd174440 bug fix, new kernels/df show both / real filesystem and / and rootfs, creating double / entries.
This is fixed with a simple test to get rid of that possible outcome. We'll see if that's sufficient.
2012-02-09 23:35:47 +00:00
inxi-svn f63cf11e2c Small bug fix, added separator character to Desktop item, that was left out. 2012-01-07 18:25:47 +00:00
inxi-svn e687ce5960 added in aptosid-version and siduction-version to save maintainers time of adding those. 2011-11-22 19:11:16 +00:00
inxi-svn 154f819680 big bug fix, usb networking output has apparently not worked for a long time, that is now fixed.
Apparently if you pack an array that is global inside a subshell, that does not register on the primary level of bash.

Who knew?

Maintainers, this is a serious bug fix, so updat to 1.7.27 now or the usb cards will not be seen.
2011-11-22 06:36:42 +00:00
inxi-svn 68b84a9e1e bug fix, first patch, usb networking wasn't working, not sure why this was never reported 2011-11-22 06:31:28 +00:00
inxi-svn 023ba2d188 not showing speed/duplex for lan card when it is down. Because cards don't always have 'up', but
might show 'unknown' for state, only not showing if it is down explicitly.
2011-11-22 05:33:11 +00:00
inxi-svn 94e9d050d0 Syntax test fix for a broadcom wifi card id in -n output, failed to read path in /sys
Fixing this required using find, so find will have to be added to the recommended apps, but
leaving it off for now until sure this method is the only way to do it.

The earlier used grep method to get the paths did not work, why, I don't know.

This may require redoing the usb path finder logic, we'll see.
2011-11-22 04:17:29 +00:00
inxi-svn 37d0118dfd bug fix 2011-11-22 04:11:43 +00:00
inxi-svn d385fd39b0 bug fix 2011-11-22 04:00:28 +00:00
inxi-svn 652585c9f9 trying a bug fix for broadcom id 2011-11-22 03:54:40 +00:00
inxi-svn 764bea1a31 cleaned some spacing errors. 2011-10-22 05:12:05 +00:00
inxi-svn 7dc02344a4 version bump for bug fix for short jwm type desktop names. now should always work. 2011-10-04 03:22:37 +00:00
inxi-svn 19bc994f3f trying a jvm fix, turns out some ps aux uses full path, like /usr/bin/jwm 2011-10-04 03:19:08 +00:00
inxi-svn 2013a6b69a changed Unknown distro to unknown, so the output will be: distro: unknown 2011-07-28 18:55:45 +00:00
inxi-svn 9a5a49ca07 got rid of pointless o_0 on unknown distro 2011-07-28 18:48:43 +00:00
inxi-svn 548fc5c71c added some comments to explain 2011-07-28 00:02:05 +00:00
inxi-svn a7bb5b5ac1 bug fix, forgot the null file case 2011-07-27 23:56:42 +00:00
inxi-svn 856ed2bc1b small patch for inxi unknown distro, this is a bug fix, so it's a version bump too. 2011-07-27 23:54:37 +00:00
inxi-svn 48ae838480 small bug fix for output of konvi perl/python handler 2011-07-25 22:56:21 +00:00
inxi-svn cf75791ea4 cleaned up konvi code, function for perl/python detection. 2011-07-25 22:43:47 +00:00
inxi-svn 55c7fa0e3a added python support for unknown irc clients and added konversation to that support. 2011-07-25 22:40:48 +00:00