I faced the same problem (and posted about it in the forum). I suspect there is a bug that means that Fusion is leaking "file descriptors" basically opening more files than necessary, until it hits an operating system limit. As a precaution, don't leave Fusion on when it's idle (e.g. overnight) because it will continue opening files.
Also, I was able to increase the operating system's limit of open files by issuing these 5 commands in the terminal (still testing on whether it made a difference):
- Code: Select all
echo kern.maxfiles=65536 | sudo tee -a /etc/sysctl.conf
echo kern.maxfilesperproc=65536 | sudo tee -a /etc/sysctl.conf
sudo sysctl -w kern.maxfiles=65536
sudo sysctl -w kern.maxfilesperproc=65536
ulimit -n 65536 65536