Upon further investigation, I found that Chrome was throwing some error about too many open files.
~ tail -f ~/.xsession-errorsThe error, I can't remember, but was something in shared_memory_posix about /dev/shm/.com.google.Chrome and Too many open files.
If you look at the configured default open limit, it's very low (like 1024).
~ ulimit -nThe fix (so far, so good) seems to be editing /etc/security/limits.conf and adding the following line at the end of the file:
* hard nofile 65535
* soft nofile 65535Reboot the machine, and should be all good.
Note: I saw several people modifying their fs.file-max settings, but that made Cinnamon not even want to load and played hardcore shenanigans with my machine, overall.
No comments:
Post a Comment