É assim que o ulimit funciona.
Se você deseja permitir a um usuário 4 processos em execução,
você teria 1 + 4 (um é para o processo bash que o usuário está usando no momento)
Dos meus testes,
criou um teste de usuário,
ran ulimit -u 1
não pôde executar nenhum comando como bash, já sendo um processo em execução,
ran ulimit -u 2
só pode executar um processo, por exemplo,
ps aux -> returned value but ps aux | grep test -> did not return as it's using 2 processes
Por fim, o uso do ulimit na sua conta root não é recomendado, o ulimit é usado principalmente para grandes ambientes multiusuário.
Espero que isso ajude!
Felicidades,
===============
-a All current limits are reported
-b The maximum socket buffer size
-c The maximum size of core files created
-d The maximum size of a process’s data segment
-e The maximum scheduling priority ("nice")
-f The maximum size of files written by the shell and its children
-i The maximum number of pending signals
-l The maximum size that may be locked into memory
-m The maximum resident set size (many systems do not honor this limit)
-n The maximum number of open file descriptors (most systems do not allow this
value to be set)
-p The pipe size in 512-byte blocks (this may not be set)
-q The maximum number of bytes in POSIX message queues
-r The maximum real-time scheduling priority
-s The maximum stack size
-t The maximum amount of cpu time in seconds
-u The maximum number of processes available to a single user
-v The maximum amount of virtual memory available to the shell
-x The maximum number of file locks
-T The maximum number of threads