ver_linux 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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. uname -a
  12. echo ' '
  13. gcc -dumpversion 2>&1| awk \
  14. 'NR==1{print "Gnu C ", $1}'
  15. make --version 2>&1 | awk -F, '{print $1}' | awk \
  16. '/GNU Make/{print "Gnu make ",$NF}'
  17. echo "binutils $(ld -v | egrep -o '[0-9]+\.[0-9\.]+')"
  18. echo -n "util-linux "
  19. fdformat --version | awk '{print $NF}' | sed -e s/^util-linux-// -e s/\)$//
  20. echo -n "mount "
  21. mount --version | awk '{print $NF}' | sed -e s/^mount-// -e s/\)$//
  22. depmod -V 2>&1 | awk 'NR==1 {print "module-init-tools ",$NF}'
  23. tune2fs 2>&1 | grep "^tune2fs" | sed 's/,//' | awk \
  24. 'NR==1 {print "e2fsprogs ", $2}'
  25. fsck.jfs -V 2>&1 | grep version | sed 's/,//' | awk \
  26. 'NR==1 {print "jfsutils ", $3}'
  27. reiserfsck -V 2>&1 | grep ^reiserfsck | awk \
  28. 'NR==1{print "reiserfsprogs ", $2}'
  29. fsck.reiser4 -V 2>&1 | grep ^fsck.reiser4 | awk \
  30. 'NR==1{print "reiser4progs ", $2}'
  31. xfs_db -V 2>&1 | grep version | awk \
  32. 'NR==1{print "xfsprogs ", $3}'
  33. pccardctl -V 2>&1| grep pcmciautils | awk '{print "pcmciautils ", $2}'
  34. cardmgr -V 2>&1| grep version | awk \
  35. 'NR==1{print "pcmcia-cs ", $3}'
  36. quota -V 2>&1 | grep version | awk \
  37. 'NR==1{print "quota-tools ", $NF}'
  38. pppd --version 2>&1| grep version | awk \
  39. 'NR==1{print "PPP ", $3}'
  40. isdnctrl 2>&1 | grep version | awk \
  41. 'NR==1{print "isdn4k-utils ", $NF}'
  42. showmount --version 2>&1 | grep nfs-utils | awk \
  43. 'NR==1{print "nfs-utils ", $NF}'
  44. echo -n "Linux C Library "
  45. sed -n -e '/^.*\/libc-\([^/]*\)\.so$/{s//\1/;p;q}' < /proc/self/maps
  46. ldd -v > /dev/null 2>&1 && ldd -v || ldd --version |head -n 1 | awk \
  47. 'NR==1{print "Dynamic linker (ldd) ", $NF}'
  48. ls -l /usr/lib/lib{g,stdc}++.so 2>/dev/null | awk -F. \
  49. '{print "Linux C++ Library " $4"."$5"."$6}'
  50. ps --version 2>&1 | grep version | awk \
  51. 'NR==1{print "Procps ", $NF}'
  52. ifconfig --version 2>&1 | grep tools | awk \
  53. 'NR==1{print "Net-tools ", $NF}'
  54. # Kbd needs 'loadkeys -h',
  55. loadkeys -h 2>&1 | awk \
  56. '(NR==1 && ($3 !~ /option/)) {print "Kbd ", $3}'
  57. # while console-tools needs 'loadkeys -V'.
  58. loadkeys -V 2>&1 | awk \
  59. '(NR==1 && ($2 ~ /console-tools/)) {print "Console-tools ", $3}'
  60. oprofiled --version 2>&1 | awk \
  61. '(NR==1 && ($2 == "oprofile")) {print "oprofile ", $3}'
  62. expr --v 2>&1 | awk 'NR==1{print "Sh-utils ", $NF}'
  63. udevinfo -V 2>&1 | grep version | awk '{print "udev ", $3}'
  64. iwconfig --version 2>&1 | awk \
  65. '(NR==1 && ($3 == "version")) {print "wireless-tools ",$4}'
  66. if [ -e /proc/modules ]; then
  67. X=`cat /proc/modules | sed -e "s/ .*$//"`
  68. echo "Modules Loaded "$X
  69. fi