2009-06-10 11:38:37 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
2009-08-14 14:04:06 +02:00
|
|
|
host="$(hostname)"
|
|
|
|
dest="${0%%*/}.${host}.log"
|
2009-06-10 11:38:37 +02:00
|
|
|
|
|
|
|
(
|
2009-12-29 18:25:27 +01:00
|
|
|
# log, what produced the output
|
|
|
|
cat "$0"
|
|
|
|
|
2009-06-10 11:38:37 +02:00
|
|
|
uname -a
|
|
|
|
dmesg
|
2009-08-14 14:04:06 +02:00
|
|
|
|
|
|
|
# pci stuff
|
2009-06-10 11:38:37 +02:00
|
|
|
lspci -nn
|
|
|
|
lspci -vv
|
2009-08-14 14:04:06 +02:00
|
|
|
|
|
|
|
# hw in total
|
2009-06-10 11:38:37 +02:00
|
|
|
lshw
|
2009-08-14 14:04:06 +02:00
|
|
|
|
|
|
|
# ram
|
2009-06-10 11:38:37 +02:00
|
|
|
free
|
2009-08-14 14:04:06 +02:00
|
|
|
|
|
|
|
# cpu
|
2009-06-10 11:38:37 +02:00
|
|
|
cat /proc/cpuinfo
|
|
|
|
|
2009-08-14 14:04:06 +02:00
|
|
|
# disk
|
|
|
|
mount
|
|
|
|
df -h
|
|
|
|
|
2009-06-10 11:38:37 +02:00
|
|
|
) 2>&1 | tee "$dest"
|