Is there a way to see which processes are originating from which drives? I dont think this is possible with activity monitor, unless I am missing something. I am trying to deduce the cause of my drive spinning up.
Is there a way to see which processes are originating from which drives? I dont think this is possible with activity monitor, unless I am missing something. I am trying to deduce the cause of my drive spinning up.
and see a real-time log of every disk access along with which process/application is responsible for it. It can be a bit overwhelming to watch, but the answer you're looking for will definitely be in there.
and see a real-time log of every disk access along with which process/application is responsible for it. It can be a bit overwhelming to watch, but the answer you're looking for will definitely be in there.
Use the 'lsof' command, specifically with the '-c' flag. This will get you all files that that process has open, and that should include its executable with a full path. For example, looking for Safari:
Code:
lsof -c Safari
Edit: Woops... misread the question, so the answer would be: