Process Command • top command The top program provides a dynamic real-time view of a running system. # top • dig is useful for network troubleshooting and for educational purposes. # dig pts/1 • ps command to find out what processes are running on your system. # ps -ef # ps -e Where: -e to display all the processes. -f to display full format listing. • Kill : We mostly use the kill command for terminating or killing a process. #Listing all the signal names. # kill -l • The mount command mounts a storage device or filesystem, making it accessible and attaching it to an # bg Run any command like top then bg %1 — Move the 1st active job to background. • fg = continues a stopped job by running it in the foreground fg – Typing fg alone will resume the first job were it was left off. fg %1 – specifying the job (in this case 1) will resume that particular job. The job id can be determined by running bg Then kill %1 and see jobs command : Vi...
FOR BEGINNER PROGRAMMER & COMPUTER SCIENCE STUDENTS