The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/scripts/ver_linux

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

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

Cache object: 6923ac5059de97d66357ae364caf5af2


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.