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