Unix and Linux Discussions Tagged with processes |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
5 |
8,151 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
12,046 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
5,475 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
11,624 |
UNIX for Beginners Questions & Answers |
|
|
|
19 |
16,428 |
AIX |
|
|
|
3 |
3,898 |
Shell Programming and Scripting |
|
|
|
5 |
3,636 |
UNIX for Beginners Questions & Answers |
|
|
|
24 |
23,097 |
AIX |
|
|
|
4 |
4,329 |
Shell Programming and Scripting |
|
|
|
3 |
2,272 |
Shell Programming and Scripting |
|
|
|
2 |
2,203 |
Shell Programming and Scripting |
|
|
|
1 |
2,715 |
Shell Programming and Scripting |
|
|
|
6 |
1,940 |
Shell Programming and Scripting |
|
|
|
1 |
5,481 |
Linux |
|
|
|
2 |
1,845 |
UNIX for Dummies Questions & Answers |
|
|
|
13 |
3,819 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
3,215 |
Shell Programming and Scripting |
|
|
|
1 |
2,512 |
UNIX for Dummies Questions & Answers |
|
|
|
11 |
41,699 |
Linux |
|
|
|
0 |
5,036 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
8,846 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
5,816 |
Programming |
|
|
|
6 |
8,733 |
UNIX for Dummies Questions & Answers |
|
|
|
6 |
26,292 |
AIX |
|
|
|
6 |
48,087 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
5,097 |
Shell Programming and Scripting |
|
|
|
1 |
1,791 |
Shell Programming and Scripting |
|
|
|
0 |
2,015 |
Complex Event Processing RSS News |
|
|
|
3 |
8,957 |
Shell Programming and Scripting |
|
|
|
1 |
3,516 |
Filesystems, Disks and Memory |
|
|
|
13 |
9,617 |
SCO |
|
|
|
0 |
2,485 |
Complex Event Processing RSS News |
|
|
|
3 |
6,450 |
Solaris |
|
|
|
1 |
6,881 |
Shell Programming and Scripting |
|
|
|
1 |
2,564 |
Shell Programming and Scripting |
|
|
|
9 |
30,121 |
Shell Programming and Scripting |
|
|
|
3 |
19,171 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
2,684 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
1,683 |
Software Releases - RSS News |
|
|
|
2 |
5,832 |
AIX |
killall(1M) killall(1M)
NAME
killall - kill all active processes
SYNOPSIS
[signal]
DESCRIPTION
is a procedure used by to kill all active processes not directly related to the shutdown procedure.
is chiefly used to terminate all processes with open files so that the mounted file systems are no longer busy and can be unmounted. sends
the specified signal to all user processes in the system, with the following exceptions:
the process;
all processes (including background processes) associated with the terminal from which was invoked;
any process, if owned by
any process, if owned by
any process;
any process;
any process.
obtains its process information from and therefore may not be able to perfectly identify which processes to signal (see ps(1)).
If no signal is specified, a default of (kill) is used.
is invoked automatically by The use of is recommended over using by itself (see shutdown(1M)).
FILES
SEE ALSO
fuser(1M), kill(1), ps(1), shutdown(1M), signal(5).
STANDARDS CONFORMANCE
killall(1M)