blxkspell Posted May 23, 2019 Share Posted May 23, 2019 Is there any possibility to monitor the apps which access my external HDD as I enabled standby for hard drives in the energy saving settings BUT they keep spinning up randomly (every 5-10 min). This is very annoying because of the noise and it certainly cant be to good for a HDD to spin up/ down - up/ down ... all the time. I have even set them to be unmounted with Paragon actually as I don't need them in macOS (they are Windows NTFS drives). Hope there is a possibility to completely turn them off. Link to comment https://www.insanelymac.com/forum/topic/338897-hdd-keeps-spinning-up/ Share on other sites More sharing options...
chris1111 Posted May 23, 2019 Share Posted May 23, 2019 (edited) My opinion is the best way is create a LaunchAgents with a simple app create with an Applescript On that way the Volumes will be Unmount at each Login Your only have to edit the name of the volume in the Applescript then Save Now put this app on your Applications Put the com.Unmount.plist on Root volume ➣ /Library/LaunchAgents Double click to Executable Agents (You can see the contant of the script, by opening with textedit) ⬇︎ #!/bin/bash # This is useful for loading launch daemons and agents. cd /Library/LaunchAgents sudo chown root:wheel com.Unmount.plist sudo chmod 644 com.Unmount.plist sudo launchctl load /Library/LaunchAgents/com.Unmount.plist exit 0 Attaching here the necessary files I just test right now and it work com.Unmount.plist.zip Executable Agents.zip Unmount.zip Edited May 23, 2019 by chris1111 Link to comment https://www.insanelymac.com/forum/topic/338897-hdd-keeps-spinning-up/#findComment-2674877 Share on other sites More sharing options...
chris1111 Posted May 23, 2019 Share Posted May 23, 2019 (edited) Another easy way is to create a LoginHook Put the attaching script in Home Edit the script with the name of Windows volumes #!/bin/bash diskutil Unmount /Volumes/"Windows-10" Open the Terminal.app and Type this chmod +x ~/LoginHook.sh sudo mv ~/LoginHook.sh /usr/local/bin/LoginHook.sh sudo defaults write com.apple.loginwindow LoginHook /usr/local/bin/LoginHook.sh Reboot LoginHook.sh.zip Edited May 23, 2019 by chris1111 Link to comment https://www.insanelymac.com/forum/topic/338897-hdd-keeps-spinning-up/#findComment-2674900 Share on other sites More sharing options...
blxkspell Posted May 23, 2019 Author Share Posted May 23, 2019 Thanks for the detailed explanation but this unfortunately doesnt help me out... The paragon software already unmounts my drives after login. In fact some random apps still try to access them randomly even they are unmounted and dont show up in finder. Link to comment https://www.insanelymac.com/forum/topic/338897-hdd-keeps-spinning-up/#findComment-2674926 Share on other sites More sharing options...
chris1111 Posted May 23, 2019 Share Posted May 23, 2019 3 minutes ago, blxkspell said: Thanks for the detailed explanation but this unfortunately doesnt help me out... The paragon software already unmounts my drives after login. In fact some random apps still try to access them randomly even they are unmounted and dont show up in finder. delete the app use this LoginHook Link to comment https://www.insanelymac.com/forum/topic/338897-hdd-keeps-spinning-up/#findComment-2674928 Share on other sites More sharing options...
blxkspell Posted May 23, 2019 Author Share Posted May 23, 2019 Ok thank you again for your help. But as I said, they are ALREADY unmounted. No need to unmount them twice. My problem is that: 15 minutes ago, blxkspell said: In fact some random apps still try to access them randomly even they are unmounted and dont show up in finder. So what I need is to restrict the OS or any stupid apps to randomly access my HDDs Link to comment https://www.insanelymac.com/forum/topic/338897-hdd-keeps-spinning-up/#findComment-2674929 Share on other sites More sharing options...
chris1111 Posted May 23, 2019 Share Posted May 23, 2019 3 minutes ago, blxkspell said: Ok thank you again for your help. But as I said, they are ALREADY unmounted. No need to unmount them twice. My problem is that: So what I need is to restrict the OS or any stupid apps to randomly access my HDDs Your are using Paragon to Unmount this is the problem because the Drive is use by paragon and all Sh...it stuff.... Dont use paragon to unmount the drive Link to comment https://www.insanelymac.com/forum/topic/338897-hdd-keeps-spinning-up/#findComment-2674930 Share on other sites More sharing options...
blxkspell Posted May 23, 2019 Author Share Posted May 23, 2019 well it doesnt make any difference. I disabled paragon and still the drive spins up every 5-10 min being unmounted Link to comment https://www.insanelymac.com/forum/topic/338897-hdd-keeps-spinning-up/#findComment-2674934 Share on other sites More sharing options...
blxkspell Posted May 26, 2019 Author Share Posted May 26, 2019 I have found out what spins up my HDD all the time! It seems to be the HWMonitor app which is running all the time! The SMART check thing causes my problem as it was set to 10min. The max time is 30min which is quite better but still annoying. Is there a way to completely disable it? Link to comment https://www.insanelymac.com/forum/topic/338897-hdd-keeps-spinning-up/#findComment-2675138 Share on other sites More sharing options...
chris1111 Posted May 26, 2019 Share Posted May 26, 2019 Are you sure you have not enable the SMART in BIOS ? I have always this setup disable Link to comment https://www.insanelymac.com/forum/topic/338897-hdd-keeps-spinning-up/#findComment-2675145 Share on other sites More sharing options...
Recommended Posts