June 2016
Beginner
456 pages
9h 31m
English
Ubuntu is a multiuser and multi-process operating system. If a single user or process is consuming too many resources, other processes might not be able to use the system. In this recipe, you will see how to set resource limits to avoid such problems.
User account with root privileges is required.
Following are the steps to set the resource limits:
$ulimit –t.limits.conf with the following command:
$sudo nano /etc/security/limits.conf
username soft cpu 0 # max cpu time in minutes username hard cpu 1000 # max cpu time in minutes
Read now
Unlock full access