Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5

Exos Scan - Synology Commands

#2
Thanks for your patience! Below are the Synology-specific commands I mentioned in the video. These can be run via SSH on your Synology NAS to check the SMART status of your drives and pull more detailed health information:

Check SMART status of all drives:

bash
Copy
Edit
smartctl -a /dev/sda
smartctl -a /dev/sdb
smartctl -a /dev/sdc
smartctl -a /dev/sdd
You can replace /dev/sdX with the actual device names of your drives.

Check for Power On Hours and other key parameters:

bash
Copy
Edit
smartctl -a /dev/sda | grep -E 'Power_On_Hours|Reallocated_Sector_Ct|Current_Pending_Sector|Offline_Uncorrectable'
This command filters the SMART output to focus on important parameters that can indicate issues with the drive. You can do this for each of your drives by changing /dev/sdX.

Check detailed health status on all drives:

bash
Copy
Edit
for i in /dev/sd?; do smartctl -a $i; done
This command will check all drives (adjust as needed based on your system setup).

These commands should give you a more granular look at the health of your drives beyond the basic vanilla checks.

Regarding the earlier question about SMART data resets, it’s true that if the data has been reset or tampered with, these commands will not fully identify issues like the drives being used or faulty. However, running these checks regularly can still provide valuable insights, especially for monitoring ongoing health.
Reply


Messages In This Thread
Exos Scan - Synology Commands - by ENQUIRIES - 03-10-2025, 01:35 PM
RE: Exos Scan - Synology Commands - by ed - 03-14-2025, 02:10 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)