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