Overview
There may be cases where you need to verify the system's health, usually after a hardware replacement. This article provides the steps to do a basic Operating System health check.
Process
Follow the steps below as the root user to verify that the Operating System (OS) is operating correctly:
- Check the processes load.
prstat -c
- Check the free disk space on the RAID.
df -k
- Check for any OS core files.
ls -l /var/crash/*
- Check when the system was last rebooted.
uptime
- Observe there are no SCSI errors or related logs.
grep -i scsi /var/adm/messages
- Observe there are no CPU errors or related logs.
grep -i cpu /var/adm/messages
- Observe there are no OS errors or related logs.
grep -i panic /var/adm/messages
Priyanka Bhotika
Comments