Change process priority in linux#
To change a process's priority after it's running, run renice.
Example: Change priority of kino to highest priority
$ ps aux | grep kino $ renice -20 13375
where 13375 was kino's pid.
Linux - Performance
To change a process's priority after it's running, run renice.
Example: Change priority of kino to highest priority
$ ps aux | grep kino $ renice -20 13375
where 13375 was kino's pid.