increase ulimit

1024 is not enough.  This might be only on Ubuntu, where 1024 is already the default, but it's not just me.
This commit is contained in:
Sean Channel 2012-09-02 14:00:28 -07:00
parent 1904008be3
commit c5966e0980

View file

@ -132,9 +132,11 @@ Check your file descriptor limit with::
ulimit -n
If it is less than 1024, you should increase it with::
If it is less than 2047, you should increase it with::
ulimit -n 2047
(or "limit descriptors 2047" for c-shell)
ulimit -n 1024
Running the tests
~~~~~~~~~~~~~~~~~