限制一组进程的 CPU 和内存使用
Limit a set of processes' CPU and memory usage
浏览网页对我来说优先级较低,因此我希望处理它的所有进程也都处于低优先级。
这种方法有效吗?
- 使用
nice
命令打开控制台 window。
- 从此控制台启动浏览器。
从这个控制台启动的程序会继承控制台本身的优点吗?
Will the program launched from this console inherit the niceness of the console itself?
答案是肯定的。你可以检查一下nice -n19 xterm
。在控制台中,启动一些进程,然后使用 ps -efl | grep someprocess
检查 nice 级别。漂亮的水平是可以继承的。
浏览网页对我来说优先级较低,因此我希望处理它的所有进程也都处于低优先级。
这种方法有效吗?
- 使用
nice
命令打开控制台 window。 - 从此控制台启动浏览器。
从这个控制台启动的程序会继承控制台本身的优点吗?
Will the program launched from this console inherit the niceness of the console itself?
答案是肯定的。你可以检查一下nice -n19 xterm
。在控制台中,启动一些进程,然后使用 ps -efl | grep someprocess
检查 nice 级别。漂亮的水平是可以继承的。