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 |
How do you list the files in an UNIX directory while also showing hidden files?
What command is used to replace the existing string with some other?
What is shrinking file system in AIX where it actually resides?
What are the dos commands?
How can you change the owner or group of a file?
What Command is used to make a directory?
in UNIX,How to copy file into directory?
How do you repeat a command in terminal?
what is the use of nice command?
Which command is used to delete all files in the current directory and all its sub-directories?
How do you grep recursively?
What are file permissions in Unix, and how are they represented?