MacCatalinaにして、ブラウザが急にネットワークにつながらなくなったりする

GoogleChromeで新しいタブを開いたり、他のアプリを開いたりするとことごとくだめ。
ターミナル開いてどんなにコマンドを叩いても

fork: Resource temporarily unavailable

のエラーが出る。いろいろ調べると開けるファイルや、起動プロセス制限があるみたいでそれに引っかかっている可能性型高そう。

以下の記事を参考にlimit(ファイルとプロセス数)を上げてみる。

MacOSX で fork: Resource temporarily unavailable エラーになる場合の対処法
https://blog.regonn.tokyo/programmer/2017–02–03-mac-osx-process/

/Library/LaunchDaemons/limit.maxfiles.plist

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
  <dict>
    <key>Label</key>
    <string>limit.maxfiles</string>
    <key>ProgramArguments</key>
    <array>
      <string>launchctl</string>
      <string>limit</string>
      <string>maxfiles</string>
      <string>200000</string>
      <string>200000</string>
    </array>
    <key>RunAtLoad</key>
    <true/>
    <key>ServiceIPC</key>
    <false/>
  </dict>
</plist>

/Library/LaunchDaemons/limit.maxproc.plist

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple/DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
  <dict>
    <key>Label</key>
    <string>limit.maxproc</string>
    <key>ProgramArguments</key>
    <array>
      <string>launchctl</string>
      <string>limit</string>
      <string>maxproc</string>
      <string>4176</string>
      <string>4176</string>
    </array>
    <key>RunAtLoad</key>
    <true />
    <key>ServiceIPC</key>
      <false />
  </dict>
</plist>

一旦こちらで様子を見てみます。