Killall: Difference between revisions
Appearance
Content deleted Content added
i have not seen a linux system that uses the killall to kill EVERYTHING. |
Reverted 1 edit by 108.4.54.124 (talk) (TW) |
||
Line 3: | Line 3: | ||
* The implementation supplied with genuine [[UNIX System V]] (including [[Solaris (operating system)|Solaris]]) and with the [[Linux]] sysvinit tools kills '''all''' processes that the user is able to kill, effectively shutting down the system if run by root. |
* The implementation supplied with genuine [[UNIX System V]] (including [[Solaris (operating system)|Solaris]]) and with the [[Linux]] sysvinit tools kills '''all''' processes that the user is able to kill, effectively shutting down the system if run by root. |
||
* The implementation supplied with the [[FreeBSD]] (including [[Mac OS X]]) and [[Linux]] psmisc tools is similar to the <tt>[[pkill]]</tt> and <tt>skill</tt> commands, killing only the processes specified on the command line |
* The implementation supplied with the [[FreeBSD]] (including [[Mac OS X]]) and [[Linux]] psmisc tools is similar to the <tt>[[pkill]]</tt> and <tt>skill</tt> commands, killing only the processes specified on the command line. |
||
Both commands operate by sending a [[Unix signal|signal]], like the <tt>[[Kill (command)|kill]]</tt> program. |
Both commands operate by sending a [[Unix signal|signal]], like the <tt>[[Kill (command)|kill]]</tt> program. |
Revision as of 02:31, 4 August 2019
killall is a command line utility available on Unix-like systems. There are two very different implementations.
- The implementation supplied with genuine UNIX System V (including Solaris) and with the Linux sysvinit tools kills all processes that the user is able to kill, effectively shutting down the system if run by root.
- The implementation supplied with the FreeBSD (including Mac OS X) and Linux psmisc tools is similar to the pkill and skill commands, killing only the processes specified on the command line.
Both commands operate by sending a signal, like the kill program.