You are not logged in.
How did you find out where this service comes from? (I looked into the PKGBUILD of the dbus-broker-units and found nothing)
[tobiasb@tobias-pc ~]$ cat /usr/share/dbus-1/services/org.jackaudio.service
[D-BUS Service]
Name=org.jackaudio.service
Exec=/usr/bin/jackdbus auto
Offline
Looking at the file list an and knowing how those are generally triggered.
There's no explicit service, eg. org.knopwob.dunst.service has "SystemdService=dunst.service" for /usr/lib/systemd/user/dunst.service and I suspect the difference is that dbus-broker creates a generic one.
Try to add
SystemdService=/usr/lib/systemd/system/jackaudio.service
And that file w/
[Unit]
Description=You don't know jack
Documentation=Jackyourself
[Service]
Type=dbus
BusName=org.jackaudio.service
ExecStart=/usr/bin/jackdbus auto
KillSignal=SIGKILL
Which will hopefully start that service and use SIGKILL to terminate it.
Offline
Sorry, I've been busy with other things and haven't been able to attend to discussion, but it seems that jack2-dbus has been the source of my issues, too. Killing jackdbus manually just before a reboot/shutdown allows a normal functionality:
# systemctl status | grep jack
└─1695 /usr/bin/jackdbus auto
# kill -9 1695
This stops the service without any delay.
Offline
ffwd to my previous post and add that service, see whether
a) the generic service disappears
b) the system shuts down "properly" (jackdbus not responding to sigterm is a problem in that process) now
Offline
Thanks seth, i had a similar problem, jour suggestion solved it for me
Offline
Has anyone filed a bug against jack?
Offline
Has anyone filed a bug against jack?
Not yet, I wasn't sure how to proceed before your last comment.
I verified your suggestions in your comment #27 and it solves the problem on my machine, too.
I'll post the bug report when ready here.
Offline
Upstream issue created
Offline
hi, I just found this thread after I ran into my laptop not shutting down or rebooting properly anymore. and I can report: the same problem which you have been discussing was the case here and Seths solution helped – thanks!
the only thing I observe is when I kill jackdbus manually like in #28 my laptop reboots/shuts down instantly while - having the unit created as in #27 - and shutting down/rebooting via my DE's (gnome) default means takes 1 min until the laptop is poperly down.
but let's wait what developers over at jack do. thanks @topasiss for filing the bug!
Offline
i'm getting the same issue, and I’ve been bumping my head trying to figure this out. Apparently, this has not been solved yet
Offline
Have you seen https://bbs.archlinux.org/viewtopic.php … 2#p2158342 and tried https://bbs.archlinux.org/viewtopic.php … 4#p2146584 ?
Offline
Have you seen https://bbs.archlinux.org/viewtopic.php … 2#p2158342 and tried https://bbs.archlinux.org/viewtopic.php … 4#p2146584 ?
yes i did indeed report it to the github page but i did not tried the solution. im doing it manually with kill -9. the solution implies an autostart of it each time i login in which i dont want. i just wat it to terminate when i quit the app. will wait for the bug fix hopefully..
Offline
the solution implies an autostart of it each time i login
No? How do you… lmg, SchrottGPT?
It's still dbus activated, you're just redefining how to kill that service.
Offline
the solution implies an autostart of it each time i login
No? How do you… lmg, SchrottGPT?
It's still dbus activated, you're just redefining how to kill that service.
can you please provide me a step by step guide on how to do that than?
Offline
You mean for adding a file or editing one??
What exactly don't you understand about the information in #26 and #27?
Offline