What are Unix processes, and how do you manage them?
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 |
What is clustering in HP and how it's work?
How to check whether some services are running in another server or not? Suppose i am currently in a server named A.I want to check whether some services are running in server B without logging into the server B.
3 Answers Amazon, MBA, Syntel, TCS, Unisys,
How does one process we can start an executable file? How to get the PID process, which we started?
what is telnet?
Write a command that will output the sorted contents of a file named in.txt and place the output in another file named out.txt, while at the same time excluding duplicate entries.
What is the difference between awk and grep?
write grep commands to select the lines that have exactly two characters
fork in unix ?
What is the use of awk command in unix?
What is FIND, GREP and SED ? Could you please give me the difference between all the three? Where we use this commnands?
What is pid?
What is a Unix signal, and how do you handle them?