old-benchmark-code/inventory/inventory.sh

23 lines
479 B
Bash
Raw Normal View History

2011-08-16 11:13:53 -05:00
#!/bin/bash
2011-08-16 11:25:46 -05:00
STAMP=$1
2011-08-16 11:13:53 -05:00
echo $STAMP
2011-08-16 11:25:46 -05:00
# mkdir $STAMP
2011-08-16 11:13:53 -05:00
lshw > $STAMP/lshw.out
cat /proc/cpuinfo > $STAMP/cpuinfo
cat /proc/meminfo > $STAMP/meminfo
cat /var/log/dmesg > $STAMP/dmesg.boot
dmesg > $STAMP/dmesg.current
lspci > $STAMP/lspci
df > $STAMP/df
ifconfig -a > $STAMP/ifconfig
route -n > $STAMP/route
netstat -n > $STAMP/netstat
ps auxwH -L kstart_time > $STAMP/ps
2011-08-16 11:53:48 -05:00
rpm -qa > $STAMP/rpminfo
dpkg -l > $STAMP/dpkginfo
lsmod > $STAMP/lsmod
cat /proc/partitions > $STAMP/partitions