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.
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.'
12 cat /etc
/*release
2> /dev
/null
15 cat /etc
/issue
2> /dev
/null
21 echo "Gnu C " `gcc --version 2>/dev/null | head -n 1`
23 make --version 2>&1 |
awk -F, '{print $1}' |
awk \
24 '/GNU Make/{print "Gnu make ",$NF}'
26 ld
-v 2>&1 |
awk -F\
) '{print $1}' |
awk \
27 '/BFD/{print "binutils ",$NF}'
29 fdformat
--version 2>&1 |
awk -F\
- '{print "util-linux ", $NF}'
31 mount
--version 2>&1 |
awk -F\
- '{print "mount ", $NF}'
33 insmod
-V 2>&1 |
awk 'NR==1 {print "modutils ",$NF}'
35 tune2fs
2>&1 |
grep "^tune2fs" |
sed 's/,//' |
awk \
36 'NR==1 {print "e2fsprogs ", $2}'
38 reiserfsck
2>&1 |
grep reiserfsprogs |
awk \
39 'NR==1{print "reiserfsprogs ", $NF}'
41 cardmgr
-V 2>&1|
grep version |
awk \
42 'NR==1{print "pcmcia-cs ", $3}'
44 pppd
--version 2>&1|
grep version |
awk \
45 'NR==1{print "PPP ", $3}'
47 isdnctrl
2>&1 |
grep version |
awk \
48 'NR==1{print "isdn4k-utils ", $NF}'
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}'
54 ldd
-v > /dev
/null
2>&1 && ldd
-v || ldd
--version |
head -n 1 |
awk \
55 'NR==1{print "Dynamic linker (ldd) ", $NF}'
57 ls -l /usr
/lib
/lib
{g
,stdc
}++.so
2>/dev
/null |
awk -F. \
58 '{print "Linux C++ Library " $4"."$5"."$6}'
60 ps
--version 2>&1 |
awk 'NR==1{print "Procps ", $NF}'
62 ifconfig
--version 2>&1 |
grep tools |
awk \
63 'NR==1{print "Net-tools ", $NF}'
66 'NR==1{print "iproute2 ", $NF}'
68 # Kbd needs 'loadkeys -h',
69 loadkeys
-h 2>&1 |
awk \
70 '(NR==1 && ($3 !~ /option/)) {print "Kbd ", $3}'
72 # while console-tools needs 'loadkeys -V'.
73 loadkeys
-V 2>&1 |
awk \
74 '(NR==1 && ($2 ~ /console-tools/)) {print "Console-tools ", $3}'
76 expr --v 2>&1 |
awk 'NR==1{print "Sh-utils ", $NF}'
78 if [ -e /proc
/modules
]; then
79 X
=`cat /proc/modules | sed -e "s/ .*$//"`
80 echo "Modules Loaded "$X