Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

Final Cut Pro (10.6.5) - crash at various stages

Hi!

After updating to macOS Ventura 13.2, the program started to crash.

what could be the reason?

I attached the log


let me know if you need to generate a report via EtreCheckPro


-------------------------------------

Translated Report (Full Report Below)

-------------------------------------


Process: Final Cut Pro [1016]

Path: /Applications/Final Cut Pro.app/Contents/MacOS/Final Cut Pro

Identifier: com.apple.FinalCut

Version: 10.6.5 (405627)

Build Info: ProEditor-40560027015000000~4 (18H41)

Code Type: X86-64 (Native)

Parent Process: launchd [1]

User ID: 502


Date/Time: 2023-02-13 13:26:00.1287 +0200

OS Version: macOS 13.2 (22D49)

Report Version: 12

Bridge OS Version: 7.2 (20P3045)

Anonymous UUID: 70C5D1B6-40DB-3234-5039-B4E1806F1C4F



Time Awake Since Boot: 1600 seconds


System Integrity Protection: enabled


Crashed Thread: 0 Dispatch queue: com.apple.main-thread


Exception Type: EXC_BAD_INSTRUCTION (SIGILL)

Exception Codes: 0x0000000000000001, 0x0000000000000000


Termination Reason: Namespace SIGNAL, Code 4 Illegal instruction: 4

Terminating Process: exc handler [1016]


Application Specific Backtrace 0:

0 CoreFoundation 0x00007ff818bc63eb __exceptionPreprocess + 242

1 libobjc.A.dylib 0x00007ff818712e25 objc_exception_throw + 48

2 CoreFoundation 0x00007ff818bc6250 +[NSException raise:format:] + 214

3 AppKit 0x00007ff81bcd4245 -[NSWindow(NSDisplayCycle) _postWindowNeedsUpdateConstraintsUnlessPostingDisabled] + 1962

4 AppKit 0x00007ff81bcbb79a -[NSView _informContainerThatSubviewsNeedUpdateConstraints] + 60

5 AppKit 0x00007ff81bcbb79a -[NSView _informContainerThatSubviewsNeedUpdateConstraints] + 60

6 AppKit 0x00007ff81bcbb79a -[NSView _informContainerThatSubviewsNeedUpdateConstraints] + 60

7 AppKit 0x00007ff81bcbb79a -[NSView _informContainerThatSubviewsNeedUpdateConstraints] + 60

8 AppKit 0x00007ff81bcbb79a -[NSView _informContainerThatSubviewsNeedUpdateConstraints] + 60

9 AppKit 0x00007ff81bcbb79a -[NSView _informContainerThatSubviewsNeedUpdateConstraints] + 60

10 AppKit 0x00007ff81bcbb79a -[NSView _informContainerThatSubviewsNeedUpdateConstraints] + 60

11 AppKit 0x00007ff81bcbb79a -[NSView _informContainerThatSubviewsNeedUpdateConstraints] + 60

12 AppKit 0x00007ff81bcbb79a -[NSView _informContainerThatSubviewsNeedUpdateConstraints] + 60

13 AppKit 0x00007ff81bcbb79a -[NSView _informContainerThatSubviewsNeedUpdateConstraints] + 60

14 AppKit 0x00007ff81bcbb79a -[NSView _informContainerThatSubviewsNeedUpdateConstraints] + 60

15 AppKit 0x00007ff81bcbb79a -[NSView _informContainerThatSubviewsNeedUpdateConstraints] + 60

16 AppKit 0x00007ff81bcbb79a -[NSView _informContainerThatSubviewsNeedUpdateConstraints] + 60

17 AppKit 0x00007ff81bcbb79a -[NSView _informContainerThatSubviewsNeedUpdateConstraints] + 60

18 AppKit 0x00007ff81bcbb79a -[NSView _informContainerThatSubviewsNeedUpdateConstraints] + 60

19 AppKit 0x00007ff81bcbb79a -[NSView _informContainerThatSubviewsNeedUpdateConstraints] + 60

20 AppKit 0x00007ff81bcbb79a -[NSView _informContainerThatSubviewsNeedUpdateConstraints] + 60

21 AppKit 0x00007ff81bcbb79a -[NSView _informContainerThatSubviewsNeedUpdateConstraints] + 60

22 AppKit 0x00007ff81bcbb79a -[NSView _informContainerThatSubviewsNeedUpdateConstraints] + 60

23 AppKit 0x00007ff81bcbb79a -[NSView _informContainerThatSubviewsNeedUpdateConstraints] + 60

