What are Unix processes, and how do you manage them?
Answer Posted / hr@tgksolutions.com
A process in Unix is an instance of a running program. Unix processes have a unique Process ID (PID) and can be managed using various commands:
• ps: Displays the list of running processes.
• top: Shows real-time system activity, including processes.
• kill: Terminates a process using its PID. For example, kill 1234 terminates the process with PID 1234.
• nice: Sets the priority of a process.
• nohup: Runs a process in the background, immune to hangups.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What do chgrp command do?
Who command in unix operating system?
Can you enlist some commonly used network commands?
What is difference between grep and find command in unix?
How do I open a port?
What is the comma to show the space allocation of files?
Is there a way to erase all files in the current directory, including all its sub-directories, using only one command?
Which command is used to delete all files in the current directory and all its sub-directories?
What does this command do,"$more readme.txt“?
What is merge command in unix?
What does the “echo” command do?
What is unix command?
Name the general commands in using unix os for a beginner?
How do I search a whole word in vim?
What are awk commands?