blog:odborny:2024-11-10-completely_disable_macos_crashreport
Completely disable macOS CrashReport
While you can Disable OS X crashreporter dialog after application force-quit, this won't prevent CrashReport process from actually starting up after application crash to gather the information and create log.
This can from seconds to dozens of minutes depending on size of the process which crashed.
Preventing CrashReport process from starting up
To disable crash reporting process, write into Terminal:
launchctl unload -w /System/Library/LaunchAgents/com.apple.ReportCrash.plist sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.ReportCrash.Root.plist
To re‑enable crash reporting process, write into Terminal:
launchctl load -w /System/Library/LaunchAgents/com.apple.ReportCrash.plist sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.ReportCrash.Root.plist
Note: There are several sources (1, 2, 3, 4) which helped me to figure this out. You might want to read them too.
Comments
blog/odborny/2024-11-10-completely_disable_macos_crashreport.txt · Posledná úprava: 2024/11/10 11:51 od Róbert Toth