Reply
Regular Visitor
DF66Stang
Posts: 6
Registered: ‎08-04-2010
0

anyone tried the new NAS110 firmware?

Has anyone tried the new NAS110 firmware? I'm interested in trying but am a little nervous about taking down my drive if things don't go well.

Regular Visitor
DF66Stang
Posts: 6
Registered: ‎08-04-2010
0

Re: anyone tried the new NAS110 firmware?

I was feeling lucky :smileyvery-happy: so I loaded it to see what happens.........all is working that was working before. I tried the connection speed, and at first glance it appears to have improved for my setup (copied a 6Gb file on a 100Mb connection and was consistently running at 90 - 94% utilization on the connection).

Kilobyte
taka_ozo
Posts: 26
Registered: ‎03-19-2010
0

Re: anyone tried the new NAS110 firmware?

[ Edited ]

I have loaded the new FW and Media Services works better...Windows Media Center now see's correctly all media on device.....dont forget to load Rally driver first...will try later a DLNA TV and post here the results...as for speed i dot have a Gbit switch to test....all devices connected at 100Mbps(lan) or 300Mbps(N draft)...so no change for me :smileyhappy:)

Gigabyte
Sector
Posts: 137
Registered: ‎01-02-2010
0

Re: anyone tried the new NAS110 firmware?

After a tremendous wait for this firmware update I loaded it, manually, and it seems to have improved my NAS 110. Upload and download speeds have improved moderately and the overall functionality is a welcomed relief.

 

So hopefully these firmware updates to help us improve all of our NAS's will be as AlanM stated .. Every couple of months. Time will tell the story,

It's the People that make the Difference
Visitor
iAmNowBald
Posts: 2
Registered: ‎07-10-2010
0

Re: anyone tried the new NAS110 firmware?

Speed is improved, DNLA issues with playstation still remain. Errors when opening pictures served from the NAS.

 

Kilobyte
taka_ozo
Posts: 26
Registered: ‎03-19-2010
0

Re: anyone tried the new NAS110 firmware?

[ Edited ]

Good things comes whit bad ones......HDD spin down do not work anymore.

BTW serial login to console now works by default.. you can loggin as admin :smileyhappy:)....next thing is to reset root's pwd...im on to it now....:manwink:

 

P.S. did anyone try to install FreeNAS on this device?

 

Kilobyte
nfodiz
Posts: 16
Registered: ‎01-29-2010
0

Re: anyone tried the new NAS110 firmware?

[ Edited ]

HDD Standby broke here as well :smileysad: Seagate please fix!  Any way to rollback to 391??

Kilobyte
taka_ozo
Posts: 26
Registered: ‎03-19-2010
0

Re: anyone tried the new NAS110 firmware?

Here's data from console (hdd stanby problem) :

==> Assembling MD arrays ................................... [ OK ]
==> Updating disk information ............................. [ OK ]
==> Disabling HDD standby for /dev/sda .................... [ OK ]
==> Disabling HDD standby for /dev/sdb .................... [ OK ]
==> Disabling HDD standby for /dev/sdc .................... [ OK ]
==> Disabling HDD standby for /dev/sdd .................... [ OK ]
==> Disabling HDD standby for /dev/sde .................... [ OK ]
==> Disabling HDD standby for /dev/sdf .................... [ OK ]
==> Disabling HDD standby for /dev/sdg .................... [ OK ]
==> Disabling HDD standby for /dev/sdh .................... [ OK ]

....
==> Starting I/O Monitor for HDD standby ..................
==> Forcedly set passwd for username "licenser" .........
==> Checking whether system get abnormal shutdown ......... [ NO ]
==> Socket connection for raclientd .......................
==> Stopping nas_conf_db.xml tracker ...................... [FAIL]
==> Stopping raclient ..................................... [FAIL]
==> Starting raclientd .................................... [ OK ]
==> Starting config.xml tracker ........................... [ OK ]
==> Starting backup server service ........................

Kilobyte
nfodiz
Posts: 16
Registered: ‎01-29-2010
0

Re: anyone tried the new NAS110 firmware?

taka_ozo thanks for the console data :smileyvery-happy: Now maybe someone from Seagate can forward this info on to the nas firmware guys to patch up!

Kilobyte
taka_ozo
Posts: 26
Registered: ‎03-19-2010
0

Re: anyone tried the new NAS110 firmware?

[ Edited ]

I have managed to get to the /etc/init.d/rcS config file, here's what i found:

# Turn off HDD standby

for i in "a" "b" "c" "d" "e" "f" "g" "h"; do

/bin/echo -n "==> Disabling HDD standby for /dev/sd${i} .................... "

/usr/sbin/sendidle -t 0 /dev/sd${i} >/dev/null 2>&1

if [ "$?" == 0 ]; then

/bin/echo "[ OK ]"

else

/bin/echo "[FAIL]"

fi

done

 

 

more lines that where suppose to start hdd standby where dissabled. here's also the hdd standby timer:

 

# Turn on SMART in all hard drives

#a=`cat /proto/SxM_webui/admin/config.xml | grep hddstandby`

#b=${a#*hddstandby>}

#b=${b%</hddstandby*}

#for i in "a" "b" "c" "d"; do

# /bin/echo -n "==> Enabling SMART for /dev/sd${i} ........................... "

# /usr/sbin/smartctl --smart=on /dev/sd${i} >/dev/null 2>&1

# if [ "$?" == 0 ]; then

# /bin/echo "[ OK ]"

# else

# /bin/echo "[FAIL]"

# fi

#

# if [ "$b" == "ON" ]; then

# /bin/echo -n "==> Enabling HDD standby for /dev/sd${i} ..................... "

# # set 15 minutes for HDD standby timer

# /usr/sbin/sendidle -t 180 /dev/sd${i} >/dev/null 2>&1

# if [ "$?" == 0 ]; then

# /bin/echo "[ OK ]"

# else

# /bin/echo "[FAIL]"

 

 

Question for seagate people....what was the purpose of dissabling the Hdd standby?