xref: /linux-6.15/scripts/ver_linux (revision 9cc3ef30)
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 | awk -F\) '{print $1}' | awk \
25'/BFD/{print "binutils              ",$NF} \
26/^GNU/{print "binutils              ",$4}'
27
28echo -n "util-linux             "
29fdformat --version | awk '{print $NF}' | sed -e s/^util-linux-// -e s/\)$//
30
31echo -n "mount                  "
32mount --version | awk '{print $NF}' | sed -e s/^mount-// -e s/\)$//
33
34depmod -V  2>&1 | awk 'NR==1 {print "module-init-tools     ",$NF}'
35
36tune2fs 2>&1 | grep "^tune2fs" | sed 's/,//' |  awk \
37'NR==1 {print "e2fsprogs             ", $2}'
38
39fsck.jfs -V 2>&1 | grep version | sed 's/,//' |  awk \
40'NR==1 {print "jfsutils              ", $3}'
41
42reiserfsck -V 2>&1 | grep ^reiserfsck | awk \
43'NR==1{print "reiserfsprogs         ", $2}'
44
45fsck.reiser4 -V 2>&1 | grep ^fsck.reiser4 | awk \
46'NR==1{print "reiser4progs          ", $2}'
47
48xfs_db -V 2>&1 | grep version | awk \
49'NR==1{print "xfsprogs              ", $3}'
50
51pccardctl -V 2>&1| grep pcmciautils | awk '{print "pcmciautils           ", $2}'
52
53cardmgr -V 2>&1| grep version | awk \
54'NR==1{print "pcmcia-cs             ", $3}'
55
56quota -V 2>&1 | grep version | awk \
57'NR==1{print "quota-tools           ", $NF}'
58
59pppd --version 2>&1| grep version | awk \
60'NR==1{print "PPP                   ", $3}'
61
62isdnctrl 2>&1 | grep version | awk \
63'NR==1{print "isdn4k-utils          ", $NF}'
64
65showmount --version 2>&1 | grep nfs-utils | awk \
66'NR==1{print "nfs-utils             ", $NF}'
67
68echo -n "Linux C Library        "
69sed -n -e '/^.*\/libc-\([^/]*\)\.so$/{s//\1/;p;q}' < /proc/self/maps
70
71ldd -v > /dev/null 2>&1 && ldd -v || ldd --version |head -n 1 | awk \
72'NR==1{print "Dynamic linker (ldd)  ", $NF}'
73
74ls -l /usr/lib/lib{g,stdc}++.so  2>/dev/null | awk -F. \
75       '{print "Linux C++ Library      " $4"."$5"."$6}'
76
77ps --version 2>&1 | grep version | awk \
78'NR==1{print "Procps                ", $NF}'
79
80ifconfig --version 2>&1 | grep tools | awk \
81'NR==1{print "Net-tools             ", $NF}'
82
83# Kbd needs 'loadkeys -h',
84loadkeys -h 2>&1 | awk \
85'(NR==1 && ($3 !~ /option/)) {print "Kbd                   ", $3}'
86
87# while console-tools needs 'loadkeys -V'.
88loadkeys -V 2>&1 | awk \
89'(NR==1 && ($2 ~ /console-tools/)) {print "Console-tools         ", $3}'
90
91oprofiled --version 2>&1 | awk \
92'(NR==1 && ($2 == "oprofile")) {print "oprofile              ", $3}'
93
94expr --v 2>&1 | awk 'NR==1{print "Sh-utils              ", $NF}'
95
96udevinfo -V 2>&1 | grep version | awk '{print "udev                  ", $3}'
97
98iwconfig --version 2>&1 | awk \
99'(NR==1 && ($3 == "version")) {print "wireless-tools        ",$4}'
100
101if [ -e /proc/modules ]; then
102    X=`cat /proc/modules | sed -e "s/ .*$//"`
103    echo "Modules Loaded         "$X
104fi
105