vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| |||
| Roman schrieb: > How can I check how many processes are used by a user? ps -ef | grep <username> | wc -l > What happens when a user reaches max user processes as specified by > maxuproc? He can't start a new process > thanks in advance |
| ||||
| Friedhelm Neyer <Friedhelm.Neyer@t-online.de> wrote: >> How can I check how many processes are used by a user? > > ps -ef | grep <username> | wc -l ps -fu <username> | wc -l might be more accurate in corner cases (where the username appears somewhere in command arguments). Yours, Laurenz Albe |