Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
mariux64
/
linux
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
2
Pull requests
0
Actions
Projects
0
Wiki
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security
Insights
Files
9b9e7d3
Documentation
arch
block
certs
crypto
drivers
firmware
fs
include
init
ipc
kernel
lib
mm
net
samples
scripts
basic
coccinelle
dtc
gcc-plugins
gdb
genksyms
kconfig
ksymoops
mod
package
selinux
tracing
.gitignore
Kbuild.include
Lindent
Makefile
Makefile.asm-generic
Makefile.build
Makefile.clean
Makefile.dtbinst
Makefile.extrawarn
Makefile.fwinst
Makefile.gcc-plugins
Makefile.headersinst
Makefile.help
Makefile.host
Makefile.kasan
Makefile.lib
Makefile.modbuiltin
Makefile.modinst
Makefile.modpost
Makefile.modsign
Makefile.ubsan
adjust_autoksyms.sh
analyze_suspend.py
asn1_compiler.c
bloat-o-meter
bootgraph.pl
check-lc_ctype.c
check_extable.sh
checkincludes.pl
checkkconfigsymbols.py
checkpatch.pl
checkstack.pl
checksyscalls.sh
checkversion.pl
cleanfile
cleanpatch
coccicheck
config
conmakehash.c
decode_stacktrace.sh
decodecode
depmod.sh
diffconfig
docproc.c
export_report.pl
extract-cert.c
extract-ikconfig
extract-module-sig.pl
extract-sys-certs.pl
extract-vmlinux
extract_xc3028.pl
gcc-goto.sh
gcc-ld
gcc-plugin.sh
gcc-version.sh
gcc-x86_32-has-stack-protector.sh
gcc-x86_64-has-stack-protector.sh
gen_initramfs_list.sh
get_dvb_firmware
get_maintainer.pl
gfp-translate
headerdep.pl
headers.sh
headers_check.pl
headers_install.sh
insert-sys-cert.c
kallsyms.c
kernel-doc
kernel-doc-xml-ref
ld-version.sh
link-vmlinux.sh
makelst
markup_oops.pl
mkcompile_h
mkmakefile
mksysmap
mkuboot.sh
mkversion
module-common.lds
namespace.pl
objdiff
patch-kernel
pnmtologo.c
profile2linkerlist.pl
prune-kernel
recordmcount.c
recordmcount.h
recordmcount.pl
setlocalversion
show_delta
sign-file.c
sortextable.c
sortextable.h
spelling.txt
stackdelta
stackusage
tags.sh
unifdef.c
ver_linux
xen-hypercalls.sh
xz_wrap.sh
security
sound
tools
usr
virt
.cocciconfig
.get_maintainer.ignore
.gitignore
.mailmap
COPYING
CREDITS
Kbuild
Kconfig
MAINTAINERS
Makefile
README
REPORTING-BUGS
Breadcrumbs
linux
/
scripts
/
ver_linux
Blame
Blame
Latest commit
History
History
executable file
·
89 lines (79 loc) · 2.9 KB
Breadcrumbs
linux
/
scripts
/
ver_linux
Top
File metadata and controls
Code
Blame
executable file
·
89 lines (79 loc) · 2.9 KB
Raw
#!/bin/awk -f # Before running this script please ensure that your PATH is # typical as you use for compilation/installation. I use # /bin /sbin /usr/bin /usr/sbin /usr/local/bin, but it may # differ on your system. BEGIN { usage = "If some fields are empty or look unusual you may have an old version.\n" usage = usage "Compare to the current minimal requirements in Documentation/Changes.\n" print usage system("uname -a") printf("\n") printversion("GNU C", version("gcc -dumpversion 2>&1")) printversion("GNU Make", version("make --version 2>&1")) printversion("Binutils", version("ld -v 2>&1")) printversion("Util-linux", version("mount --version 2>&1")) printversion("Mount", version("mount --version 2>&1")) printversion("Module-init-tools", version("depmod -V 2>&1")) printversion("E2fsprogs", version("tune2fs 2>&1")) printversion("Jfsutils", version("fsck.jfs -V 2>&1")) printversion("Reiserfsprogs", version("reiserfsck -V 2>&1")) printversion("Reiser4fsprogs", version("fsck.reiser4 -V 2>&1")) printversion("Xfsprogs", version("xfs_db -V 2>&1")) printversion("Pcmciautils", version("pccardctl -V 2>&1")) printversion("Pcmcia-cs", version("cardmgr -V 2>&1")) printversion("Quota-tools", version("quota -V 2>&1")) printversion("PPP", version("pppd --version 2>&1")) printversion("Isdn4k-utils", version("isdnctrl 2>&1")) printversion("Nfs-utils", version("showmount --version 2>&1")) if (system("test -r /proc/self/maps") == 0) { while (getline <"/proc/self/maps" > 0) { n = split($0, procmaps, "/") if (/libc.*so$/ && match(procmaps[n], /[0-9]+([.]?[0-9]+)+/)) { ver = substr(procmaps[n], RSTART, RLENGTH) printversion("Linux C Library", ver) break } } } printversion("Dynamic linker (ldd)", version("ldd --version 2>&1")) while ("ldconfig -p 2>/dev/null" | getline > 0) { if (/(libg|stdc)[+]+\.so/) { libcpp = $NF break } } if (system("test -r " libcpp) == 0) printversion("Linux C++ Library", version("readlink " libcpp)) printversion("Procps", version("ps --version 2>&1")) printversion("Net-tools", version("ifconfig --version 2>&1")) printversion("Kbd", version("loadkeys -V 2>&1")) printversion("Console-tools", version("loadkeys -V 2>&1")) printversion("Oprofile", version("oprofiled --version 2>&1")) printversion("Sh-utils", version("expr --v 2>&1")) printversion("Udev", version("udevadm --version 2>&1")) printversion("Wireless-tools", version("iwconfig --version 2>&1")) if (system("test -r /proc/modules") == 0) { while ("sort /proc/modules" | getline > 0) { mods = mods sep $1 sep = " " } printversion("Modules Loaded", mods) } } function version(cmd, ver) { while (cmd | getline > 0) { if (!/ver_linux/ && match($0, /[0-9]+([.]?[0-9]+)+/)) { ver = substr($0, RSTART, RLENGTH) break } } close(cmd) return ver } function printversion(name, value, ofmt) { if (value != "") { ofmt = "%-20s\t%s\n" printf(ofmt, name, value) } }
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
You can’t perform that action at this time.