Has anyone got the smart and serial number to work right.
Rodney
This is the old XigmaNAS forum in read only mode,
it will taken offline by the end of march 2021!
I like to aks Users and Admins to rewrite/take over important post from here into the new fresh main forum!
Its not possible for us to export from here and import it to the main forum!
it will taken offline by the end of march 2021!
I like to aks Users and Admins to rewrite/take over important post from here into the new fresh main forum!
Its not possible for us to export from here and import it to the main forum!
HighPoint RocketRAID 2720SGL
- dnar
- Starter

- Posts: 65
- Joined: 27 Apr 2013 10:38
- Location: Perth Australia
- Status: Offline
Re: HighPoint RocketRAID 2720SGL
Not yet, but it's being worked on.
Try my shell script.
Try my shell script.
Code: Select all
#!/bin/sh
printf "\f"
date
echo
echo "-------------------------------------------------------------------------------------------------------"
echo "Disk Disk State Temp MB/s Hours Load Count Pending Offline Health Last Test Result"
echo "-------------------------------------------------------------------------------------------------------"
for LINE in 1 2 3 4 5 6
do
STATE="** UNKNOWN ** "
smartctl -a -d hpt,1/$LINE/1 /dev/hpt27xx > /tmp/$LINE.txt
BUS="300"
TEMP=`grep Temperature /tmp/$LINE.txt | cut -b88-90`
HOURS=`grep Power_On_Hours /tmp/$LINE.txt | cut -b88-99`
PEND=`grep Pending /tmp/$LINE.txt | cut -b88-99`
LOAD=`grep Load_Cycle_Count /tmp/$LINE.txt | cut -b88-99`
OFFLINE=`grep Offline_Uncorrectable /tmp/$LINE.txt | cut -b88-99`
HEALTH=`grep overall-health /tmp/$LINE.txt | cut -b51-99`
LAST=`grep "# 1" /tmp/$LINE.txt | grep -v newer | cut -b26-51`
printf "%-5s %-13s %3sc %4s %7s %11s %8s %8s %8s %s %s\n" $LINE "$STATE" $TEMP $BUS $HOURS $LOAD $PEND $OFFLINE $HEALTH " $LAST"
done
echo "-------------------------------------------------------------------------------------------------------"
echoNAS 1: NAS4Free 9.3.0.2 x64 embedded, Intel Core 2 E8400, 8GB, 6 x WD Green 1TB in RAIDZ2, Highpoint 2720 SAS x 8 card 6Gbps
NAS 2: NAS4Free 10.2.0.2 x64 embedded, Intel Core i3-3220, 8GB, 7 x WD Green 750GB in RAIDZ1, onboard SATA 3Gbps
NAS 2: NAS4Free 10.2.0.2 x64 embedded, Intel Core i3-3220, 8GB, 7 x WD Green 750GB in RAIDZ1, onboard SATA 3Gbps
-
Drk
- NewUser

- Posts: 2
- Joined: 16 Jun 2013 05:59
- Status: Offline
Re: HighPoint RocketRAID 2720SGL
Yea i playedwith it some and could not get it work right yet. Not had alot of time to play with it either right now.