如何调整系统设置以允许更多模拟设备同时启动?
How do I adjust the system settings to allow more simulated devices to boot at once?
我在尝试启动我的第四个模拟器时收到以下错误消息:
Unable to boot device due to insufficient system resources.
Please see Simulator Help for information on adjusting system settings to allow more simulated devices to boot at once.
maxUserProcs: 709, runningUserProcs: 569, enforcedProcBuffer: 144
我不知道他们指的是什么模拟器帮助,因为我没有找到任何相关信息。 Google 也帮不了我。从错误消息中可以很清楚地看出,如果 runningUserProcs
+ enforcedProcBuffer
大于 maxUserProcs
,则无法启动另一个模拟器。不清楚的是如何更改 maxUserProcs
设置。
有谁知道我该如何更改 maxUserProcs
?
sudo launchctl limit maxproc 2000 2500
来源:https://help.apple.com/simulator/mac/9.0/index.html#/dev8a5f2aa4e
不过,当我 运行 上面给出的这个特定命令时,这个指针帮助了我
sudo launchctl limit maxfiles 2000 unlimited
它将我的设置设置为 maxfiles 2000 10240
所以我 运行 又有点不同
sudo launchctl limit maxfiles 65536 200000
现在设置设置为 maxfiles 65536 200000
稍后再做这件事只会帮助我重新 运行 模拟器再次成功。我有一个 Mojave 10.14.5.
我在尝试启动我的第四个模拟器时收到以下错误消息:
Unable to boot device due to insufficient system resources.
Please see Simulator Help for information on adjusting system settings to allow more simulated devices to boot at once.
maxUserProcs: 709, runningUserProcs: 569, enforcedProcBuffer: 144
我不知道他们指的是什么模拟器帮助,因为我没有找到任何相关信息。 Google 也帮不了我。从错误消息中可以很清楚地看出,如果 runningUserProcs
+ enforcedProcBuffer
大于 maxUserProcs
,则无法启动另一个模拟器。不清楚的是如何更改 maxUserProcs
设置。
有谁知道我该如何更改 maxUserProcs
?
sudo launchctl limit maxproc 2000 2500
来源:https://help.apple.com/simulator/mac/9.0/index.html#/dev8a5f2aa4e
不过,当我 运行 上面给出的这个特定命令时,这个指针帮助了我
sudo launchctl limit maxfiles 2000 unlimited
它将我的设置设置为 maxfiles 2000 10240
所以我 运行 又有点不同
sudo launchctl limit maxfiles 65536 200000
现在设置设置为 maxfiles 65536 200000
稍后再做这件事只会帮助我重新 运行 模拟器再次成功。我有一个 Mojave 10.14.5.