processes

Proccesses

See running items in current terminal with

1ps
bash

or more with

1ps -a
bash

Or the entire system with

1ps -e
bash

Or the entire system with more information, BSD style, with:

1ps aux
bash

And then search for a particular program with

1ps aux | grep cmus
bash

Jobs

Pause a job with ^z. Put it in the background with the '&' suffix.

List jobs in the current shell with

1jobs
bash

And then you can pull number 1 up again with

1fg 1
bash

Or continue running a stopped job with:

1bg 1
bash

Nice

This changes how nice a program is, from -20 to 19.

Install a program, but nicely, at nice value '10':

1nice -10 sudo apt -y install libreoffice
bash

Aggressively use Steam, with a nice value of '-13'.

1nice --13 steam&
bash

Find out that Steam's fucking everything up, so you change its nice value with 'renice':

1renice --5 -p 3781
bash

Nerf all of roach-1's processes:

1renice 10 -u roach-1
bash

... or the entire group

1renice -14 -g hackers
bash