2009-06-10 09:38:37 +00:00
|
|
|
#!/bin/sh
|
2010-04-17 17:01:08 +00:00
|
|
|
#
|
|
|
|
# 2008 - 2010 Nico Schottelius (nico-nsbin at schottelius.org)
|
|
|
|
#
|
|
|
|
# This file is part of nsbin.
|
|
|
|
#
|
|
|
|
# nsbin is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# nsbin is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with nsbin. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
# Retrieve system information including this script
|
|
|
|
#
|
|
|
|
|
2009-06-10 09:38:37 +00:00
|
|
|
|
2009-08-14 12:04:06 +00:00
|
|
|
host="$(hostname)"
|
2010-05-21 07:44:25 +00:00
|
|
|
dest="${0##*/}.${host}.log"
|
2009-06-10 09:38:37 +00:00
|
|
|
|
|
|
|
(
|
2009-12-29 17:25:27 +00:00
|
|
|
# log, what produced the output
|
|
|
|
cat "$0"
|
|
|
|
|
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
|
|
|
|
2011-10-28 07:35:11 +00:00
|
|
|
# usb stuff
|
|
|
|
lsusb
|
|
|
|
|
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
|
|
|
|
2010-12-01 13:26:27 +00:00
|
|
|
# information from dmidecode may differ
|
|
|
|
dmidecode
|
|
|
|
|
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
|
|
|
|
|
2010-07-12 20:47:21 +00:00
|
|
|
) 2>&1 | tee "${dest}"
|