When I bought my MyBook WE, first thing that came to my mind is if the drive supports automatic spin-down like other MyBooks. Maybe I did something wrong, but the drive never spinned down, even when disconnected from LAN.
So, I am going to write a tool that will monitor drive activity and automatically spin-down the drive when idle for a while.
1. WD has marketed this as a Quiet'n'Cool device. And "reliably cool" (from wd website) implies a good lifetime at its operating temp. It also appears to be marketed as a 24/7 device.
2. The wear and tear on motors/bearings as a result of even a single stop/start may outweigh the impact of a "glide", even for several days. There should be literature about this, (check drive supplier websites?) and you can see whether it's worth the trouble. My guess is that mechanisms have gotten so good you'll decide not to worry. If the mfr is able to sell a 24/7 device with 24/7 reliability (i.e., endurance), I'd just smile and say "thanks."
I am not a hardware expert and can only speculate, but found the points interesting.
Yes, you can. But first, check that you have modified your syslog.conf to not sync, as described in the last question of the previous section. To debug disk activity, you can do:
echo 1 > /proc/sys/vm/block_dump
(Warning: you must disable syslogd before you do this, or you must make sure that kernel output is not logged. If you forget this, your system may get into a feedback loop, where syslogd causes disk activity, this causes kernel output, and this causes syslogd to do more disk activity, etcetera!)
This enables file/disk activity debugging in the kernel. You can read the output using dmesg. When you're done, disable block dump using
echo 0 > /proc/sys/vm/block_dump