24 AppKit 0x00007ff81bcbb79a -[NSView _informContainerThatSu

Posted on Feb 13, 2023 6:03 AM

Reply
Question marked as Top-ranking reply

Posted on Feb 13, 2023 6:13 AM

There is a known problem in 13.2. The number of items in an event cannot exceed 300 for some systems (some can go higher).


This indicates that problem


informContainerThatSubviewsNeedUpdateConstraints


You can try to reorganize your library inside FCP to reduce the numbers in each event and see if that helps.

Similar questions

15 replies
Sort By: 
Question marked as Top-ranking reply

Feb 13, 2023 6:13 AM in response to dymarchuk

There is a known problem in 13.2. The number of items in an event cannot exceed 300 for some systems (some can go higher).


This indicates that problem


informContainerThatSubviewsNeedUpdateConstraints


You can try to reorganize your library inside FCP to reduce the numbers in each event and see if that helps.

Reply

Feb 13, 2023 12:07 PM in response to Tom Wolsky

FWIW, a few more technical details on the problem: While causally related to an approx 300 clip per event threshold, the underlying issue is apparently related to the AppKit framework "constraint" system. I suspect this changed (maybe inadvertently) in Ventura 13.2, causing FCP to crash.


In GUI programming, constraints control how UI elements are positioned and resized in response to changes in the size and shape of the window or screen. There is a facility called Auto Layout which allows the programmer to define the relationships between UI elements by adding constraints, such as "this element should be centered horizontally in its parent view". Auto Layout then uses these constraints to calculate the position and size of the elements in your user interface at runtime. The goal is to make it easier to create flexible, adaptive user interfaces that look good on different screen sizes.


Related concepts are views and subviews. A view is like a container for other views or graphical elements, such as images, text, and buttons. A subview is a child of the parent view, and the parent view is responsible for positioning and sizing the subviews.


It appears there were calls to update column separator positions (maybe related to populating clips in the Event Browser) then for some reason AppKit disabled a runtime engine related to Auto Layout, maybe for some valid reason. After that it got stuck in a recursive call to -[NSView _informContainerThatSubviewsNeedUpdateConstraints], then crashed.


Observationally it also seems related to the project, however the crash is probably triggered by the underlying UI code that manages the project and Event Viewer UI elements.


I thought all those app frameworks are pulled into the executable at build time, which means nothing in FCP has changed since 10.6.5 was released on 10-24-22. Something at a lower level in the OS that supports those must have changed in Ventura 13.2.

Reply

Feb 13, 2023 2:44 PM in response to Tom Wolsky

I thoroughly tested FCP 10.6.5 on Ventura 13.2.1 using up to 15,000 clips in a single event and 15,000 clips on a single 42-hour timeline. It got a bit sluggish (not unexpected) but it did not crash. That's quite an improvement from a 300 clip-per-event threshold!!

Reply

Feb 22, 2023 12:00 AM in response to dymarchuk

You have the ghastly "cleanmymac". Completely uninstall this.


You have "ccleaner" - which I gather is a necessity on windows pcs, but certainly not in mac; you don't need or want this running in the background permanently.



You have chrome, and its evil keystone agents.

Completely uninstall - see https://chromeisbad.com for an explanation of the harm they do and how to uninstall them completely. It is not enough to drag chrome to the trash.


After uninstalling, you will need to delete FCP and download a fresh copy from the App Store.





Reply

Feb 22, 2023 7:11 AM in response to dymarchuk

If the Mac computer hangs and turns itself off, that is most likely a system or hardware problem. The fact FCP is running is coincidental. If bridge collapses when a heavy but legally loaded truck drives across, it is not the truck's fault. The bridge has a defect. FCP is imposing a normal, "legal" operational load on the underlying system.


Like other modern operating systems, MacOS enforces strict isolation between the address space of each process. This is ultimately governed by the memory management hardware inside the CPU. No user-mode app whether by accident or intent can crash the operating system. If so all systems would be crashing every day. The exception is an app using a kernel extension which becomes part of the OS full total hardware and memory access. Those can easily crash the OS.


This should be pursued with MacOS or hardware support. There is no source code change in FCP that will avoid a MacOS kernel panic or shutdown.


If your machine shuts down or restarts spontaneously, the MacOS kernel panic info is normally written to a file of the format Kernel_DATE-TIME_user.panic, which is contained in /Library/Logs/DiagnosticReports. It should also be visible in the MacOS Console app, I think under the category "Crash Reports". However sometimes MacOS will not be able to write the file. As a precaution if you see any crash dialog during the crash or after the system reboots, save that to a file or take a photo with your cell phone.


My first guess after examining the Etrecheck output is a kernel extension. You have one for VirtualBox. Any bug in any kernel extension can crash MacOS. That is why Apple has deprecated those for several years and it is incumbent upon those application developers to update their apps to use the new system extension method, not a kernel extension. System extensions run in user mode, not kernel mode and are much safer.

Reply

Feb 21, 2023 11:40 PM in response to Luis Sequeira1

EtreCheckPro version: 6.5.2 (6F007) Report generated: 2023-02-20 15:48:11 Download EtreCheckPro from https://etrecheck.com Runtime: 1:52 Performance: Excellent Problem: Computer is restarting Major Issues: Anything that appears on this list needs immediate attention. No Time Machine backup - Time Machine backup not found. Security updates disabled - Security updates are disabled. This computer is at risk of malware infection. Apple security disabled - Apple security software is disabled. This computer is at risk of malware infection. Minor Issues: These issues do not need immediate attention but they may indicate future problems or opportunities for improvement. Unsigned files - There are unsigned software files installed. Apple has said that unsigned software will not run by default in a future version of the operating system. System modifications - There are a large number of system modifications running in the background. Insufficient permissions - EtreCheck running under a standard user. Diagnostic information may not be available. x86-only Apps - This computer has x86-only apps might not work on future versions of the operating system. Kernel extensions present - This computer has kernel extensions that may not work in the future. Hardware Information: iMac (Retina 5K, 27-inch, 2020) iMac Model: iMac20,1 3,6 GHz 10-Core Intel Core i9 (i9-10910) CPU: 10-core 128 GB RAM - At maximum Video Information: AMD Radeon Pro 5500 XT - VRAM: 8 GB iMac (built-in) 5120 x 2880 Drives: disk0 - APPLE SSD AP1024N 1.00 TB (Solid State - TRIM: Yes) Internal PCI-Express 8.0 GT/s x4 NVM Express disk0s1 - EFI [EFI] 315 MB disk0s2 [APFS Container] 1.00 TB disk1 [APFS Virtual drive] 1.00 TB (Shared by 6 volumes) disk1s1 (APFS) [APFS Container] (Shared - 8.94 GB used) disk1s1s1 - Macintosh HD (APFS) [APFS Snapshot] (Shared - 8.94 GB used) disk1s2 - Macintosh HD - Data (APFS) [APFS Virtual drive] (Shared - 534.75 GB used) disk1s3 - Preboot (APFS) [APFS Preboot] (Shared - 2.14 GB used) disk1s4 - Recovery (APFS) [Recovery] (Shared - 1.13 GB used) disk1s5 - VM (APFS) [APFS VM] (Shared - 20 KB used) disk1s6 - Update (APFS) (Shared - 11 MB used) disk2 - StoreJet Transcend 4.00 TB External USB 5 Gbit/s USB disk2s1 134 MB disk2s2 - T*******d 4.00 TB disk3 - TOSHIBA External USB 3.0 4.00 TB External USB 5 Gbit/s USB disk3s1 134 MB disk3s2 - T*********T (MS-DOS FAT12) 4.00 TB Mounted Volumes: disk1s1s1 - Macintosh HD [APFS Snapshot] 1.00 TB (Shared - 8.94 GB used, 453.05 GB free) APFS Mount point: / Read-only: Yes disk1s2 - Macintosh HD - Data [APFS Virtual drive] 1.00 TB (Shared - 534.75 GB used, 453.05 GB free) APFS Mount point: /System/Volumes/Data Encrypted disk1s3 - Preboot [APFS Preboot] 1.00 TB (Shared - 2.14 GB used, 453.05 GB free) APFS Mount point: /System/Volumes/Preboot disk1s5 - VM [APFS VM] 1.00 TB (Shared - 20 KB used, 453.05 GB free) APFS Mount point: /System/Volumes/VM disk1s6 - Update 1.00 TB (Shared - 11 MB used, 453.05 GB free) APFS Mount point: /System/Volumes/Update disk2s2 - T*******d 4.00 TB Mount point: /Volumes/T*******d disk3s2 - T*********T 4.00 TB MS-DOS FAT12 Mount point: /Volumes/T*********T Network: Interface en0: Ethernet Interface en1: Wi-Fi Interface bridge0: Thunderbolt Bridge Interface en5: iPhone System Software: 13.2.1 13.2.1 (22D68) Time since boot: Less than an hour Notifications: EtreCheckPro.app one notification Security: Gatekeeper: App Store and identified developers System Integrity Protection: Enabled Security Updates: Disabled â ¨ Antivirus software: None! Unsigned Files: Launchd: /Library/LaunchAgents/com.bjango.istatmenusagent.plist Executable: /Library/Application Support/iStat Menus 5/iStatMenusAgent.app/Contents/MacOS/iStatMenusAgent Details: Exact match found in the legitimate list - probably OK Launchd: /Library/LaunchDaemons/org.virtualbox.startup.plist Executable: /Library/Application Support/VirtualBox/LaunchDaemons/VirtualBoxStartup.sh restart Details: Exact match found in the legitimate list - probably OK Launchd: /Library/LaunchAgents/com.bjango.istatmenusnotifications.plist Executable: /Library/Application Support/iStat Menus 5/iStat Menus Notifications.app/Contents/MacOS/iStat Menus Notifications Details: Exact match found in the legitimate list - probably OK Launchd: /Library/LaunchDaemons/com.bjango.istatmenusdaemon.plist Executable: /Library/Application Support/iStat Menus 5/iStatMenusDaemon Details: Exact match found in the legitimate list - probably OK Running app: /Applications/CleanMyMac X.app/Contents/Library/LoginItems/CleanMyMac X Menu.app Running app: /Applications/CleanMyMac X.app/Contents/Library/LoginItems/CleanMyMac X Menu.app/Contents/Library/LoginItems/CleanMyMac X HealthMonitor.app Login Item: /Applications/CleanMyMac X.app/Contents/Library/LoginItems/CleanMyMac X Menu.app/Contents/Library/LoginItems/CleanMyMac X HealthMonitor.app Login Item: /Applications/CleanMyMac X.app/Contents/Library/LoginItems/CleanMyMac X Menu.app Plugin: ~/Library/Internet Plug-Ins/Folx3Plugin.plugin Apps: 12 Old Applications: 8 x86-only apps Kernel Extensions: /Library/Application Support/VirtualBox [Not Loaded] VBoxDrv.kext - org.virtualbox.kext.VBoxDrv (Oracle America, Inc., 6.1.26) [Not Loaded] VBoxNetAdp.kext - org.virtualbox.kext.VBoxNetAdp (Oracle America, Inc., 6.1.26) [Not Loaded] VBoxNetFlt.kext - org.virtualbox.kext.VBoxNetFlt (Oracle America, Inc., 6.1.26) [Not Loaded] VBoxUSB.kext - org.virtualbox.kext.VBoxUSB (Oracle America, Inc., 6.1.26) System Launch Daemons: [Not Loaded] 36 Apple tasks [Loaded] 199 Apple tasks [Running] 149 Apple tasks System Launch Agents: [Not Loaded] 19 Apple tasks [Loaded] 229 Apple tasks [Running] 134 Apple tasks Launch Daemons: [Loaded] com.adobe.acc.installer.v2.plist (Adobe Inc. - installed 2021-10-11) [Running] com.adobe.agsservice.plist (Adobe Inc. - installed 2022-10-11) [Running] com.bjango.istatmenusdaemon.plist (? 5ee3d37a - installed 2022-12-22) [Loaded] com.microsoft.autoupdate.helper.plist (Microsoft Corporation - installed 2022-12-14) [Loaded] com.microsoft.office.licensingV2.helper.plist (Microsoft Corporation - installed 2022-05-26) [Loaded] com.philandro.anydesk.Helper.plist (philandro Software GmbH - installed 2021-11-11) [Not Loaded] com.piriform.ccleaner.engine.xpc.plist (Piriform Ltd - installed 2022-12-22) [Not Loaded] com.piriform.ccleaner.services.submit.plist (Piriform Ltd - installed 2022-12-22) [Not Loaded] com.piriform.ccleaner.services.xpc.plist (Piriform Ltd - installed 2022-12-22) [Not Loaded] com.piriform.ccleaner.uninstall.plist (Piriform Ltd - installed 2022-12-22) [Not Loaded] com.piriform.ccleaner.update.xpc.plist (Piriform Ltd - installed 2022-12-22) [Not Loaded] org.virtualbox.startup.plist (? 700b9385 - installed 2021-10-10) Launch Agents: [Not Loaded] com.adobe.AdobeCreativeCloud.plist (Adobe Inc. - installed 2021-10-11) [Running] com.adobe.GC.AGM.plist (Adobe Inc. - installed 2022-10-11) [Not Loaded] com.adobe.GC.Invoker-1.0.plist (Adobe Inc. - installed 2022-10-11) [Not Loaded] com.bjango.istatmenusagent.plist (? 9cff4b35 - installed 2022-12-22) [Not Loaded] com.bjango.istatmenusnotifications.plist (? 70a011cf - installed 2022-12-22) [Not Loaded] com.microsoft.update.agent.plist (Microsoft Corporation - installed 2022-12-14) [Not Loaded] com.piriform.ccleaner.plist (Piriform Ltd - installed 2022-12-22) [Not Loaded] com.piriform.ccleaner.update.plist (Piriform Ltd - installed 2022-12-22) User Launch Agents: [Not Loaded] com.adobe.GC.Invoker-1.0.plist (Adobe Inc. - installed 2022-10-11) [Not Loaded] com.adobe.ccxprocess.plist (Adobe Systems, Inc. - installed 2021-10-11) [Not Loaded] com.google.keystone.agent.plist (Google LLC - installed 2022-10-27) [Not Loaded] com.google.keystone.xpcservice.plist (Google LLC - installed 2022-10-27) User Login Items: [Loaded] CleanMyMac X Menu (? - installed 2021-10-12) Modern Login Item /Applications/CleanMyMac X.app/Contents/Library/LoginItems/CleanMyMac X Menu.app [Running] CleanMyMac X HealthMonitor (? - installed 2021-10-12) Modern Login Item /Applications/CleanMyMac X.app/Contents/Library/LoginItems/CleanMyMac X Menu.app/Contents/Library/LoginItems/CleanMyMac X HealthMonitor.app [Not Loaded] Folx Schedule Helper (ELTIMA LLC - installed 2021-10-08) Modern Login Item /Applications/Folx.app/Contents/Library/LoginItems/FolxScheduleHelper.app [Running] Google Chrome (Google LLC - installed 2022-12-16) Application /Applications/Google Chrome.app [Loaded] LaunchAtLogin (Serhiy Mytrovtsiy - installed 2022-12-18) Modern Login Item /Applications/Stats.app/Contents/Library/LoginItems/LaunchAtLogin.app [Not Loaded] ViberLoginHelper (Viber Media SARL. - installed 2021-09-10) Modern Login Item /Applications/Viber.app/Contents/Library/LoginItems/ViberLoginHelper.app [Loaded] QuickTime Player (Apple - installed 2023-02-09) Application /System/Applications/QuickTime Player.app Internet Plug-ins: AdobeAAMDetect: 3.0.0.0 (Adobe Inc. - installed 2021-10-11) User Internet Plug-ins: Folx3Plugin: 3.0.1 (? - installed 2022-12-19) Backup: Time Machine Not Configured! One other local snapshot Performance: System Load: 5.99 (1 min ago) 2.79 (5 min ago) 1.13 (15 min ago) Nominal I/O speed: 0.25 MB/s File system: 13.14 seconds Write speed: 2597 MB/s Read speed: 2649 MB/s CPU Usage Snapshot: Type Overall System: 0 % User: 1 % Idle: 99 % Top Processes Snapshot by CPU: Process (count) CPU (Source - Location) CleanMyMac X Menu.app 57.00 % (? - /Applications/CleanMyMac X.app) EtreCheckPro 11.00 % (Etresoft, Inc.) WindowServer 6.18 % (Apple) dataaccessd 5.40 % (Apple) kernel_task 1.63 % (Apple) Top Processes Snapshot by Memory: Process (count) RAM usage (Source - Location) EtreCheckPro 986 MB (Etresoft, Inc.) Google Chrome Helper (Renderer) (4) 382 MB (Google LLC) Finder 205 MB (Apple) Google Chrome 200 MB (Google LLC) CleanMyMac X HealthMonitor.app 193 MB (? - /Applications/CleanMyMac X.app) Top Processes Snapshot by Network Use: Process Input / Output (Source - Location) corespeechd 1016 B / 649 KB (Apple) SubmitDiagInfo 535 KB / 1 KB (Apple) nsurlsessiond 65 KB / 34 KB (Apple) mDNSResponder 40 KB / 38 KB (Apple) trustd 52 KB / 21 KB (Apple) Top Processes Snapshot by Energy Use: Process (count) Energy (0-100) (Source - Location) WindowServer 4 (Apple) bluetoothd 1 (Apple) Stats 0 (Serhiy Mytrovtsiy) NotificationCenter 0 (Apple) nearbyd 0 (Apple) Virtual Memory Information: Physical RAM: 128 GB Free RAM: 114.85 GB Used RAM: 9.10 GB Cached files: 4.06 GB Available RAM: 118.90 GB Swap Used: 0 B Software Installs (past 60 days): Install Date Name (Version) 2023-02-03 XProtectPayloads (89) 2023-02-03 macOS 13.2 (13.2) 2023-02-14 macOS 13.2.1 (13.2.1) Diagnostics Information (past 7-30 days): Directory /Library/Logs/DiagnosticReports is not accessible. Run as an administrator account to see more information. End of report
EtreCheckPro version: 6.5.2 (6F007) Report generated: 2023-02-20 15:52:47 Download EtreCheckPro from https://etrecheck.com Runtime: 1:48 Performance: Excellent Problem: No problem - just checking Major Issues: Anything that appears on this list needs immediate attention. No Time Machine backup - Time Machine backup not found. Security updates disabled - Security updates are disabled. This computer is at risk of malware infection. Apple security disabled - Apple security software is disabled. This computer is at risk of malware infection. Minor Issues: These issues do not need immediate attention but they may indicate future problems or opportunities for improvement. Unsigned files - There are unsigned software files installed. Apple has said that unsigned software will not run by default in a future version of the operating system. System modifications - There are a large number of system modifications running in the background. Runaway user process - A user process is using a large percentage of your CPU. Insufficient permissions - EtreCheck running under a standard user. Diagnostic information may not be available. x86-only Apps - This computer has x86-only apps might not work on future versions of the operating system. Kernel extensions present - This computer has kernel extensions that may not work in the future. Hardware Information: iMac (Retina 5K, 27-inch, 2020) iMac Model: iMac20,1 3,6 GHz 10-Core Intel Core i9 (i9-10910) CPU: 10-core 128 GB RAM - At maximum Video Information: AMD Radeon Pro 5500 XT - VRAM: 8 GB iMac (built-in) 5120 x 2880 Drives: disk0 - APPLE SSD AP1024N 1.00 TB (Solid State - TRIM: Yes) Internal PCI-Express 8.0 GT/s x4 NVM Express disk0s1 - EFI [EFI] 315 MB disk0s2 [APFS Container] 1.00 TB disk1 [APFS Virtual drive] 1.00 TB (Shared by 6 volumes) disk1s1 (APFS) [APFS Container] (Shared - 8.94 GB used) disk1s1s1 - Macintosh HD (APFS) [APFS Snapshot] (Shared - 8.94 GB used) disk1s2 - Macintosh HD - Data (APFS) [APFS Virtual drive] (Shared - 534.76 GB used) disk1s3 - Preboot (APFS) [APFS Preboot] (Shared - 2.14 GB used) disk1s4 - Recovery (APFS) [Recovery] (Shared - 1.13 GB used) disk1s5 - VM (APFS) [APFS VM] (Shared - 20 KB used) disk1s6 - Update (APFS) (Shared - 11 MB used) disk2 - StoreJet Transcend 4.00 TB External USB 5 Gbit/s USB disk2s1 134 MB disk2s2 - T*******d 4.00 TB disk3 - TOSHIBA External USB 3.0 4.00 TB External USB 5 Gbit/s USB disk3s1 134 MB disk3s2 - T*********T (MS-DOS FAT12) 4.00 TB Mounted Volumes: disk1s1s1 - Macintosh HD [APFS Snapshot] 1.00 TB (Shared - 8.94 GB used, 453.03 GB free) APFS Mount point: / Read-only: Yes disk1s2 - Macintosh HD - Data [APFS Virtual drive] 1.00 TB (Shared - 534.76 GB used, 453.03 GB free) APFS Mount point: /System/Volumes/Data Encrypted disk1s3 - Preboot [APFS Preboot] 1.00 TB (Shared - 2.14 GB used, 453.03 GB free) APFS Mount point: /System/Volumes/Preboot disk1s5 - VM [APFS VM] 1.00 TB (Shared - 20 KB used, 453.03 GB free) APFS Mount point: /System/Volumes/VM disk1s6 - Update 1.00 TB (Shared - 11 MB used, 453.03 GB free) APFS Mount point: /System/Volumes/Update disk2s2 - T*******d 4.00 TB Mount point: /Volumes/T*******d disk3s2 - T*********T 4.00 TB MS-DOS FAT12 Mount point: /Volumes/T*********T Network: Interface en0: Ethernet Interface en1: Wi-Fi Interface bridge0: Thunderbolt Bridge Interface en5: iPhone System Software: 13.2.1 13.2.1 (22D68) Time since boot: Less than an hour Notifications: EtreCheckPro.app 2 notifications Security: Gatekeeper: App Store and identified developers System Integrity Protection: Enabled Security Updates: Disabled â ¨ Antivirus software: None! Unsigned Files: Launchd: /Library/LaunchDaemons/org.virtualbox.startup.plist Executable: /Library/Application Support/VirtualBox/LaunchDaemons/VirtualBoxStartup.sh restart Details: Exact match found in the legitimate list - probably OK Launchd: /Library/LaunchDaemons/com.bjango.istatmenusdaemon.plist Executable: /Library/Application Support/iStat Menus 5/iStatMenusDaemon Details: Exact match found in the legitimate list - probably OK Launchd: /Library/LaunchAgents/com.bjango.istatmenusagent.plist Executable: /Library/Application Support/iStat Menus 5/iStatMenusAgent.app/Contents/MacOS/iStatMenusAgent Details: Exact match found in the legitimate list - probably OK Launchd: /Library/LaunchAgents/com.bjango.istatmenusnotifications.plist Executable: /Library/Application Support/iStat Menus 5/iStat Menus Notifications.app/Contents/MacOS/iStat Menus Notifications Details: Exact match found in the legitimate list - probably OK Running app: /Applications/CleanMyMac X.app/Contents/Library/LoginItems/CleanMyMac X Menu.app Running app: /Applications/CleanMyMac X.app/Contents/Library/LoginItems/CleanMyMac X Menu.app/Contents/Library/LoginItems/CleanMyMac X HealthMonitor.app Login Item: /Applications/CleanMyMac X.app/Contents/Library/LoginItems/CleanMyMac X Menu.app/Contents/Library/LoginItems/CleanMyMac X HealthMonitor.app Login Item: /Applications/CleanMyMac X.app/Contents/Library/LoginItems/CleanMyMac X Menu.app Plugin: ~/Library/Internet Plug-Ins/Folx3Plugin.plugin Apps: 12 Old Applications: 8 x86-only apps Kernel Extensions: /Library/Application Support/VirtualBox [Not Loaded] VBoxDrv.kext - org.virtualbox.kext.VBoxDrv (Oracle America, Inc., 6.1.26) [Not Loaded] VBoxNetAdp.kext - org.virtualbox.kext.VBoxNetAdp (Oracle America, Inc., 6.1.26) [Not Loaded] VBoxNetFlt.kext - org.virtualbox.kext.VBoxNetFlt (Oracle America, Inc., 6.1.26) [Not Loaded] VBoxUSB.kext - org.virtualbox.kext.VBoxUSB (Oracle America, Inc., 6.1.26) System Launch Daemons: [Not Loaded] 37 Apple tasks [Loaded] 194 Apple tasks [Running] 152 Apple tasks [Other] One Apple task System Launch Agents: [Not Loaded] 19 Apple tasks [Loaded] 213 Apple tasks [Running] 150 Apple tasks Launch Daemons: [Loaded] com.adobe.acc.installer.v2.plist (Adobe Inc. - installed 2021-10-11) [Running] com.adobe.agsservice.plist (Adobe Inc. - installed 2022-10-11) [Running] com.bjango.istatmenusdaemon.plist (? 5ee3d37a - installed 2022-12-22) [Loaded] com.microsoft.autoupdate.helper.plist (Microsoft Corporation - installed 2022-12-14) [Loaded] com.microsoft.office.licensingV2.helper.plist (Microsoft Corporation - installed 2022-05-26) [Loaded] com.philandro.anydesk.Helper.plist (philandro Software GmbH - installed 2021-11-11) [Not Loaded] com.piriform.ccleaner.engine.xpc.plist (Piriform Ltd - installed 2022-12-22) [Not Loaded] com.piriform.ccleaner.services.submit.plist (Piriform Ltd - installed 2022-12-22) [Not Loaded] com.piriform.ccleaner.services.xpc.plist (Piriform Ltd - installed 2022-12-22) [Not Loaded] com.piriform.ccleaner.uninstall.plist (Piriform Ltd - installed 2022-12-22) [Not Loaded] com.piriform.ccleaner.update.xpc.plist (Piriform Ltd - installed 2022-12-22) [Not Loaded] org.virtualbox.startup.plist (? 700b9385 - installed 2021-10-10) Launch Agents: [Not Loaded] com.adobe.AdobeCreativeCloud.plist (Adobe Inc. - installed 2021-10-11) [Running] com.adobe.GC.AGM.plist (Adobe Inc. - installed 2022-10-11) [Not Loaded] com.adobe.GC.Invoker-1.0.plist (Adobe Inc. - installed 2022-10-11) [Not Loaded] com.bjango.istatmenusagent.plist (? 9cff4b35 - installed 2022-12-22) [Not Loaded] com.bjango.istatmenusnotifications.plist (? 70a011cf - installed 2022-12-22) [Not Loaded] com.microsoft.update.agent.plist (Microsoft Corporation - installed 2022-12-14) [Not Loaded] com.piriform.ccleaner.plist (Piriform Ltd - installed 2022-12-22) [Not Loaded] com.piriform.ccleaner.update.plist (Piriform Ltd - installed 2022-12-22) User Launch Agents: [Not Loaded] com.adobe.GC.Invoker-1.0.plist (Adobe Inc. - installed 2022-10-11) [Not Loaded] com.adobe.ccxprocess.plist (Adobe Systems, Inc. - installed 2021-10-11) [Not Loaded] com.google.keystone.agent.plist (Google LLC - installed 2022-10-27) [Not Loaded] com.google.keystone.xpcservice.plist (Google LLC - installed 2022-10-27) User Login Items: [Loaded] CleanMyMac X Menu (? - installed 2021-10-12) Modern Login Item /Applications/CleanMyMac X.app/Contents/Library/LoginItems/CleanMyMac X Menu.app [Running] CleanMyMac X HealthMonitor (? - installed 2021-10-12) Modern Login Item /Applications/CleanMyMac X.app/Contents/Library/LoginItems/CleanMyMac X Menu.app/Contents/Library/LoginItems/CleanMyMac X HealthMonitor.app [Not Loaded] Folx Schedule Helper (ELTIMA LLC - installed 2021-10-08) Modern Login Item /Applications/Folx.app/Contents/Library/LoginItems/FolxScheduleHelper.app [Running] Google Chrome (Google LLC - installed 2022-12-16) Application /Applications/Google Chrome.app [Loaded] LaunchAtLogin (Serhiy Mytrovtsiy - installed 2022-12-18) Modern Login Item /Applications/Stats.app/Contents/Library/LoginItems/LaunchAtLogin.app [Not Loaded] ViberLoginHelper (Viber Media SARL. - installed 2021-09-10) Modern Login Item /Applications/Viber.app/Contents/Library/LoginItems/ViberLoginHelper.app [Loaded] QuickTime Player (Apple - installed 2023-02-09) Application /System/Applications/QuickTime Player.app Internet Plug-ins: AdobeAAMDetect: 3.0.0.0 (Adobe Inc. - installed 2021-10-11) User Internet Plug-ins: Folx3Plugin: 3.0.1 (? - installed 2022-12-19) Backup: Time Machine Not Configured! One other local snapshot Performance: System Load: 1.87 (1 min ago) 2.16 (5 min ago) 1.29 (15 min ago) Nominal I/O speed: 0.26 MB/s File system: 13.52 seconds Write speed: 2550 MB/s Read speed: 2783 MB/s CPU Usage Snapshot: Type Overall System: 2 % User: 1 % Idle: 97 % Top Processes Snapshot by CPU: Process (count) CPU (Source - Location) CleanMyMac X Menu.app 92.00 % (? - /Applications/CleanMyMac X.app) Finder 16.48 % (Apple) coreservicesd 12.06 % (Apple) EtreCheckPro 10.66 % (Etresoft, Inc.) kernel_task 5.84 % (Apple) Top Processes Snapshot by Memory: Process (count) RAM usage (Source - Location) EtreCheckPro 978 MB (Etresoft, Inc.) Google Chrome Helper (Renderer) (5) 474 MB (Google LLC) Finder 336 MB (Apple) Google Chrome 208 MB (Google LLC) CleanMyMac X HealthMonitor.app 193 MB (? - /Applications/CleanMyMac X.app) Top Processes Snapshot by Network Use: Process Input / Output (Source - Location) corespeechd 1016 B / 649 KB (Apple) SubmitDiagInfo 535 KB / 1 KB (Apple) com.apple.Safari.SafeBrowsing.Service 317 KB / 11 KB (Apple) mDNSResponder 48 KB / 45 KB (Apple) trustd 24 KB / 25 KB (Apple) Top Processes Snapshot by Energy Use: Process (count) Energy (0-100) (Source - Location) coreservicesd 12 (Apple) Finder 9 (Apple) WindowServer 3 (Apple) bluetoothd 1 (Apple) Stats 0 (Serhiy Mytrovtsiy) Virtual Memory Information: Physical RAM: 128 GB Free RAM: 113.72 GB Used RAM: 9.63 GB Cached files: 4.64 GB Available RAM: 118.37 GB Swap Used: 0 B Software Installs (past 60 days): Install Date Name (Version) 2023-02-03 XProtectPayloads (89) 2023-02-03 macOS 13.2 (13.2) 2023-02-14 macOS 13.2.1 (13.2.1) Diagnostics Information (past 7-30 days): Directory /Library/Logs/DiagnosticReports is not accessible. Run as an administrator account to see more information. End of report


Reply

Feb 28, 2023 6:42 AM in response to Luis Sequeira1

did everything according to your recommendations - mac all the same thing :(

EtreCheckPro version: 6.5.2 (6F007) Report generated: 2023-02-28 14:54:17 Download EtreCheckPro from https://etrecheck.com Runtime: 1:43 Performance: Excellent Problem: Computer is restarting Major Issues: Anything that appears on this list needs immediate attention. No Time Machine backup - Time Machine backup not found. Security updates disabled - Security updates are disabled. This computer is at risk of malware infection. Apple security disabled - Apple security software is disabled. This computer is at risk of malware infection. Minor Issues: These issues do not need immediate attention but they may indicate future problems or opportunities for improvement. Unsigned files - There are unsigned software files installed. Apple has said that unsigned software will not run by default in a future version of the operating system. Insufficient permissions - EtreCheck running under a standard user. Diagnostic information may not be available. x86-only Apps - This computer has x86-only apps might not work on future versions of the operating system. Kernel extensions present - This computer has kernel extensions that may not work in the future. Hardware Information: iMac (Retina 5K, 27-inch, 2020) iMac Model: iMac20,1 3,6 GHz 10-Core Intel Core i9 (i9-10910) CPU: 10-core 128 GB RAM - At maximum Video Information: AMD Radeon Pro 5500 XT - VRAM: 8 GB iMac (built-in) 5120 x 2880 Drives: disk0 - APPLE SSD AP1024N 1.00 TB (Solid State - TRIM: Yes) Internal PCI-Express 8.0 GT/s x4 NVM Express disk0s1 - EFI [EFI] 315 MB disk0s2 [APFS Container] 1.00 TB disk1 [APFS Virtual drive] 1.00 TB (Shared by 6 volumes) disk1s1 (APFS) [APFS Container] (Shared - 8.94 GB used) disk1s1s1 - Macintosh HD (APFS) [APFS Snapshot] (Shared - 8.94 GB used) disk1s2 - Macintosh HD - Data (APFS) [APFS Virtual drive] (Shared - 498.65 GB used) disk1s3 - Preboot (APFS) [APFS Preboot] (Shared - 2.14 GB used) disk1s4 - Recovery (APFS) [Recovery] (Shared - 1.13 GB used) disk1s5 - VM (APFS) [APFS VM] (Shared - 20 KB used) disk1s6 - Update (APFS) (Shared - 11 MB used) disk2 - StoreJet Transcend 4.00 TB External USB 5 Gbit/s USB disk2s1 134 MB disk2s2 - T*******d 4.00 TB Mounted Volumes: disk1s1s1 - Macintosh HD [APFS Snapshot] 1.00 TB (Shared - 8.94 GB used, 489.15 GB free) APFS Mount point: / Read-only: Yes disk1s2 - Macintosh HD - Data [APFS Virtual drive] 1.00 TB (Shared - 498.65 GB used, 489.15 GB free) APFS Mount point: /System/Volumes/Data Encrypted disk1s3 - Preboot [APFS Preboot] 1.00 TB (Shared - 2.14 GB used, 489.15 GB free) APFS Mount point: /System/Volumes/Preboot disk1s5 - VM [APFS VM] 1.00 TB (Shared - 20 KB used, 489.15 GB free) APFS Mount point: /System/Volumes/VM disk1s6 - Update 1.00 TB (Shared - 11 MB used, 489.15 GB free) APFS Mount point: /System/Volumes/Update disk2s2 - T*******d 4.00 TB Mount point: /Volumes/T*******d Network: Interface en0: Ethernet Interface en1: Wi-Fi Interface bridge0: Thunderbolt Bridge Interface en5: iPhone System Software: 13.2.1 13.2.1 (22D68) Time since boot: Less than an hour Notifications: EtreCheckPro.app one notification Security: Gatekeeper: App Store and identified developers System Integrity Protection: Enabled Security Updates: Disabled â ¨ Antivirus software: None! Unsigned Files: Launchd: /Library/LaunchAgents/com.bjango.istatmenusagent.plist Executable: /Library/Application Support/iStat Menus 5/iStatMenusAgent.app/Contents/MacOS/iStatMenusAgent Details: Exact match found in the legitimate list - probably OK Launchd: /Library/LaunchDaemons/com.bjango.istatmenusdaemon.plist Executable: /Library/Application Support/iStat Menus 5/iStatMenusDaemon Details: Exact match found in the legitimate list - probably OK Launchd: /Library/LaunchDaemons/org.virtualbox.startup.plist Executable: /Library/Application Support/VirtualBox/LaunchDaemons/VirtualBoxStartup.sh restart Details: Exact match found in the legitimate list - probably OK Launchd: /Library/LaunchAgents/com.bjango.istatmenusnotifications.plist Executable: /Library/Application Support/iStat Menus 5/iStat Menus Notifications.app/Contents/MacOS/iStat Menus Notifications Details: Exact match found in the legitimate list - probably OK Plugin: ~/Library/Internet Plug-Ins/Folx3Plugin.plugin Apps: 9 Old Applications: 8 x86-only apps Kernel Extensions: /Library/Application Support/VirtualBox [Not Loaded] VBoxDrv.kext - org.virtualbox.kext.VBoxDrv (Oracle America, Inc., 6.1.26) [Not Loaded] VBoxNetAdp.kext - org.virtualbox.kext.VBoxNetAdp (Oracle America, Inc., 6.1.26) [Not Loaded] VBoxNetFlt.kext - org.virtualbox.kext.VBoxNetFlt (Oracle America, Inc., 6.1.26) [Not Loaded] VBoxUSB.kext - org.virtualbox.kext.VBoxUSB (Oracle America, Inc., 6.1.26) System Launch Daemons: [Not Loaded] 37 Apple tasks [Loaded] 192 Apple tasks [Running] 154 Apple tasks [Other] One Apple task System Launch Agents: [Not Loaded] 19 Apple tasks [Loaded] 213 Apple tasks [Running] 150 Apple tasks Launch Daemons: [Loaded] com.adobe.acc.installer.v2.plist (Adobe Inc. - installed 2021-10-11) [Running] com.adobe.agsservice.plist (Adobe Inc. - installed 2022-10-11) [Running] com.bjango.istatmenusdaemon.plist (? 5ee3d37a - installed 2022-12-22) [Loaded] com.microsoft.autoupdate.helper.plist (Microsoft Corporation - installed 2022-12-14) [Loaded] com.microsoft.office.licensingV2.helper.plist (Microsoft Corporation - installed 2022-05-26) [Loaded] com.philandro.anydesk.Helper.plist (philandro Software GmbH - installed 2021-11-11) [Not Loaded] org.virtualbox.startup.plist (? 700b9385 - installed 2021-10-10) Launch Agents: [Not Loaded] com.adobe.AdobeCreativeCloud.plist (Adobe Inc. - installed 2021-10-11) [Running] com.adobe.GC.AGM.plist (Adobe Inc. - installed 2022-10-11) [Not Loaded] com.adobe.GC.Invoker-1.0.plist (Adobe Inc. - installed 2022-10-11) [Not Loaded] com.bjango.istatmenusagent.plist (? 9cff4b35 - installed 2022-12-22) [Not Loaded] com.bjango.istatmenusnotifications.plist (? 70a011cf - installed 2022-12-22) [Not Loaded] com.microsoft.update.agent.plist (Microsoft Corporation - installed 2022-12-14) User Launch Agents: [Not Loaded] com.adobe.GC.Invoker-1.0.plist (Adobe Inc. - installed 2022-10-11) [Not Loaded] com.adobe.ccxprocess.plist (Adobe Systems, Inc. - installed 2021-10-11) User Login Items: [Not Loaded] Folx Schedule Helper (ELTIMA LLC - installed 2021-10-08) Modern Login Item /Applications/Folx.app/Contents/Library/LoginItems/FolxScheduleHelper.app [Loaded] LaunchAtLogin (Serhiy Mytrovtsiy - installed 2022-12-18) Modern Login Item /Applications/Stats.app/Contents/Library/LoginItems/LaunchAtLogin.app [Not Loaded] ViberLoginHelper (Viber Media SARL. - installed 2021-09-10) Modern Login Item /Applications/Viber.app/Contents/Library/LoginItems/ViberLoginHelper.app [Loaded] QuickTime Player (Apple - installed 2023-02-09) Application /System/Applications/QuickTime Player.app Internet Plug-ins: AdobeAAMDetect: 3.0.0.0 (Adobe Inc. - installed 2021-10-11) User Internet Plug-ins: Folx3Plugin: 3.0.1 (? - installed 2022-12-19) Backup: Time Machine Not Configured! One other local snapshot Performance: System Load: 1.35 (1 min ago) 1.26 (5 min ago) 0.68 (15 min ago) Nominal I/O speed: 0.08 MB/s File system: 13.07 seconds Write speed: 3044 MB/s Read speed: 2252 MB/s CPU Usage Snapshot: Type Overall System: 0 % User: 1 % Idle: 99 % Top Processes Snapshot by CPU: Process (count) CPU (Source - Location) EtreCheckPro 10.50 % (Etresoft, Inc.) WindowServer 4.74 % (Apple) kernel_task 1.08 % (Apple) bluetoothd 0.76 % (Apple) Stats 0.68 % (Serhiy Mytrovtsiy) Top Processes Snapshot by Memory: Process (count) RAM usage (Source - Location) EtreCheckPro 964 MB (Etresoft, Inc.) Finder 221 MB (Apple) VTDecoderXPCService (2) 172 MB (Apple) Spotlight 116 MB (Apple) com.apple.appkit.xpc.openAndSavePanelService (2) 112 MB (Apple) Top Processes Snapshot by Network Use: Process Input / Output (Source - Location) corespeechd 1016 B / 649 KB (Apple) SubmitDiagInfo 541 KB / 1 KB (Apple) mDNSResponder 49 KB / 46 KB (Apple) netbiosd 56 KB / 5 KB (Apple) trustd 14 KB / 25 KB (Apple) Top Processes Snapshot by Energy Use: Process (count) Energy (0-100) (Source - Location) WindowServer 5 (Apple) Finder 1 (Apple) bluetoothd 1 (Apple) Stats 0 (Serhiy Mytrovtsiy) nearbyd 0 (Apple) Virtual Memory Information: Physical RAM: 128 GB Free RAM: 115.94 GB Used RAM: 8.41 GB Cached files: 3.65 GB Available RAM: 119.59 GB Swap Used: 0 B Software Installs (past 60 days): Install Date Name (Version) 2023-02-03 XProtectPayloads (89) 2023-02-03 macOS 13.2 (13.2) 2023-02-14 macOS 13.2.1 (13.2.1) 2023-02-22 DaVinci Resolve (18.1.3) 2023-02-22 Final Cut Pro (10.6.5) Diagnostics Information (past 7-30 days): Directory /Library/Logs/DiagnosticReports is not accessible. Run as an administrator account to see more information. End of report
EtreCheckPro version: 6.5.2 (6F007) Report generated: 2023-02-28 14:57:10 Download EtreCheckPro from https://etrecheck.com Runtime: 1:37 Performance: Excellent Problem: No problem - just checking Major Issues: Anything that appears on this list needs immediate attention. No Time Machine backup - Time Machine backup not found. Security updates disabled - Security updates are disabled. This computer is at risk of malware infection. Apple security disabled - Apple security software is disabled. This computer is at risk of malware infection. Minor Issues: These issues do not need immediate attention but they may indicate future problems or opportunities for improvement. Unsigned files - There are unsigned software files installed. Apple has said that unsigned software will not run by default in a future version of the operating system. Insufficient permissions - EtreCheck running under a standard user. Diagnostic information may not be available. x86-only Apps - This computer has x86-only apps might not work on future versions of the operating system. Kernel extensions present - This computer has kernel extensions that may not work in the future. Hardware Information: iMac (Retina 5K, 27-inch, 2020) iMac Model: iMac20,1 3,6 GHz 10-Core Intel Core i9 (i9-10910) CPU: 10-core 128 GB RAM - At maximum Video Information: AMD Radeon Pro 5500 XT - VRAM: 8 GB iMac (built-in) 5120 x 2880 Drives: disk0 - APPLE SSD AP1024N 1.00 TB (Solid State - TRIM: Yes) Internal PCI-Express 8.0 GT/s x4 NVM Express disk0s1 - EFI [EFI] 315 MB disk0s2 [APFS Container] 1.00 TB disk1 [APFS Virtual drive] 1.00 TB (Shared by 6 volumes) disk1s1 (APFS) [APFS Container] (Shared - 8.94 GB used) disk1s1s1 - Macintosh HD (APFS) [APFS Snapshot] (Shared - 8.94 GB used) disk1s2 - Macintosh HD - Data (APFS) [APFS Virtual drive] (Shared - 498.65 GB used) disk1s3 - Preboot (APFS) [APFS Preboot] (Shared - 2.14 GB used) disk1s4 - Recovery (APFS) [Recovery] (Shared - 1.13 GB used) disk1s5 - VM (APFS) [APFS VM] (Shared - 20 KB used) disk1s6 - Update (APFS) (Shared - 11 MB used) disk2 - StoreJet Transcend 4.00 TB External USB 5 Gbit/s USB disk2s1 134 MB disk2s2 - T*******d 4.00 TB Mounted Volumes: disk1s1s1 - Macintosh HD [APFS Snapshot] 1.00 TB (Shared - 8.94 GB used, 489.15 GB free) APFS Mount point: / Read-only: Yes disk1s2 - Macintosh HD - Data [APFS Virtual drive] 1.00 TB (Shared - 498.65 GB used, 489.15 GB free) APFS Mount point: /System/Volumes/Data Encrypted disk1s3 - Preboot [APFS Preboot] 1.00 TB (Shared - 2.14 GB used, 489.15 GB free) APFS Mount point: /System/Volumes/Preboot disk1s5 - VM [APFS VM] 1.00 TB (Shared - 20 KB used, 489.15 GB free) APFS Mount point: /System/Volumes/VM disk1s6 - Update 1.00 TB (Shared - 11 MB used, 489.15 GB free) APFS Mount point: /System/Volumes/Update disk2s2 - T*******d 4.00 TB Mount point: /Volumes/T*******d Network: Interface en0: Ethernet Interface en1: Wi-Fi Interface bridge0: Thunderbolt Bridge Interface en5: iPhone System Software: 13.2.1 13.2.1 (22D68) Time since boot: Less than an hour Notifications: EtreCheckPro.app 2 notifications Security: Gatekeeper: App Store and identified developers System Integrity Protection: Enabled Security Updates: Disabled â ¨ Antivirus software: None! Unsigned Files: Launchd: /Library/LaunchDaemons/com.bjango.istatmenusdaemon.plist Executable: /Library/Application Support/iStat Menus 5/iStatMenusDaemon Details: Exact match found in the legitimate list - probably OK Launchd: /Library/LaunchAgents/com.bjango.istatmenusagent.plist Executable: /Library/Application Support/iStat Menus 5/iStatMenusAgent.app/Contents/MacOS/iStatMenusAgent Details: Exact match found in the legitimate list - probably OK Launchd: /Library/LaunchAgents/com.bjango.istatmenusnotifications.plist Executable: /Library/Application Support/iStat Menus 5/iStat Menus Notifications.app/Contents/MacOS/iStat Menus Notifications Details: Exact match found in the legitimate list - probably OK Launchd: /Library/LaunchDaemons/org.virtualbox.startup.plist Executable: /Library/Application Support/VirtualBox/LaunchDaemons/VirtualBoxStartup.sh restart Details: Exact match found in the legitimate list - probably OK Plugin: ~/Library/Internet Plug-Ins/Folx3Plugin.plugin Apps: 9 Old Applications: 8 x86-only apps Kernel Extensions: /Library/Application Support/VirtualBox [Not Loaded] VBoxDrv.kext - org.virtualbox.kext.VBoxDrv (Oracle America, Inc., 6.1.26) [Not Loaded] VBoxNetAdp.kext - org.virtualbox.kext.VBoxNetAdp (Oracle America, Inc., 6.1.26) [Not Loaded] VBoxNetFlt.kext - org.virtualbox.kext.VBoxNetFlt (Oracle America, Inc., 6.1.26) [Not Loaded] VBoxUSB.kext - org.virtualbox.kext.VBoxUSB (Oracle America, Inc., 6.1.26) System Launch Daemons: [Not Loaded] 37 Apple tasks [Loaded] 194 Apple tasks [Running] 152 Apple tasks [Other] One Apple task System Launch Agents: [Not Loaded] 19 Apple tasks [Loaded] 213 Apple tasks [Running] 150 Apple tasks Launch Daemons: [Loaded] com.adobe.acc.installer.v2.plist (Adobe Inc. - installed 2021-10-11) [Running] com.adobe.agsservice.plist (Adobe Inc. - installed 2022-10-11) [Running] com.bjango.istatmenusdaemon.plist (? 5ee3d37a - installed 2022-12-22) [Loaded] com.microsoft.autoupdate.helper.plist (Microsoft Corporation - installed 2022-12-14) [Loaded] com.microsoft.office.licensingV2.helper.plist (Microsoft Corporation - installed 2022-05-26) [Loaded] com.philandro.anydesk.Helper.plist (philandro Software GmbH - installed 2021-11-11) [Not Loaded] org.virtualbox.startup.plist (? 700b9385 - installed 2021-10-10) Launch Agents: [Not Loaded] com.adobe.AdobeCreativeCloud.plist (Adobe Inc. - installed 2021-10-11) [Running] com.adobe.GC.AGM.plist (Adobe Inc. - installed 2022-10-11) [Not Loaded] com.adobe.GC.Invoker-1.0.plist (Adobe Inc. - installed 2022-10-11) [Not Loaded] com.bjango.istatmenusagent.plist (? 9cff4b35 - installed 2022-12-22) [Not Loaded] com.bjango.istatmenusnotifications.plist (? 70a011cf - installed 2022-12-22) [Not Loaded] com.microsoft.update.agent.plist (Microsoft Corporation - installed 2022-12-14) User Launch Agents: [Not Loaded] com.adobe.GC.Invoker-1.0.plist (Adobe Inc. - installed 2022-10-11) [Not Loaded] com.adobe.ccxprocess.plist (Adobe Systems, Inc. - installed 2021-10-11) User Login Items: [Not Loaded] Folx Schedule Helper (ELTIMA LLC - installed 2021-10-08) Modern Login Item /Applications/Folx.app/Contents/Library/LoginItems/FolxScheduleHelper.app [Loaded] LaunchAtLogin (Serhiy Mytrovtsiy - installed 2022-12-18) Modern Login Item /Applications/Stats.app/Contents/Library/LoginItems/LaunchAtLogin.app [Not Loaded] ViberLoginHelper (Viber Media SARL. - installed 2021-09-10) Modern Login Item /Applications/Viber.app/Contents/Library/LoginItems/ViberLoginHelper.app [Loaded] QuickTime Player (Apple - installed 2023-02-09) Application /System/Applications/QuickTime Player.app Internet Plug-ins: AdobeAAMDetect: 3.0.0.0 (Adobe Inc. - installed 2021-10-11) User Internet Plug-ins: Folx3Plugin: 3.0.1 (? - installed 2022-12-19) Backup: Time Machine Not Configured! One other local snapshot Performance: System Load: 1.03 (1 min ago) 1.25 (5 min ago) 0.78 (15 min ago) Nominal I/O speed: 0.02 MB/s File system: 12.23 seconds Write speed: 3022 MB/s Read speed: 2273 MB/s CPU Usage Snapshot: Type Overall System: 0 % User: 1 % Idle: 99 % Top Processes Snapshot by CPU: Process (count) CPU (Source - Location) EtreCheckPro 10.48 % (Etresoft, Inc.) WindowServer 4.66 % (Apple) bluetoothd 1.30 % (Apple) kernel_task 1.08 % (Apple) nearbyd 0.38 % (Apple) Top Processes Snapshot by Memory: Process (count) RAM usage (Source - Location) EtreCheckPro 1.42 GB (Etresoft, Inc.) Finder 221 MB (Apple) VTDecoderXPCService (2) 172 MB (Apple) com.apple.appkit.xpc.openAndSavePanelService (2) 126 MB (Apple) Spotlight 118 MB (Apple) Top Processes Snapshot by Network Use: Process Input / Output (Source - Location) corespeechd 1016 B / 649 KB (Apple) SubmitDiagInfo 541 KB / 1 KB (Apple) mDNSResponder 52 KB / 48 KB (Apple) netbiosd 70 KB / 5 KB (Apple) trustd 15 KB / 27 KB (Apple) Top Processes Snapshot by Energy Use: Process (count) Energy (0-100) (Source - Location) WindowServer 4 (Apple) bluetoothd 0 (Apple) Stats 0 (Serhiy Mytrovtsiy) nearbyd 0 (Apple) tccd (2) 0 (Apple) Virtual Memory Information: Physical RAM: 128 GB Free RAM: 115.07 GB Used RAM: 9.26 GB Cached files: 3.67 GB Available RAM: 118.74 GB Swap Used: 0 B Software Installs (past 60 days): Install Date Name (Version) 2023-02-03 XProtectPayloads (89) 2023-02-03 macOS 13.2 (13.2) 2023-02-14 macOS 13.2.1 (13.2.1) 2023-02-22 DaVinci Resolve (18.1.3) 2023-02-22 Final Cut Pro (10.6.5) Diagnostics Information (past 7-30 days): Directory /Library/Logs/DiagnosticReports is not accessible. Run as an administrator account to see more information. End of report
EtreCheckPro version: 6.5.2 (6F007) Report generated: 2023-02-28 14:49:38 Download EtreCheckPro from https://etrecheck.com Runtime: 1:49 Performance: Excellent Problem: Apps are crashing Major Issues: Anything that appears on this list needs immediate attention. No Time Machine backup - Time Machine backup not found. Security updates disabled - Security updates are disabled. This computer is at risk of malware infection. Apple security disabled - Apple security software is disabled. This computer is at risk of malware infection. Minor Issues: These issues do not need immediate attention but they may indicate future problems or opportunities for improvement. Unsigned files - There are unsigned software files installed. Apple has said that unsigned software will not run by default in a future version of the operating system. Insufficient permissions - EtreCheck running under a standard user. Diagnostic information may not be available. x86-only Apps - This computer has x86-only apps might not work on future versions of the operating system. Kernel extensions present - This computer has kernel extensions that may not work in the future. Hardware Information: iMac (Retina 5K, 27-inch, 2020) iMac Model: iMac20,1 3,6 GHz 10-Core Intel Core i9 (i9-10910) CPU: 10-core 128 GB RAM - At maximum Video Information: AMD Radeon Pro 5500 XT - VRAM: 8 GB iMac (built-in) 5120 x 2880 Drives: disk0 - APPLE SSD AP1024N 1.00 TB (Solid State - TRIM: Yes) Internal PCI-Express 8.0 GT/s x4 NVM Express disk0s1 - EFI [EFI] 315 MB disk0s2 [APFS Container] 1.00 TB disk1 [APFS Virtual drive] 1.00 TB (Shared by 6 volumes) disk1s1 (APFS) [APFS Container] (Shared - 8.94 GB used) disk1s1s1 - Macintosh HD (APFS) [APFS Snapshot] (Shared - 8.94 GB used) disk1s2 - Macintosh HD - Data (APFS) [APFS Virtual drive] (Shared - 498.64 GB used) disk1s3 - Preboot (APFS) [APFS Preboot] (Shared - 2.14 GB used) disk1s4 - Recovery (APFS) [Recovery] (Shared - 1.13 GB used) disk1s5 - VM (APFS) [APFS VM] (Shared - 20 KB used) disk1s6 - Update (APFS) (Shared - 11 MB used) disk2 - StoreJet Transcend 4.00 TB External USB 5 Gbit/s USB disk2s1 134 MB disk2s2 - T*******d 4.00 TB Mounted Volumes: disk1s1s1 - Macintosh HD [APFS Snapshot] 1.00 TB (Shared - 8.94 GB used, 489.16 GB free) APFS Mount point: / Read-only: Yes disk1s2 - Macintosh HD - Data [APFS Virtual drive] 1.00 TB (Shared - 498.64 GB used, 489.16 GB free) APFS Mount point: /System/Volumes/Data Encrypted disk1s3 - Preboot [APFS Preboot] 1.00 TB (Shared - 2.14 GB used, 489.16 GB free) APFS Mount point: /System/Volumes/Preboot disk1s5 - VM [APFS VM] 1.00 TB (Shared - 20 KB used, 489.16 GB free) APFS Mount point: /System/Volumes/VM disk1s6 - Update 1.00 TB (Shared - 11 MB used, 489.16 GB free) APFS Mount point: /System/Volumes/Update disk2s2 - T*******d 4.00 TB Mount point: /Volumes/T*******d Network: Interface en0: Ethernet Interface en1: Wi-Fi Interface bridge0: Thunderbolt Bridge Interface en5: iPhone System Software: 13.2.1 13.2.1 (22D68) Time since boot: Less than an hour Security: Gatekeeper: App Store and identified developers System Integrity Protection: Enabled Security Updates: Disabled Antivirus software: None! Unsigned Files: Launchd: /Library/LaunchDaemons/org.virtualbox.startup.plist Executable: /Library/Application Support/VirtualBox/LaunchDaemons/VirtualBoxStartup.sh restart Details: Exact match found in the legitimate list - probably OK Launchd: /Library/LaunchAgents/com.bjango.istatmenusagent.plist Executable: /Library/Application Support/iStat Menus 5/iStatMenusAgent.app/Contents/MacOS/iStatMenusAgent Details: Exact match found in the legitimate list - probably OK Launchd: /Library/LaunchAgents/com.bjango.istatmenusnotifications.plist Executable: /Library/Application Support/iStat Menus 5/iStat Menus Notifications.app/Contents/MacOS/iStat Menus Notifications Details: Exact match found in the legitimate list - probably OK Launchd: /Library/LaunchDaemons/com.bjango.istatmenusdaemon.plist Executable: /Library/Application Support/iStat Menus 5/iStatMenusDaemon Details: Exact match found in the legitimate list - probably OK Plugin: ~/Library/Internet Plug-Ins/Folx3Plugin.plugin Apps: 9 Old Applications: 8 x86-only apps Kernel Extensions: /Library/Application Support/VirtualBox [Not Loaded] VBoxDrv.kext - org.virtualbox.kext.VBoxDrv (Oracle America, Inc., 6.1.26) [Not Loaded] VBoxNetAdp.kext - org.virtualbox.kext.VBoxNetAdp (Oracle America, Inc., 6.1.26) [Not Loaded] VBoxNetFlt.kext - org.virtualbox.kext.VBoxNetFlt (Oracle America, Inc., 6.1.26) [Not Loaded] VBoxUSB.kext - org.virtualbox.kext.VBoxUSB (Oracle America, Inc., 6.1.26) System Launch Daemons: [Not Loaded] 36 Apple tasks [Loaded] 199 Apple tasks [Running] 149 Apple tasks System Launch Agents: [Not Loaded] 19 Apple tasks [Loaded] 229 Apple tasks [Running] 134 Apple tasks Launch Daemons: [Loaded] com.adobe.acc.installer.v2.plist (Adobe Inc. - installed 2021-10-11) [Running] com.adobe.agsservice.plist (Adobe Inc. - installed 2022-10-11) [Running] com.bjango.istatmenusdaemon.plist (? 5ee3d37a - installed 2022-12-22) [Loaded] com.microsoft.autoupdate.helper.plist (Microsoft Corporation - installed 2022-12-14) [Loaded] com.microsoft.office.licensingV2.helper.plist (Microsoft Corporation - installed 2022-05-26) [Loaded] com.philandro.anydesk.Helper.plist (philandro Software GmbH - installed 2021-11-11) [Not Loaded] org.virtualbox.startup.plist (? 700b9385 - installed 2021-10-10) Launch Agents: [Not Loaded] com.adobe.AdobeCreativeCloud.plist (Adobe Inc. - installed 2021-10-11) [Running] com.adobe.GC.AGM.plist (Adobe Inc. - installed 2022-10-11) [Not Loaded] com.adobe.GC.Invoker-1.0.plist (Adobe Inc. - installed 2022-10-11) [Not Loaded] com.bjango.istatmenusagent.plist (? 9cff4b35 - installed 2022-12-22) [Not Loaded] com.bjango.istatmenusnotifications.plist (? 70a011cf - installed 2022-12-22) [Not Loaded] com.microsoft.update.agent.plist (Microsoft Corporation - installed 2022-12-14) User Launch Agents: [Not Loaded] com.adobe.GC.Invoker-1.0.plist (Adobe Inc. - installed 2022-10-11) [Not Loaded] com.adobe.ccxprocess.plist (Adobe Systems, Inc. - installed 2021-10-11) User Login Items: [Not Loaded] Folx Schedule Helper (ELTIMA LLC - installed 2021-10-08) Modern Login Item /Applications/Folx.app/Contents/Library/LoginItems/FolxScheduleHelper.app [Loaded] LaunchAtLogin (Serhiy Mytrovtsiy - installed 2022-12-18) Modern Login Item /Applications/Stats.app/Contents/Library/LoginItems/LaunchAtLogin.app [Not Loaded] ViberLoginHelper (Viber Media SARL. - installed 2021-09-10) Modern Login Item /Applications/Viber.app/Contents/Library/LoginItems/ViberLoginHelper.app [Loaded] QuickTime Player (Apple - installed 2023-02-09) Application /System/Applications/QuickTime Player.app Internet Plug-ins: AdobeAAMDetect: 3.0.0.0 (Adobe Inc. - installed 2021-10-11) User Internet Plug-ins: Folx3Plugin: 3.0.1 (? - installed 2022-12-19) Backup: Time Machine Not Configured! One other local snapshot Performance: System Load: 1.60 (1 min ago) 0.73 (5 min ago) 0.29 (15 min ago) Nominal I/O speed: 0.01 MB/s File system: 13.02 seconds Write speed: 2964 MB/s Read speed: 2256 MB/s CPU Usage Snapshot: Type Overall System: 1 % User: 2 % Idle: 97 % Top Processes Snapshot by CPU: Process (count) CPU (Source - Location) EtreCheckPro 11.98 % (Etresoft, Inc.) WindowServer 4.62 % (Apple) kernel_task 1.20 % (Apple) bluetoothd 0.62 % (Apple) Stats 0.48 % (Serhiy Mytrovtsiy) Top Processes Snapshot by Memory: Process (count) RAM usage (Source - Location) EtreCheckPro 969 MB (Etresoft, Inc.) Finder 190 MB (Apple) VTDecoderXPCService (2) 117 MB (Apple) Spotlight 99 MB (Apple) softwareupdated 97 MB (Apple) Top Processes Snapshot by Network Use: Process Input / Output (Source - Location) corespeechd 1016 B / 649 KB (Apple) SubmitDiagInfo 540 KB / 1 KB (Apple) nsurlsessiond 61 KB / 33 KB (Apple) mDNSResponder 40 KB / 37 KB (Apple) itunescloudd 67 KB / 6 KB (Apple) Top Processes Snapshot by Energy Use: Process (count) Energy (0-100) (Source - Location) WindowServer 4 (Apple) bluetoothd 1 (Apple) Stats 0 (Serhiy Mytrovtsiy) nearbyd 0 (Apple) tccd (2) 0 (Apple) Virtual Memory Information: Physical RAM: 128 GB Free RAM: 116.82 GB Used RAM: 7.98 GB Cached files: 3.20 GB Available RAM: 120.02 GB Swap Used: 0 B Software Installs (past 60 days): Install Date Name (Version) 2023-02-03 XProtectPayloads (89) 2023-02-03 macOS 13.2 (13.2) 2023-02-14 macOS 13.2.1 (13.2.1) 2023-02-22 DaVinci Resolve (18.1.3) 2023-02-22 Final Cut Pro (10.6.5) Diagnostics Information (past 7-30 days): Directory /Library/Logs/DiagnosticReports is not accessible. Run as an administrator account to see more information. End of report


Reply

Final Cut Pro (10.6.5) - crash at various stages

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple Account.