In this post, I’m going to give some list of Linux commands, which is very useful process information and management.
#Shows information of currently running processes
ps
#Shows all the currently running processes
ps -ef
#Shows process information for <MyProcess>
ps -ef | grep <MyProcess>
#Shows and manages the top processes
top
#Interactive process viewer
htop
#Kill a process with process Id
kill <ProcessId>
#Kill all processes by process name
killall <processName>
#Starts program in the background program
&
#Shows stopped or background jobs
bg
#Brings the most recent background job to foreground
fg
#Brings job n to the foreground
fg n
To contribute :
” If you like Advance Computing and would like to contribute, you can mail your article to “computingadvance@gmail.com”. You will get credit as your name , email id, designation with article on this blog. “