Kill Processes Flashcards

1
Q

What command start processes in the background?

A
<script>
<arguments> &
</script>
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What command list existing jobs?

A

jobs

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What command stops a process from running?

A

kill -SIGSTOP %<#>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What command is used to terminate a process from running the background?

A

kill -SIGTERM %<#>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What command resumes are background process?

A

kill -SIGCONT %<#>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What command list all currently running processes?

A

ps -ef

How well did you know this?
1
Not at all
2
3
4
5
Perfectly