I just build my NAS and the first problem came up.
I'm using 2x WD Red 3TB drives, they are recognized by Greyhole and everything works fine.
However, i can't spin them down. They are constantly running, which isn't really good.
I already tried shuting them down by:
Code: Select all
nas@NAS:~$ sudo hdparm -y /dev/sdb
/dev/sdb:
issuing standby command
nas@NAS:~$ sudo hdparm -C /dev/sdb
/dev/sdb:
drive state is: active/idle
Apparently, the problem is hddtemp, which is the only process, accessing the disk:
Code: Select all
nas@NAS:~$ sudo lsof /dev/sdb
lsof: WARNING: can't stat() fuse.gvfs-fuse-daemon file system /home/nas/.gvfs
Output information may be incomplete.
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
hddtemp 1337 root 4r BLK 8,16 0t0 7400 /dev/sdb
nas@NAS:~$ sudo kill 1337
nas@NAS:~$ sudo lsof /dev/sdb
lsof: WARNING: can't stat() fuse.gvfs-fuse-daemon file system /home/nas/.gvfs
Output information may be incomplete.
Does anybody know, what to do?
Thanks