Last active
December 20, 2023 12:00
-
-
Save lucasdavila/f382f5f5eb4fc4e83cf5 to your computer and use it in GitHub Desktop.
Fixing mac os yosemite issue "bash: fork: Resource temporarily unavailable"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# see the current limits | |
$ sysctl -a | grep maxproc | |
# increase it | |
$ sudo sysctl -w kern.maxproc=xxxx | |
$ sudo sysctl -w kern.maxprocperuid=xxx | |
# run at startup | |
$ sudo vim /etc/sysctl.conf | |
kern.maxproc=xxxx | |
kern.maxprocperuid=xxxx | |
$ sudo launchctl limit | |
$ sudo launchctl limit maxproc <maxprocperuid> <maxproc> | |
$ sudo launchctl limit maxfiles 512 unlimited | |
# run at startup | |
$ sudo vim /etc/launchd.conf | |
limit maxproc <maxprocperuid> <maxproc> | |
limit maxfiles 512 unlimited |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I also needed
sudo sysctl kern.tty.ptmx_max=255
(or 511, or whatever). My default (in El Capitan) was 127. (As atmux
user, I need more than that.)