X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=grml-hwinfo;h=382594f50299853f8b45596bdfd719eb8184d115;hb=d77edf4830c5e33b0fa1db808e11e13de135e6fc;hp=67cfac509cc497ecda9b8b2f7c50750a36e70106;hpb=1b107c81288f9debebe73004455ed9c0cb4b12eb;p=grml-hwinfo.git diff --git a/grml-hwinfo b/grml-hwinfo index 67cfac5..382594f 100755 --- a/grml-hwinfo +++ b/grml-hwinfo @@ -23,13 +23,13 @@ export LC_ALL=C TIMESTAMP='+%F--%H-%M-%S-%Z' DATE="$(date $TIMESTAMP)" -echo "$PN ${VERSION} - collect hardware information" - # defaults GENERATE_FILE='1' GENERATE_DIRECTORY='' _opt_output_directory=false _opt_output_file=false +_opt_quiet=false +_opt_force=false usage() { echo " @@ -45,13 +45,15 @@ usage() { -d, --directory Create grml-hwinfo-TIMESTAMP as a directory (no file) -f, --file Create grml-hwinfo-TIMESTAMP.tar.bz2 [default action] -h, --help Display this help message + -q, --quiet Don't display informational text (useful for cron usage) + --force Don't abort but overwrite possibly existing output file --output-directory Store output files in specified directory - --output-file Store output in specified filename (tar.bz2 format) + --output-file Store output in specified filename (tar.XX format) " } -CMDLINE_OPTS=output-directory:,output-file:,both,directory,file,help -_opt_temp=$(getopt --name grml-hwinfo -o +bdfh --long $CMDLINE_OPTS -- "$@") +CMDLINE_OPTS=output-directory:,output-file:,both,directory,file,help,quiet,force +_opt_temp=$(getopt --name grml-hwinfo -o +bdfhq --long $CMDLINE_OPTS -- "$@") if [ $? -ne 0 ]; then echo "Try 'grml-hwinfo --help' for more information." >&2 exit 1 @@ -87,6 +89,12 @@ while :; do GENERATE_DIRECTORY='1' GENERATE_FILE='1' ;; + -q|--quiet) + _opt_quiet=true + ;; + --force) + _opt_force=true + ;; --) shift; break ;; @@ -98,21 +106,36 @@ while :; do shift done +if ! $_opt_quiet ; then + echo "$PN ${VERSION} - collect hardware information" +fi + # Generate output/temporary directory name & path, and output file path [ -n "$OUTDIRNAME" ] || OUTDIRNAME="grml-hwinfo-${DATE}" -OUTDIR="${WORKING_DIR}/${OUTDIRNAME}" -mkdir "${OUTDIR}" || { echo "Directory '${OUTDIR}' already exists, aborting." >&2 ; exit 1; } +if $_opt_output_directory ; then + OUTDIR="${OUTDIRNAME}" +else + OUTDIR="${WORKING_DIR}/${OUTDIRNAME}" +fi + +if $_opt_force ; then + mkdir -p "${OUTDIR}" +else + mkdir "${OUTDIR}" || { echo "Directory '${OUTDIR}' already exists, aborting." >&2 ; exit 1; } +fi if [ -n "$GENERATE_FILE" ] ; then [ -n "$OUTFILE" ] && OUTFILE_="$OUTFILE" || OUTFILE_="${OUTDIR}.tar.bz2" - [ -e "${OUTFILE_}" ] && { echo "File '${OUTFILE_}' already exists, aborting." >&2 ; rm -r "${OUTDIR}"; exit 1; } + if ! $_opt_force ; then + [ -e "${OUTFILE_}" ] && { echo "File '${OUTFILE_}' already exists, aborting." >&2 ; rm -r "${OUTDIR}"; exit 1; } + fi OUTFILE=${OUTFILE_} touch "${OUTFILE}" fi if [ "$(id -u)" != "0" ] ; then NOTROOT=1 - echo "W: Running without root permissions. Not all data will be collected." + $_opt_quiet || echo "W: Running without root permissions. Not all data will be collected." fi # check whether a binary is available and executable @@ -124,51 +147,39 @@ exectest() { if test -e "$(which "$1")" ; then return 0 else - grep -q "^$1"'$' missing_tools 2>/dev/null || echo "$1" >> missing_tools + if ! grep -q "^$1"'$' missing_tools 2>/dev/null ; then + $_opt_quiet || echo "$1" >> missing_tools + fi return 1 fi fi } -# echo a list of all disks and their size -# taken from http://cvs.debian.org/fai/lib/disk-info -diskandsize() { - local isdisk major minor blocks device suffix - while read _ _ blocks device _ ; do +# based on https://github.com/faiproject/fai/blob/master/lib/fai-disk-info +checkdisk() { + local isdisk device + while read _ _ _ device _ ; do isdisk=1 - # skip ide cdrom - [ -f "/proc/ide/${device}/media" ] && grep -q cdrom "/proc/ide/${device}/media" && isdisk=0 - [ "$isdisk" -eq 1 ] && echo "$device $blocks" - done -} - -list_disks() { - # print only every second entry; used by disk_info - i=0 - for ent in "$@" ; do - if [ "$i" -eq 0 ]; then - echo "$ent" - i=1 - else - i=0 - fi + # skip CDROMs + [ "$(stat -c %G /dev/"${device}")" = "disk" ] || isdisk=0 + [ "$isdisk" -eq 1 ] && echo "$device" done } disk_info() { - # the variable holds a space separated list of devices and their block size - device_size=$(grep -E ' cciss/c.d.$| ida/c.d.$| rd/c.d.$| hd.$| sd.$|/disc$' /proc/partitions | diskandsize) - # a list of all local disks, without size - disklist=$(list_disks "$device_size") + # the variable holds a newline separated list of devices + disklist=$(egrep ' etherd/e[[:digit:]]+\.[[:digit:]]+\b| i2o/hd.+\b| cciss/c.+d.+\b| ida/c.+d.+\b| rd/c.+d.+\b| fio.\b| hd.\b| sd[a-z]{1,2}\b|/disc\b| vd.\b| xvd.\b' /proc/partitions | checkdisk) } cd "${OUTDIR}" || exit 1 ( - [ -n "$GENERATE_FILE" ] && echo "Output file: $OUTFILE" - [ -n "$GENERATE_DIRECTORY" ] && echo "Output directory: $OUTDIR" - echo - echo "This might take a few seconds/minutes. Please be patient..." + if ! $_opt_quiet ; then + [ -n "$GENERATE_FILE" ] && echo "Output file: $OUTFILE" + [ -n "$GENERATE_DIRECTORY" ] && echo "Output directory: $OUTDIR" + echo + echo "This might take a few seconds/minutes. Please be patient..." + fi # some sysinfo date > ./date @@ -183,21 +194,30 @@ cd "${OUTDIR}" || exit 1 # disks / devices [ -f /proc/scsi/scsi ] && cat /proc/scsi/scsi > scsi exectest lspci && lspci -nn > ./lspci + exectest lspci && lspci -vvnn > ./lspci_verbose cat /proc/partitions > partitions find /proc/ide/ -name geometry -exec grep . {} \; > proc_ide 2>/dev/null df -h > ./df 2>/dev/null - for i in free lsmod mount lsdev lspnp lsusb ; do + for i in free lsmod mount lsdev lspnp ; do exectest $i && $i > ./$i done + + if exectest lsusb ; then + lsusb > ./lsusb + lsusb -v > ./lsusb_verbose 2>./lsusb_verbose.error + fi + swapon -s > ./swapon 2>./swapon.error # proc stuff for i in cpuinfo interrupts cmdline devices dma fb iomem ioports \ - mdstat meminfo modules mtrr pci version ; do + mdstat meminfo modules mtrr pci uptime version ; do [ -r /proc/$i ] && cat /proc/$i > proc_$i done exectest sysdump && sysdump > ./sysdump 2>./sysdump.error + exectest uptime && uptime > ./uptime 2>./uptime.error + # log dmesg > dmesg.cur @@ -208,6 +228,9 @@ cd "${OUTDIR}" || exit 1 exectest x86info && x86info > ./x86info 2>./x86info.error exectest lscpu && lscpu > ./lscpu + # EFI + exectest efibootmgr && efibootmgr -v > efibootmgr + # net stuff, net-tools: exectest ifconfig && ifconfig -v -a > ./ifconfig exectest route && route -n > ./route @@ -218,7 +241,7 @@ cd "${OUTDIR}" || exit 1 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 mrule show > ip_mrule 2>ip_mrule.error exectest ip && ip neigh show > ip_neigh exectest ip && ip netns list > ip_netns exectest ip && ip ntable show > ip_ntable @@ -244,7 +267,11 @@ cd "${OUTDIR}" || exit 1 cat /proc/acpi/info > acpi_info fi - exectest acpi && acpi > ./acpi 2>acpi.error && acpi -v > ./acpi.version + if exectest acpi ; then + acpi > ./acpi 2>acpi.error + acpi --everything > ./acpi.everything 2>./acpi.everything.error + acpi -v > ./acpi.version + fi [ -r /proc/apm/ ] && apm > ./apm if exectest mcelog ; then @@ -275,6 +302,10 @@ cd "${OUTDIR}" || exit 1 cp /var/log/$i log_$i 2>/dev/null done + if [ -r "$HOME"/.local/share/xorg/Xorg.0.log ] ; then + cp "$HOME"/.local/share/xorg/Xorg.0.log user_Xorg.0.log + fi + cp /etc/X11/xorg.conf xorg.conf 2>/dev/null cp /etc/modules modules 2>/dev/null cp /etc/X11/XF86Config-4 XF86Config-4 2>/dev/null @@ -305,6 +336,14 @@ cd "${OUTDIR}" || exit 1 /usr/share/doc/lm-sensors/examples/eeprom/decode-dimms.pl > decode-dimms 2>decode-dimms.error fi + if exectest acpidump ; then + acpidump > ./acpidump 2>./acpidump.error + fi + + if exectest mokutil ; then + mokutil --sb-state > ./mokutil_state 2>./mokutil_state.error + fi + # proxmox exectest qm && qm list > ./qm 2>./qm.error # libvirt @@ -350,7 +389,7 @@ cd "${OUTDIR}" || exit 1 if exectest hdparm ; then echo -e "hdparm -iv /dev/${disk}:\n" >> hdparm - hdparm -iv "/dev/$disk" >> ./hdparm + hdparm -iv "/dev/$disk" >> ./hdparm 2>> ./hdparm.error echo -e "\n\n" >> hdparm fi @@ -374,7 +413,7 @@ cd "${OUTDIR}" || exit 1 if exectest sg_inq ; then echo -e "sg_inq /dev/${disk}:\n" >> sg_inq - sg_inq "/dev/$disk" >> ./sg_inq + sg_inq "/dev/$disk" >> ./sg_inq 2>> ./sg_inq.error echo -e "\n\n" >> sg_inq fi @@ -388,15 +427,17 @@ for file in *.error ; do test -s "$file" || rm -- "$file" done -echo +$_opt_quiet || echo cd "${WORKING_DIR}" # create tarball if [ -n "$GENERATE_FILE" ] ; then tar acf "${OUTFILE}" "${OUTDIRNAME}" - # shellcheck disable=SC2012 - [ -r "$OUTFILE" ] && echo "$OUTFILE ($(ls -ahl -- "$OUTFILE" | awk '{print $5}')) has been generated." + if ! $_opt_quiet ; then + # shellcheck disable=SC2012 + [ -r "$OUTFILE" ] && echo "$OUTFILE ($(ls -ahl -- "$OUTFILE" | awk '{print $5}')) has been generated." + fi fi # remove (temporary) output directory if needed, else keep it, as it doubles @@ -404,7 +445,9 @@ fi if [ -z "$GENERATE_DIRECTORY" ] ; then rm -r "${OUTDIR}" else - [ -r "${OUTDIR}" ] && echo "${OUTDIR} has been generated." + if ! $_opt_quiet ; then + [ -r "${OUTDIR}" ] && echo "${OUTDIR} has been generated." + fi fi exit 0