Some problem with HDD heads parking

Hello!

Sorry for my bad English!

Problem with FreeBSD 8.1 and my notebook HP ProBook 4510s <NX668EA> (Intel Mobile Dual Core Celeron T3000 1.8GHz, Intel GL 40 Cantiga Chipset, MB HP 3072, Bios Compaq F15, 2GB RAM DDR II 800 MHz, 250GB HDD FUJITSU MJA2250BH, Intel GMA X4500MHD, LAN Marvell Yukon 88E8072 10/100/1000Mbit, DVDRW Optiarc AD7581S, WiFi Broadcom BCM4312, Snd HDA):

FreeBSD uses too aggressive power saving mode of HDD, at which HDD heads very often park. The sound "blink" is heard during this moment.

This problem also is observed in Linux (Russian ALT Linux 5.0.0 KDE Desktop and may be Ubuntu ), but no this problem in WinXP SP3.

FreeBSD users have found working workaround:

Install port sysutils/ataidle and run

# ataidle -P 254 /dev/ad0

Or write changes in /etc/rc.conf:

Code:
ataidle_enable=«YES»
ataidle_devices=«ad0»
ataidle_ad4="-P 254"

---

But may FreeBSD Team fix this problem in future, else can this damage HDD (counter of parks have limit)?
 
It's not a FreeBSD or linux problem per se but that windows already contains an automatic "workaround" as you so gracefully put it. The HDD manufacturers set the drives up with these unrealistic load/unload timeouts, I suppose at least somewhat to help with being certified "green" or some other religious nonsense, & windows sets its own slightly more realistic timeouts.

From rummaging about on Mr. Internet a bit, it seems that 600,000 is an accepted upper limit for load_cycle_count. My drive eventually died after going for a few months at well over 1,000,000. Try # sudo smartctl -A /dev/ad0 | grep 193, & also see: Thread 12091 & Thread 8841.

I hope this helps.
 
Sorry for my bad English...

I am successfully uses FreeBSD 8.1 on my notebook after disable HDD heads parking in IDE mode emulation (disk detected as ad0), but can't disable heads parking in Native SATA Mode (disk detects as ada0) :-(

[cmd=]# ataidle -P 254 /dev/ada0[/cmd]

Ataidle says, that in this mode error detected (I write on memory). This situation takes place with 2 different HDD (old FUJITSU & new Seagate).

How it is possible to solve this problem (disable heads parking in SATA mode)?
 
mav@

Thank you! After ports update, I am succeffully disable HDD heads parking in SATA mode (no error in ataidle).

[SOLVED]
 
Back
Top