add get-sysinfo

Signed-off-by: Nico Schottelius <nico@ikn.schottelius.org>
This commit is contained in:
Nico Schottelius 2009-06-10 11:38:37 +02:00
parent 6882c889c5
commit e9812f0789

14
get-sysinfo.sh Executable file
View file

@ -0,0 +1,14 @@
#!/bin/sh
dest="${0%%*/}.log"
(
uname -a
dmesg
lspci -nn
lspci -vv
lshw
free
cat /proc/cpuinfo
) 2>&1 | tee "$dest"