stop jackd from terminal/commandline

Optimize your system for ultimate performance.

Moderators: MattKingUSA, khz

Post Reply
HarryR
Established Member
Posts: 30
Joined: Thu Dec 22, 2016 2:10 pm
Been thanked: 2 times

stop jackd from terminal/commandline

Post by HarryR »

Hi,

does anybody know, how to stop jackd from terminal/commandline ?

I don't want to click "stop" in qjackctl or somerwhere else for some reason :D

best regards
nils
Established Member
Posts: 538
Joined: Wed Oct 22, 2008 9:05 pm
Has thanked: 35 times
Been thanked: 94 times
Contact:

Re: stop jackd from terminal/commandline

Post by nils »

To just stop jack:

Code: Select all

jack_control stop

For jack with dbus try

Code: Select all

jack_control exit

And there is always :)

Code: Select all

killall -9 jackd

All this will not gracefully quit the clients though.
HarryR
Established Member
Posts: 30
Joined: Thu Dec 22, 2016 2:10 pm
Been thanked: 2 times

Re: stop jackd from terminal/commandline

Post by HarryR »

nils wrote: Sun Jul 31, 2022 1:25 pm To just stop jack:

Code: Select all

jack_control stop

For jack with dbus try

Code: Select all

jack_control exit

And there is always :)

Code: Select all

killall -9 jackd

All this will not gracefully quit the clients though.
Thanks, works fine :D
User avatar
Linuxmusician01
Established Member
Posts: 1543
Joined: Mon Feb 23, 2015 2:38 pm
Location: Holland (Europe)
Has thanked: 774 times
Been thanked: 143 times

Re: stop jackd from terminal/commandline

Post by Linuxmusician01 »

I always do this also before 'killall jackd':

Code: Select all

pkill -9 jackdbus
Post Reply