Den 19. des. 2015 01:01, skrev Dale: ... > It sounds like the heads are doing random > reads/writes and the heads are moving but doing so noisily. Thing is, > there is no drive activity according to gkrellm or iotop. All the > drives should be basically idle. ... > Model=ST3000DM001 What kind of file system ? How full ? Raid ? lvm ? What kind of SATA controller? There is lots of stuff about these things I don't know, but I /do/ know all those cause different quirks and telling more specifics would maybe prod someone with experience with your particular type of set-up to chime in.
Just as an example, ext4 will delay some of the work on a newly formatted drive. Lots of other system activity can cause background jobs. If this coincides with a bad sector on a drive, you get noise, access latency and system wait. This system wait will not necessarily be counted against any specific process in "top(1)" (depending on how your kernel was compiled) , so you can even get 0%idle and still have no specific process sticking out in "top". Watch your logs and kernel messages for access errors. Difficulties in reading might cause retries without actually timing out. If this is your problem, it will persist until that sector is marked as failing AND SOMETHING IS WRITTEN TO IT. The sector will not be mapped out until something gets written to it. Also, if you are running raid, google around for permutations of "smartctl -T permissive -l scterc,70,70", seeing as this drive <http://www.seagate.com/www-content/datasheets/pdfs/desktop-hdd-8tbDS1770-7-1511UK-en_GB.pdf> is not a server type drive. But, remember, NEVER blindly run something on your system that some random guy sent you by email without understanding what it does. :-D .