Sisyphus repository
Last update: 1 october 2023 | SRPMs: 18631 | Visits: 37814925
en ru br
ALT Linux repos
S:0.1-alt1

Group :: System/Base
RPM: ltsp-sysreport

 Main   Changelog   Spec   Patches   Sources   Download   Gear   Bugs and FR  Repocop 

#!/bin/sh
# gather some hardware/system data for troubleshooting
#
# NB: don't forget to take them off the thin client,
# e.g. scp -pr /tmp/ltsp* USER@server:

DIR="/tmp/ltsp-${1:-$RANDOM}"
XLOG=/var/log/Xorg.7.log

mkdir -p $DIR
cd $DIR
free -m > free-m
pstree > pstree
dmesg > dmesg
lspci > lspci
lspci -k > lspci-k
ethtool eth0 > ethtool-eth0
[ ! -f "$XLOG" ] || cp -a "$XLOG" .
cat /proc/cpuinfo > cpuinfo
cd ..
ls -d "$DIR"
ls -l "$DIR"
 
design & coding: Vladimir Lettiev aka crux © 2004-2005, Andrew Avramenko aka liks © 2007-2008
current maintainer: Michael Shigorin