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 does the system know where one command ends and another begins?
How do you repeat a command in terminal?
what will this do $cat > file.c ?(file.c is a file in current directory)
what do you understand by 'unix is a portable os'?
What is the functionality of a top command?
How do I find previous commands in unix?
What are grep patterns?
How do you change your account's password?
What does 'mkdir' command do in UNIX?
What is the behavioural difference between cmp and diff commands?
what is the command to list files in a directory in UNIX?
in UNIX,How to copy file into directory?