I'm sorry if this question is really stupid, but this is basically what I have been thinking about constantly: Suppose I run : cat ./somefile.txt a few hundred times a second. How much faster is my harddrive going to die?
|
Seven. But seriously, it's hard enough to know how long a disk will last while idling let alone under heavy load. There's no answer other than to say it will probably wear the disk faster. The better argument against this is it would generally be quite slow. Why would you need to hammer the disk like that? If you're looking to find out when something changes, perhaps look at inotify which is a kernel-based file event system that can call some code when something happens, negating the need to hammer the disk. There are wrappers like pyinotify to make things easier. |
|||
|
|
It may have no effect at all, depending on the size of Even if running that command repeatedly does have an effect on your drive's lifetime, it will be due to the file being read repeatedly. Whether you use |
|||
|
|
This reminds me of that study Google did about Harddrives. Since they go through a lot of harddrives, they did an informal study to see if there was any significant correlation between the lifetime of a HD and a list of factors that include temperature, power cycles, activity levels, etc. The only significant factor they found was age, I believe. The study is called "Failure Trends in..." something something. I wouldn't worry too much about HD usage eating your drive. |
|||||
|
: cat somefile.txtdoes not runcat. The:built-in does nothing at all. – grawity Jul 7 '11 at 13:50: cat somefile.txt > otherfile.txtcreates otherfile. – Blub Jul 7 '11 at 13:58: cat somefile.txt > otherfile.txtwill not copy the contents ofsomefile.txttootherfile.txt;otherfile.txtwill be present after the command, but will be empty (even if it originally had contents).: `cat somefile.txt > otherfile.txt`will copy the contents ofsomefile.txttootherfile.txtwithout displaying the output. See: gnu.org/software/bash/manual/html_node/… and stackoverflow.com/questions/3224878/… – dr jimbob Jul 7 '11 at 18:28