Linux Basics

You are currently auditing this course.
52 / 85

To kill any running process, please use the command:

kill processid

Basically, kill lets you send a signal to the running process. For example, to send the terminate signal, you can use

kill -9 processid

You can use kill -l to get list of all available signals.

There is a process running in the background with the name tail. Can you kill it?


Loading comments...