linux/scripts/ver_linux
<<
>>
Prefs
   1#!/bin/sh
   2# Before running this script please ensure that your PATH is
   3# typical as you use for compilation/istallation. I use
   4# /bin /sbin /usr/bin /usr/sbin /usr/local/bin, but it may
   5# differ on your system.
   6#
   7PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/sbin:$PATH
   8echo 'If some fields are empty or look unusual you may have an old version.'
   9echo 'Compare to the current minimal requirements in Documentation/Changes.'
  10echo ' '
  11
  12uname -a
  13echo ' '
  14
  15gcc -dumpversion 2>&1| awk \
  16'NR==1{print "Gnu C                 ", $1}'
  17
  18make --version 2>&1 | awk -F, '{print $1}' | awk \
  19      '/GNU Make/{print "Gnu make              ",$NF}'
  20
  21echo "binutils               $(ld -v | egrep -o '[0-9]+\.[0-9\.]+')"
  22
  23echo -n "util-linux             "
  24fdformat --version | awk '{print $NF}' | sed -e s/^util-linux-// -e s/\)$//
  25
  26echo -n "mount                  "
  27mount --version | awk '{print $NF}' | sed -e s/^mount-// -e s/\)$//
  28
  29depmod -V  2>&1 | awk 'NR==1 {print "module-init-tools     ",$NF}'
  30
  31tune2fs 2>&1 | grep "^tune2fs" | sed 's/,//' |  awk \
  32'NR==1 {print "e2fsprogs             ", $2}'
  33
  34fsck.jfs -V 2>&1 | grep version | sed 's/,//' |  awk \
  35'NR==1 {print "jfsutils              ", $3}'
  36
  37reiserfsck -V 2>&1 | grep ^reiserfsck | awk \
  38'NR==1{print "reiserfsprogs         ", $2}'
  39
  40fsck.reiser4 -V 2>&1 | grep ^fsck.reiser4 | awk \
  41'NR==1{print "reiser4progs          ", $2}'
  42
  43xfs_db -V 2>&1 | grep version | awk \
  44'NR==1{print "xfsprogs              ", $3}'
  45
  46pccardctl -V 2>&1| grep pcmciautils | awk '{print "pcmciautils           ", $2}'
  47
  48cardmgr -V 2>&1| grep version | awk \
  49'NR==1{print "pcmcia-cs             ", $3}'
  50
  51quota -V 2>&1 | grep version | awk \
  52'NR==1{print "quota-tools           ", $NF}'
  53
  54pppd --version 2>&1| grep version | awk \
  55'NR==1{print "PPP                   ", $3}'
  56
  57isdnctrl 2>&1 | grep version | awk \
  58'NR==1{print "isdn4k-utils          ", $NF}'
  59
  60showmount --version 2>&1 | grep nfs-utils | awk \
  61'NR==1{print "nfs-utils             ", $NF}'
  62
  63echo -n "Linux C Library        "
  64sed -n -e '/^.*\/libc-\([^/]*\)\.so$/{s//\1/;p;q}' < /proc/self/maps
  65
  66ldd -v > /dev/null 2>&1 && ldd -v || ldd --version |head -n 1 | awk \
  67'NR==1{print "Dynamic linker (ldd)  ", $NF}'
  68
  69ls -l /usr/lib/lib{g,stdc}++.so  2>/dev/null | awk -F. \
  70       '{print "Linux C++ Library      " $4"."$5"."$6}'
  71
  72ps --version 2>&1 | grep version | awk \
  73'NR==1{print "Procps                ", $NF}'
  74
  75ifconfig --version 2>&1 | grep tools | awk \
  76'NR==1{print "Net-tools             ", $NF}'
  77
  78# Kbd needs 'loadkeys -h',
  79loadkeys -h 2>&1 | awk \
  80'(NR==1 && ($3 !~ /option/)) {print "Kbd                   ", $3}'
  81
  82# while console-tools needs 'loadkeys -V'.
  83loadkeys -V 2>&1 | awk \
  84'(NR==1 && ($2 ~ /console-tools/)) {print "Console-tools         ", $3}'
  85
  86oprofiled --version 2>&1 | awk \
  87'(NR==1 && ($2 == "oprofile")) {print "oprofile              ", $3}'
  88
  89expr --v 2>&1 | awk 'NR==1{print "Sh-utils              ", $NF}'
  90
  91udevinfo -V 2>&1 | grep version | awk '{print "udev                  ", $3}'
  92
  93iwconfig --version 2>&1 | awk \
  94'(NR==1 && ($3 == "version")) {print "wireless-tools        ",$4}'
  95
  96if [ -e /proc/modules ]; then
  97    X=`cat /proc/modules | sed -e "s/ .*$//"`
  98    echo "Modules Loaded         "$X
  99fi
 100
lxr.linux.no kindly hosted by Redpill Linpro AS, provider of Linux consulting and operations services since 1995.