I use a terminal server in my computer lab so I see such things often.
#pkill -u musol will get rid of musol's processes.
My favourite is, if you want to kill all ordinary users with directories in /home,
#cd /home
#for f in *;do pkill -u$f;done
It is really neat to see all the screens blank all over the room
A related command is pgrep for finding a user's processes.
pgrep naughty
will find every process called naughty.
pgrep firefox will find all instances of firefox, etc.
Good fun!