[glug-t] One Day One GNU/Linux Command (ULIMIT)
- From: Bharathi Subramanian <sbharathi@xxxxxxxxxxxxx>
- To: GNU/Linux User Group of TCE <glugot@xxxxxxxxxxxxx>, VEC-FOSS <vecfoss@xxxxxxxxxxxxxxxx>, GNU/Linux Users Group - Trichy <glug_t@xxxxxxxxxxxxx>
- Date: Tue, 13 May 2008 11:33:09 +0530 (IST)
One Day One GNU/Linux Command
=============================
ulimit - Control the resources available to processes
Summary:
ulimit, Bash built-in command, provides control over the resources
(Virtual Mem, Max no .of process, Core file size, ...) available to
processes started by the shell.
For example, If max no. of user process is set to 5, then that
particular user can't run more then 5 process.
Examples:
$ ulimit -a -- Show All current limits.
$ ulimit -c -- Show core file size.
$ ulimit -c 1000 -- Set new core file size.
$ ulimit -u 5 -- Set max no .of user processes
$ ulimit -n -- Show max open files.
Read: help ulimit
HTH :)
--
Bharathi S
---------------------------------------------------------------
To unsubscribe send a mail to glug_t-request@xxxxxxxxxxxxx with
'unsubscribe' as subject.
Website: http://glugt.linuxisle.com
Other related posts:
- » [glug-t] One Day One GNU/Linux Command (ULIMIT)