X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=grml-hwinfo;h=2898a3c119eddcc62a46c241e32a2367f0941da6;hb=43246c94b0074a2e95f5ac4d2906a31c6e41faf1;hp=c5bbd8d153295e491a1dbc2ed5b19198c784e6d1;hpb=772dcc6b13691e3ae1dc5923f6dcdcebe1da3edf;p=grml-hwinfo.git diff --git a/grml-hwinfo b/grml-hwinfo index c5bbd8d..2898a3c 100755 --- a/grml-hwinfo +++ b/grml-hwinfo @@ -33,12 +33,11 @@ _opt_output_file=false usage() { echo " - This tool collects information of the hardware this tool is being executed - on. It can be executed as normal user to collect some basic information or - with root permissions to collect as much information as possible. By - default, a file named grml-hwinfo-TIMESTAMP.tar.bz2 storing all collected - information will be created in the current working directory. Alternatively, - you can have it create a directory with all information. + This tool collects information of the hardware it is being executed on. + It can be executed as normal user to collect some basic information or + (recommended) with root permissions to collect more system information. + If executed without any options a file named grml-hwinfo-TIMESTAMP.tar.bz2 + storing all collected information is created in the current working directory. Options: @@ -207,12 +206,26 @@ cd "${OUTDIR}" || exit 1 exectest hwinfo && hwinfo log=hwinfo exectest numactl && numactl --hardware > numactl exectest x86info && x86info > x86info 2>x86info.2 - - # net stuff - exectest ifconfig && ifconfig -v -a > ifconfig - exectest ip && ip route show > ip_route - exectest ip && ip link show > ip_link - exectest route && route -n > route + exectest lscpu && lscpu > lscpu + + # net stuff, net-tools: + exectest ifconfig && ifconfig -v -a > ifconfig + exectest route && route -n > route + + # net stuff, iproute: + exectest ip && ip addrlabel list > ip_addrlabel + exectest ip && ip addr show > ip_addr + exectest ip && ip link show > ip_link + exectest ip && ip maddr show > ip_maddr + exectest ip && ip mroute show > ip_mroute + exectest ip && ip mrule show > ip_mrule + exectest ip && ip neigh show > ip_neigh + exectest ip && ip netns list > ip_netns + exectest ip && ip ntable show > ip_ntable + exectest ip && ip route show > ip_route + exectest ip && ip rule show > ip_rule + exectest ip && ip tunnel show > ip_tunnel + exectest ip && ip tuntap show > ip_tuntap # software if exectest dpkg ; then @@ -222,10 +235,17 @@ cd "${OUTDIR}" || exit 1 # power management exectest laptop-detect && laptop-detect >/dev/null 2>/dev/null && echo "0" > laptop_detected - exectest acpi_available && acpi_available && cat /proc/acpi/info > acpi_info + if [ -r /proc/acpi/info ] ; then + cat /proc/acpi/info > acpi_info + fi + exectest acpi && acpi > acpi 2> acpi.error && acpi -v > acpi.version [ -r /proc/apm/ ] && apm > apm + if exectest mcelog ; then + mcelog > mcelog 2>mcelog.error + fi + # kernel stuff if [ -r /proc/config.gz ] ; then zcat /proc/config.gz > kernelconfig @@ -265,6 +285,10 @@ cd "${OUTDIR}" || exit 1 exectest dconf && dconf -o dconf + if exectest mcelog ; then + mcelog --dmi > mcelog_dmi 2>mcelog_dmi.error + fi + if [ -x /usr/share/doc/lm-sensors/examples/eeprom/decode-dimms.pl ] ; then /usr/share/doc/lm-sensors/examples/eeprom/decode-dimms.pl > decode-dimms 2>decode-dimms.error fi @@ -287,6 +311,23 @@ cd "${OUTDIR}" || exit 1 exectest lvdisplay && lvdisplay > lvdisplay 2>lvdisplay.error exectest dmsetup && dmsetup ls > dmsetup_ls 2>dmsetup_ls.error + exectest dmsetup && dmsetup ls --tree > dmsetup_ls_tree 2>dmsetup_ls_tree.error + exectest lsblk && lsblk > lsblk 2>lsblk.error + + # iSCSI + if exectest iscsiadm ; then + iscsiadm -m session > iscsiadm_session 2>iscsiadm_session.error + iscsiadm -m fw > iscsiadm_fw 2>iscsiadm_fw.error + iscsiadm -m host > iscsiadm_host 2>iscsiadm_host.error + iscsiadm -m iface > iscsiadm_iface 2>iscsiadm_iface.error + iscsiadm -m node > iscsiadm_node 2>iscsiadm_node.error + iscsiadm -m discovery > iscsiadm_discovery 2>iscsiadm_discovery.error + fi + + if exectest lsscsi ; then + lsscsi > lsscsi 2>lsscsi.error + lsscsi -t > lsscsi_transport 2>lsscsi_transport.error + fi for disk in $disklist; do if exectest smartctl ; then @@ -319,6 +360,12 @@ cd "${OUTDIR}" || exit 1 echo -e "\n\n" >> sdparm fi + if exectest sg_inq ; then + echo -e "sg_inq /dev/${disk}:\n" >> sg_inq + sg_inq /dev/$disk >> sg_inq + echo -e "\n\n" >> sg_inq + fi + file -s /dev/$disk?* | grep -v ": empty" >> file_disk done fi @@ -335,7 +382,7 @@ cd "${WORKING_DIR}" # create tarball if [ -n "$GENERATE_FILE" ] ; then - tar jcf "${OUTFILE}" "${OUTDIRNAME}" + tar acf "${OUTFILE}" "${OUTDIRNAME}" [ -r "$OUTFILE" ] && echo "$OUTFILE ("$(ls -ahl "$OUTFILE" | awk '{print $5}')") has been generated." fi