How to check boot disk status on Hyper 1000

Written By Christian Castagna (Administrator)

Updated at June 11th, 2025

→ Applies to: VMware ESXi 6.5 and above

This procedure is applicable to the Hyper 1000 model only.

 

Step 1. Connect to VMware ESXi CLI (via SSH)

ssh root@<your_ip_address_or_hostname>

 

Step 2. Create “/tmp/check-disk” file

vi /tmp/check-disk

IMPORTANT
Make sure to copy and paste the exact lines below.

#!/bin/sh
for dev in $(esxcli storage core device list | grep '^t10\.' | awk '{print $1}'); do
  echo "==== SMART Info for $dev ===="
  esxcli storage core device smart get -d "$dev"
  echo ""
done

 

Step 3. Make the script executable

chmod +x /tmp/check-disk

 

Step 4. Check disk

./tmp/check-disk

EXAMPLE OUTPUT

[root@syneto-esxi-elfi:/tmp] ./check-disk 
==== SMART Info for t10.NVMe____M.2_28P8029_3TE6__________________________02733100003E6924 ====
Parameter                 Value       Threshold  Worst  Raw
------------------------  ----------  ---------  -----  ---
Health Status             OK          N/A        N/A    N/A
Power-on Hours            1162        N/A        N/A    N/A
Power Cycle Count         19          N/A        N/A    N/A
Reallocated Sector Count  0           99         N/A    N/A
Drive Temperature         30          85         N/A    N/A
Write Sectors TOT Count   1653267000  N/A        N/A    N/A
Read Sectors TOT Count    1020449000  N/A        N/A    N/A

 

If the value in the 'Health Status' row is not 'OK' and the value in the 'Reallocated Sector Count' row is different from 0, this indicates that the boot disk has encountered errors.