![]() |
Software > Linux tools >
Terminate a process.
Kill all killable processes:
\kill -9 -1
Kill something specific:
\kill $( pidof xterm )
But this only kills one occurrence; you probably want killall
.
Last updated 2022-06-05 at 18:50:49
![]() |
Software > Linux tools >
Terminate a process.
Kill all killable processes:
\kill -9 -1
Kill something specific:
\kill $( pidof xterm )
But this only kills one occurrence; you probably want killall
.
Last updated 2022-06-05 at 18:50:49
ported