Last active
August 29, 2015 13:59
-
-
Save hashimotor/10868598 to your computer and use it in GitHub Desktop.
SOSreportとかohaiを使わずにがんばる
This file contains hidden or 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
# Print OS version | |
cat /etc/lsb-release # or lsb_release -a | |
cat /etc/redhat-release | |
uname -a | |
cat /proc/version_signature | |
# Collect system logs | |
# /var/log/messages 一般的なシステムに関する情報 | |
# /var/log/syslog | |
# /var/log/cron 定期的に実行される処理の結果に関する情報 | |
# /var/log/maillog メールに関する情報 | |
# /var/log/secure セキュリティに関する情報 | |
# /var/log/spooler 印刷やニュースに関する情報 | |
# /var/log/dmesg カーネルバッファに関する情報 | |
# /var/log/boot.log OS起動時に関する情報 | |
# Collect HP Integrated Management Log | |
# ハードウェア障害検知履歴の確認が可能 | |
# http://h20564.www2.hp.com/portal/site/hpsc/public/kb/docDisplay/?docId=emr_na-c02584743 | |
sudo hplog -v > hplog.log | |
# HP Smart Storage Administrator Array Diagnostic Utility Report | |
sudo hpssaducli -f adu-report.zip | |
# http://itdoc.hitachi.co.jp/manuals/3021/3021908200/LDLM0223.HTM | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment