Limits are process-specific. ulimit
is a shell bult-in and can only change limits for this shell and the processes started from this shell. sudo ulimit
doesn't make any sense. Even if it won't fail it would only influence the processes started by sudo
at the same time, and there aren't any. It can't change the limit for the current session since it creates a new session (for user root) and terminates it immediately afterwards.
In order to raise your limit above the hard limit you have to either raise the global hard limit for all users or set a different limit for your specific user. Those limits are defined in /etc/security/limits.conf
(or /etc/security/limits.d/
). Edit this file and create a new entry for your user:
sunpy hard nofile 65535
Save the file and open a new session. Afterwards calling ulimit -Hn
inside the new session should show you the new hard limit for the number of open files. In order to use the hard limit, you have to raise your current soft limit to the hard limit by calling ulimit -n 65535
.
Of course you can also change your soft limit permanently by specifying soft instead of hard in your /etc/security/limits.conf
. Then you don't have to raise your soft limit manually, but the new limit will apply for each of your sessions.
Oh, and according to this answer it seems like you have to edit /etc/pam.d/common-session*
and add:
session required pam_limits.so
if not already done. Otherwise those limits won't apply for your sessions.
ulimit
manpage adviced to use the bash builtinulimit
instead. Am not sure sudo can be used with builtins, can be it only available for external commands? – 41754 Jul 05 '13 at 07:59