Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 244 Bytes

unix_processes_running.md

File metadata and controls

17 lines (14 loc) · 244 Bytes

Want to know what is slowing down your mac? On your ‘terminal’:

$ top -o cpu

To quit: ctrl-c

# list processes
$ ps                    

# kills process with that number
$ kill 6771           

# hard kill
$ kill -9 6771