| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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:/usr/local/sbin:$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 | uname -a | 
 | 13 | echo ' ' | 
 | 14 |  | 
| Gabriel C | 656a3f7 | 2008-05-21 20:36:19 +0200 | [diff] [blame] | 15 | gcc -dumpversion 2>&1| awk \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | 'NR==1{print "Gnu C                 ", $1}' | 
 | 17 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | make --version 2>&1 | awk -F, '{print $1}' | awk \ | 
 | 19 |       '/GNU Make/{print "Gnu make              ",$NF}' | 
 | 20 |  | 
| Jesper Juhl | cc9eefd | 2007-08-02 01:21:15 +0200 | [diff] [blame] | 21 | echo "binutils               $(ld -v | egrep -o '[0-9]+\.[0-9\.]+')" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 |  | 
| Alexey Dobriyan | 580b2e3 | 2005-09-06 15:17:43 -0700 | [diff] [blame] | 23 | echo -n "util-linux             " | 
 | 24 | fdformat --version | awk '{print $NF}' | sed -e s/^util-linux-// -e s/\)$// | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 |  | 
| Alexey Dobriyan | 580b2e3 | 2005-09-06 15:17:43 -0700 | [diff] [blame] | 26 | echo -n "mount                  " | 
 | 27 | mount --version | awk '{print $NF}' | sed -e s/^mount-// -e s/\)$// | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 |  | 
 | 29 | depmod -V  2>&1 | awk 'NR==1 {print "module-init-tools     ",$NF}' | 
 | 30 |  | 
 | 31 | tune2fs 2>&1 | grep "^tune2fs" | sed 's/,//' |  awk \ | 
 | 32 | 'NR==1 {print "e2fsprogs             ", $2}' | 
 | 33 |  | 
 | 34 | fsck.jfs -V 2>&1 | grep version | sed 's/,//' |  awk \ | 
 | 35 | 'NR==1 {print "jfsutils              ", $3}' | 
 | 36 |  | 
| Alexey Dobriyan | ea88df9 | 2005-09-21 21:37:24 +0400 | [diff] [blame] | 37 | reiserfsck -V 2>&1 | grep ^reiserfsck | awk \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | 'NR==1{print "reiserfsprogs         ", $2}' | 
 | 39 |  | 
| Alexey Dobriyan | ea88df9 | 2005-09-21 21:37:24 +0400 | [diff] [blame] | 40 | fsck.reiser4 -V 2>&1 | grep ^fsck.reiser4 | awk \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | 'NR==1{print "reiser4progs          ", $2}' | 
 | 42 |  | 
 | 43 | xfs_db -V 2>&1 | grep version | awk \ | 
 | 44 | 'NR==1{print "xfsprogs              ", $3}' | 
 | 45 |  | 
| Valdis Kletnieks | 319e799 | 2006-12-06 20:37:43 -0800 | [diff] [blame] | 46 | pccardctl -V 2>&1| grep pcmciautils | awk '{print "pcmciautils           ", $2}' | 
 | 47 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | cardmgr -V 2>&1| grep version | awk \ | 
 | 49 | 'NR==1{print "pcmcia-cs             ", $3}' | 
 | 50 |  | 
 | 51 | quota -V 2>&1 | grep version | awk \ | 
 | 52 | 'NR==1{print "quota-tools           ", $NF}' | 
 | 53 |  | 
 | 54 | pppd --version 2>&1| grep version | awk \ | 
 | 55 | 'NR==1{print "PPP                   ", $3}' | 
 | 56 |  | 
 | 57 | isdnctrl 2>&1 | grep version | awk \ | 
 | 58 | 'NR==1{print "isdn4k-utils          ", $NF}' | 
 | 59 |  | 
 | 60 | showmount --version 2>&1 | grep nfs-utils | awk \ | 
 | 61 | 'NR==1{print "nfs-utils             ", $NF}' | 
 | 62 |  | 
| Jesper Juhl | 9cc3ef3 | 2007-08-22 03:11:56 +0200 | [diff] [blame] | 63 | echo -n "Linux C Library        " | 
 | 64 | sed -n -e '/^.*\/libc-\([^/]*\)\.so$/{s//\1/;p;q}' < /proc/self/maps | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 |  | 
 | 66 | ldd -v > /dev/null 2>&1 && ldd -v || ldd --version |head -n 1 | awk \ | 
 | 67 | 'NR==1{print "Dynamic linker (ldd)  ", $NF}' | 
 | 68 |  | 
 | 69 | ls -l /usr/lib/lib{g,stdc}++.so  2>/dev/null | awk -F. \ | 
 | 70 |        '{print "Linux C++ Library      " $4"."$5"."$6}' | 
 | 71 |  | 
 | 72 | ps --version 2>&1 | grep version | awk \ | 
 | 73 | 'NR==1{print "Procps                ", $NF}' | 
 | 74 |  | 
 | 75 | ifconfig --version 2>&1 | grep tools | awk \ | 
 | 76 | 'NR==1{print "Net-tools             ", $NF}' | 
 | 77 |  | 
 | 78 | # Kbd needs 'loadkeys -h', | 
 | 79 | loadkeys -h 2>&1 | awk \ | 
 | 80 | '(NR==1 && ($3 !~ /option/)) {print "Kbd                   ", $3}' | 
 | 81 |  | 
 | 82 | # while console-tools needs 'loadkeys -V'. | 
 | 83 | loadkeys -V 2>&1 | awk \ | 
 | 84 | '(NR==1 && ($2 ~ /console-tools/)) {print "Console-tools         ", $3}' | 
 | 85 |  | 
| Valdis Kletnieks | 319e799 | 2006-12-06 20:37:43 -0800 | [diff] [blame] | 86 | oprofiled --version 2>&1 | awk \ | 
 | 87 | '(NR==1 && ($2 == "oprofile")) {print "oprofile              ", $3}' | 
 | 88 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | expr --v 2>&1 | awk 'NR==1{print "Sh-utils              ", $NF}' | 
 | 90 |  | 
| Steven Cole | 1694145 | 2005-04-18 21:57:33 -0700 | [diff] [blame] | 91 | udevinfo -V 2>&1 | grep version | awk '{print "udev                  ", $3}' | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 |  | 
| Valdis Kletnieks | 319e799 | 2006-12-06 20:37:43 -0800 | [diff] [blame] | 93 | iwconfig --version 2>&1 | awk \ | 
 | 94 | '(NR==1 && ($3 == "version")) {print "wireless-tools        ",$4}' | 
 | 95 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | if [ -e /proc/modules ]; then | 
 | 97 |     X=`cat /proc/modules | sed -e "s/ .*$//"` | 
 | 98 |     echo "Modules Loaded         "$X | 
 | 99 | fi |