Skip to content

Latest commit

 

History

History
19 lines (10 loc) · 309 Bytes

ulimit.md

File metadata and controls

19 lines (10 loc) · 309 Bytes

ulimit

Get and set user limits.

  • Get the properties of all the user limits:

ulimit -a

  • Get hard limit for the number of simultaneously opened files:

ulimit -H -n

  • Get soft limit for the number of simultaneously opened files:

ulimit -S -n

  • Set max per-user process limit:

ulimit -u 30