1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-01 18:35:23 +02:00
tldr/pages/common/ulimit.md
2025-03-10 04:35:43 +01:00

381 B

ulimit

Get and set resource limits for user processes. More information: https://manned.org/ulimit.

  • 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