Changes between Version 28 and Version 30 of Ticket #6699


Ignore:
Timestamp:
Jan 23, 2023, 12:03:39 AM (16 months ago)
Author:
Langbart
Comment:

Ok, Stan. I also did not find anything on spidermonkey.dev and bugzilla.mozilla.org about those processes being mentioned in the context described here.

  • will try out macOS Ventura in the coming weeks and share the results
  • move the ticket to Backlog for now ?

  • Added workaround to disable these processes manually to the description

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #6699 – Description

    v28 v30  
    2222  - For the case described above, the process is always called `spindump` to allocate large amounts of memory, but the process can also be called `sandboxed` or `ReportCrash` in other situations.
    2323
     24{{{#!div class="wikipage compact" style="border: 1pt dotted; margin: 1em; background: #FFDE57"
     25**Note**: To be absolutely sure, restart the PC test it again.
     26}}}
    2427
    2528[[Image(ticket:6697:mem_20_Jan_23.png,600,center)]]
     
    4952[27409]
    5053
     54==== workaround
     55- Go into `Recovery mode` `cmd+R`, select the Terminal
     56  - it needs to happen in `Recovery mode` because you can't edit those  files below in a normal session
     57- navigate to `/Volumes/{The name of your drive}/System/Library/`
     58
     59{{{#!sh
     60# disable the ReportCrash issue
     61mv LaunchAgents/com.apple.ReportCrash.plist LaunchAgents/com.apple.ReportCrash.bak
     62mv LaunchDaemons/com.apple.ReportCrash.Root.plist LaunchDaemons/com.apple.ReportCrash.Root.plist.bak
     63
     64# disable the sandboxed issue
     65mv LaunchDaemons/com.apple.sandboxd.plist LaunchDaemons/com.apple.sandboxd.plist.bak
     66
     67# disable the spindumb issue
     68mv LaunchDaemons/com.apple.sandboxd.plist LaunchDaemons/com.apple.sandboxd.plist.bak
     69}}}
    5170
    5271==== related ticket