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 --version 2>&1| head -n 1 | grep -v gcc | awk \ 16'NR==1{print "Gnu C ", $1}' 17 18gcc --version 2>&1| grep gcc | awk \ 19'NR==1{print "Gnu C ", $3}' 20 21make --version 2>&1 | awk -F, '{print $1}' | awk \ 22 '/GNU Make/{print "Gnu make ",$NF}' 23 24ld -v 2>&1 | awk -F\) '{print $1}' | awk \ 25 '/BFD/{print "binutils ",$NF} \ 26 /^GNU/{print "binutils ",$4}' 27 28fdformat --version | awk -F\- '{print "util-linux ", $NF}' 29 30mount --version | awk -F\- '{print "mount ", $NF}' 31 32insmod -V 2>&1 | awk 'NR==1 {print "modutils ",$NF}' 33 34tune2fs 2>&1 | grep "^tune2fs" | sed 's/,//' | awk \ 35'NR==1 {print "e2fsprogs ", $2}' 36 37fsck.jfs -V 2>&1 | grep version | sed 's/,//' | awk \ 38'NR==1 {print "jfsutils ", $3}' 39 40reiserfsck -V 2>&1 | grep reiserfsprogs | awk \ 41'NR==1{print "reiserfsprogs ", $NF}' 42 43xfs_db -V 2>&1 | grep version | awk \ 44'NR==1{print "xfsprogs ", $3}' 45 46cardmgr -V 2>&1| grep version | awk \ 47'NR==1{print "pcmcia-cs ", $3}' 48 49quota -V 2>&1 | grep version | awk \ 50'NR==1{print "quota-tools ", $NF}' 51 52pppd --version 2>&1| grep version | awk \ 53'NR==1{print "PPP ", $3}' 54 55isdnctrl 2>&1 | grep version | awk \ 56'NR==1{print "isdn4k-utils ", $NF}' 57 58ls -l `ldd /bin/sh | awk '/libc/{print $3}'` | sed \ 59-e 's/\.so$//' | awk -F'[.-]' '{print "Linux C Library " \ 60$(NF-2)"."$(NF-1)"."$NF}' 61 62ldd -v > /dev/null 2>&1 && ldd -v || ldd --version |head -1 | awk \ 63'NR==1{print "Dynamic linker (ldd) ", $NF}' 64 65ls -l /usr/lib/lib{g,stdc}++.so 2>/dev/null | awk -F. \ 66 '{print "Linux C++ Library " $4"."$5"."$6}' 67 68ps --version 2>&1 | awk 'NR==1{print "Procps ", $NF}' 69 70ifconfig --version 2>&1 | grep tools | awk \ 71'NR==1{print "Net-tools ", $NF}' 72 73# Kbd needs 'loadkeys -h', 74loadkeys -h 2>&1 | awk \ 75'(NR==1 && ($3 !~ /option/)) {print "Kbd ", $3}' 76 77# while console-tools needs 'loadkeys -V'. 78loadkeys -V 2>&1 | awk \ 79'(NR==1 && ($2 ~ /console-tools/)) {print "Console-tools ", $3}' 80 81expr --v 2>&1 | awk 'NR==1{print "Sh-utils ", $NF}' 82 83if [ -e /proc/modules ]; then 84 X=`cat /proc/modules | sed -e "s/ .*$//"` 85 echo "Modules Loaded "$X 86fi 87