* soft nofile 4096
* hard nofile 4096
$ ulimit -n
1024
$ ulimit -n 2048
-bash: ulimit: open files: cannot modify limit: Operation not permitted
$ ulimit -n 800
$ ulimit -n
800
$ ulimit -n 900
-bash: ulimit: open files: cannot modify limit: Operation not permitted
# cat /proc/sys/fs/file-max
188897
# ulimit -n 188898
# ulimit -n
188898