Created
May 22, 2017 22:51
-
-
Save shekkbuilder/12f9e98be9da74adf55a97052987e497 to your computer and use it in GitHub Desktop.
old sosreport
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
host=$(hostname) | |
sos_dir="/tmp/_hungsos" | |
mkdir | |
cd | |
chkconfig --list > chkconfig | |
date > date | |
df > df | |
dmesg > dmesg | |
dmidecode > dmidecode | |
fdisk -l > fdisk | |
free > free | |
hostname --fqdn > hostname | |
ifconfig > ifconfig | |
lsmod > lsmod | |
lspci > lspci | |
cat /proc/mounts > mount | |
netstat -tlpn > netstat | |
ps auxww > ps | |
rpm -qa > rpm-qa | |
rpm -Va > rpm-Va #this command may take a while to run | |
ulimit -a > ulimit | |
uname -a > uname | |
uptime > uptime | |
cat /proc/meminfo > meminfo | |
cat /proc/cpuinfo > cpuinfo | |
mkdir etc | |
cd etc | |
cp /etc/fstab . | |
cp /etc/cluster/cluster.conf . | |
cp /etc/security/limits.conf . | |
cp /etc/redhat-release . | |
cp /etc/sysctl.conf . | |
cp /etc/modprobe.conf . | |
mkdir sysconfig/network-scripts -p | |
cd sysconfig | |
cp /etc/sysconfig/* . -R | |
cd | |
mkdir var/log -p | |
cp /var/log/message* var/log -R | |
cd /tmp | |
tar -cvjf _hungsos.tar.bz2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment