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 # 7 PATH=/sbin:/usr/sbin:/bin:/usr/bin:$PATH 8 echo 'If some fields are empty or look unusual you may have an old version.' 9 echo 'Compare to the current minimal requirements in Documentation/Changes.' 10 echo ' ' 11 12 cat /etc/*release 2> /dev/null 13 if [ $? = 1 ]; then 14 echo '/etc/issue:' 15 cat /etc/issue 2> /dev/null 16 fi 17 18 uname -a 19 echo ' ' 20 21 echo "Gnu C " `gcc --version 2>/dev/null | head -n 1` 22 23 make --version 2>&1 | awk -F, '{print $1}' | awk \ 24 '/GNU Make/{print "Gnu make ",$NF}' 25 26 ld -v 2>&1 | awk -F\) '{print $1}' | awk \ 27 '/BFD/{print "binutils ",$NF}' 28 29 fdformat --version 2>&1 | awk -F\- '{print "util-linux ", $NF}' 30 31 mount --version 2>&1 | awk -F\- '{print "mount ", $NF}' 32 33 insmod -V 2>&1 | awk 'NR==1 {print "modutils ",$NF}' 34 35 tune2fs 2>&1 | grep "^tune2fs" | sed 's/,//' | awk \ 36 'NR==1 {print "e2fsprogs ", $2}' 37 38 reiserfsck 2>&1 | grep reiserfsprogs | awk \ 39 'NR==1{print "reiserfsprogs ", $NF}' 40 41 cardmgr -V 2>&1| grep version | awk \ 42 'NR==1{print "pcmcia-cs ", $3}' 43 44 pppd --version 2>&1| grep version | awk \ 45 'NR==1{print "PPP ", $3}' 46 47 isdnctrl 2>&1 | grep version | awk \ 48 'NR==1{print "isdn4k-utils ", $NF}' 49 50 ls -l `ldd /bin/sh | awk '/libc/{print $3}'` | sed \ 51 -e 's/\.so$//' | awk -F'[.-]' '{print "Linux C Library " \ 52 $(NF-2)"."$(NF-1)"."$NF}' 53 54 ldd -v > /dev/null 2>&1 && ldd -v || ldd --version |head -n 1 | awk \ 55 'NR==1{print "Dynamic linker (ldd) ", $NF}' 56 57 ls -l /usr/lib/lib{g,stdc}++.so 2>/dev/null | awk -F. \ 58 '{print "Linux C++ Library " $4"."$5"."$6}' 59 60 ps --version 2>&1 | awk 'NR==1{print "Procps ", $NF}' 61 62 ifconfig --version 2>&1 | grep tools | awk \ 63 'NR==1{print "Net-tools ", $NF}' 64 65 ip -V 2>&1 | awk \ 66 'NR==1{print "iproute2 ", $NF}' 67 68 ping -V 2>&1 | awk \ 69 'NR==1{print "iputils ", $NF}' 70 71 # Kbd needs 'loadkeys -h', 72 loadkeys -h 2>&1 | awk \ 73 '(NR==1 && ($3 !~ /option/)) {print "Kbd ", $3}' 74 75 # while console-tools needs 'loadkeys -V'. 76 loadkeys -V 2>&1 | awk \ 77 '(NR==1 && ($2 ~ /console-tools/)) {print "Console-tools ", $3}' 78 79 expr --v 2>&1 | awk 'NR==1{print "Sh-utils ", $NF}' 80 81 if [ -e /proc/modules ]; then 82 X=`cat /proc/modules | sed -e "s/ .*$//"` 83 echo "Modules Loaded "$X 84 fi 85 86 echo 87 echo 'free reports:' 88 free 89 90 echo 91 echo '/proc/cpuinfo' 92 cat /proc/cpuinfo 93