Glossary

killall

killall looks up processes by executable name and sends them a signal: SIGTERM by default, like kill. It is convenient when you don't care about the PID, only the command.

killall firefox                  # terminate all firefox processes
killall -9 chrome                # SIGKILL by name
killall -u alice                  # kill all processes owned by alice
killall -i sshd                  # prompt before each kill

Beware: on some non-Linux Unixes (notably older Solaris) killall means "kill every process on the system" and is used to shut down. On Linux it is always name-based and safe within that constraint.

Related terms: kill, pkill, ps

Discussed in:

This site is currently in Beta. Contact: Chris Paton

Textbook of AI · Textbook of Usability · Textbook of Digital Health

Auckland Maths and Science Tutoring

AI tools used: Claude (research, coding, text), ChatGPT (diagrams, images), Grammarly (editing).