You are not logged in.
I'm still experiencing the problem. There is nothing under /etc/systemd/user, and there are no *.pacnew files inside /etc/pam.d.
It seems like the only way to resolve this is to downgrade. Any other ideas?
Offline
Yeah, get rid of any usage of dbus-launch
Offline
I had the same issue, either on a older installation either on a fresh one downgrading dbus too
Offline
Yeah, get rid of any usage of dbus-launch
I did a grep inside /etc for dbus-launch. The only hits were all inside the file /etc/xdg/xfce4/xinitrc (I'm using xfce4), then I commented out the line that invokes dbus-launch. The problem still persists.
Offline
I seem to have a linked dbus issue affecting kodi & kodi-standalone.
I have an Intel NUC running kodi using an MCE remote control. I upgraded the system yesterday.
Post-upgrade whilst watching a video if I pressed the "Stop" button or "Pause" on the remote the video would freeze and kodi be utterly unresponsive. Even with debug logging enabled kodi would stop all logging.
The only method to resolve this was to SSH in and restart the kodi service using systemd.
I also have a wireless RF keyboard attached - it was not affected. Likewise kodi remote-control via http is not affected.
Downgrading dbus to 1.10.8-1 and reinstalling libdbus-1.10.8-1 has resolved the issue.
The kodi.service uses /usr/bin/dbus-launch:
ExecStart = /usr/bin/xinit /usr/bin/dbus-launch --exit-with-session /usr/bin/kodi-standalone -- :0 -nolisten tcp vt7
The kodi wiki itself recommends using dbus-launch in the service file.
Offline
There is no kodi.service in the repos.
Offline
Ah you are right.
I had forgotten that kodi.service came from the AUR package kodi-standalone-service.
I hadn't looked at the issue since I downgraded dbus yesterday. I clearly have to look more closely at start up methods.
Thanks
Offline
LXQt +sddm I had unusable session,using startx + .xinitrc worked. Solution was the /etc/pam.d/systemd-user.pacnew file just put it in place.
# This file is part of systemd.
#
# Used by systemd --user instances.
account include system-login
session required pam_loginuid.so
session include system-login
I solved also my old problem of using $ systemctl --user start psd
Last edited by steff (2016-09-05 18:43:51)
Offline
my systemd-user file already looks like that
Ryzen 5900X 12 core/24 thread - RTX 3090 FE 24 Gb, Asus Prime B450 Plus, 32Gb Corsair DDR4, Cooler Master N300 chassis, 5 HD (1 NvME PCI, 4SSD) + 1 x optical.
Linux user #545703
/ is the root of all problems.
Offline
Moving 25-xlogin in /etc/X11/xinit/xinitrc.d/ out of the way fixed the problem for me.
This is the content of that file:
#! /usr/bin/bash
# Don't use the systemd user bus for the X session
if [ "$DBUS_SESSION_BUS_ADDRESS" = "unix:path=$XDG_RUNTIME_DIR/bus" ]; then
unset DBUS_SESSION_BUS_ADDRESS
fi
My guess is that some part of the system relies on DBUS_SESSION_BUS_ADDRESS, but a quick grep did not give me any results.
I'm using gnome and gdm. The Wayland session always worked for me, but not the default one.
EDIT: That file is part of the xlogin-git AUR package. No idea why I had that installed.
Last edited by mcallis (2016-09-06 09:56:41)
Offline
Nope, not got that file
Ryzen 5900X 12 core/24 thread - RTX 3090 FE 24 Gb, Asus Prime B450 Plus, 32Gb Corsair DDR4, Cooler Master N300 chassis, 5 HD (1 NvME PCI, 4SSD) + 1 x optical.
Linux user #545703
/ is the root of all problems.
Offline
Moving 25-xlogin in /etc/X11/xinit/xinitrc.d/ out of the way fixed the problem for me.
This is the content of that file:
#! /usr/bin/bash # Don't use the systemd user bus for the X session if [ "$DBUS_SESSION_BUS_ADDRESS" = "unix:path=$XDG_RUNTIME_DIR/bus" ]; then unset DBUS_SESSION_BUS_ADDRESS fi
My guess is that some part of the system relies on DBUS_SESSION_BUS_ADDRESS, but a quick grep did not give me any results.
I'm using gnome and gdm. The Wayland session always worked for me, but not the default one.EDIT: That file is part of the xlogin-git AUR package. No idea why I had that installed.
I do have that file. Even after I moved the file to somewhere else, I still have the same problem.
Offline
Perhaps you have another init file that either calls dbus-launch oder messes with the DBUS_SESSION_BUS_ADDRESS environment variable.
For me that seems to have been the problem.
Offline
I seem to have a linked dbus issue affecting kodi & kodi-standalone.
I have an Intel NUC running kodi using an MCE remote control. I upgraded the system yesterday.
Post-upgrade whilst watching a video if I pressed the "Stop" button or "Pause" on the remote the video would freeze and kodi be utterly unresponsive. Even with debug logging enabled kodi would stop all logging.
The only method to resolve this was to SSH in and restart the kodi service using systemd.
I also have a wireless RF keyboard attached - it was not affected. Likewise kodi remote-control via http is not affected.
Downgrading dbus to 1.10.8-1 and reinstalling libdbus-1.10.8-1 has resolved the issue.
The kodi.service uses /usr/bin/dbus-launch:
ExecStart = /usr/bin/xinit /usr/bin/dbus-launch --exit-with-session /usr/bin/kodi-standalone -- :0 -nolisten tcp vt7
The kodi wiki itself recommends using dbus-launch in the service file.
same problem here.
Deleting /usr/bin/dbus-launch --exit-with-session solved the issue
Offline
that's not it with me:
sudo grep -r DBUS_SESSION_BUS_ADDRESS *
grep: webmin/system-status/history/load5: Input/output error
xdg/xfce4/xinitrc:if test x"$DBUS_SESSION_BUS_ADDRESS" = x""; then
xdg/xfce4/xinitrc: export DBUS_SESSION_BUS_ADDRESS
And I already tried commenting that out of xinitrc
Ryzen 5900X 12 core/24 thread - RTX 3090 FE 24 Gb, Asus Prime B450 Plus, 32Gb Corsair DDR4, Cooler Master N300 chassis, 5 HD (1 NvME PCI, 4SSD) + 1 x optical.
Linux user #545703
/ is the root of all problems.
Offline
As pointed out by: Nicky726 on https://bugs.archlinux.org/user/3121
I removed dbus files located at /etc/systemd/user (dbus.service, dbus.socket)
This solved my problem.
I could no longer login to KDE. It said
Could not start d-bus. Can you call qdbus?
. Removing these files fixed it for me. DBUS_SESSION_BUS_ADDRESS was empty before as well and is now set.
Offline
I seem to have a linked dbus issue affecting kodi & kodi-standalone.
Odd, I do not see this on several different hardware configurations, ie aur/kodi-standalone-service-1.8-5 works fine with the current dbus package... it also starts if I replace the ExecStart line I am shipping with the package with the one you recommended, ie:
ExecStart = /usr/bin/xinit /usr/bin/kodi-standalone -- :0 -nolisten tcp vt7
Last edited by graysky (2016-09-08 19:19:05)
CPU-optimized Linux-ck packages @ Repo-ck • AUR packages • Zsh and other configs
Online
for me works:
Remove dbus-launch --exec-with-session from ~/.xinitrc
exec dbus-launch --exec-with-session startxfce4
Offline
Moving 25-xlogin in /etc/X11/xinit/xinitrc.d/ out of the way fixed the problem for me.
EDIT: That file is part of the xlogin-git AUR package. No idea why I had that installed.
Thanks mcallis, this solved it for me too. I have been scratching my head and had to refresh my mind WHY exactly I had this xlogin-git AUR package installed. Apparently back in the days I insisted on having an automatic X login without display manager. Really no idea why, because I actually use one
Last edited by Addow (2016-09-18 10:12:29)
Offline
I still don't know where this is launching from:
ps -ef | grep dbus-launch
steve 859 1 0 12:10 ? 00:00:00 dbus-launch --autolaunch b61fad530cae4af75f6fbc5800000720 --binary-syntax --close-stderr
steve 874 1 0 12:10 ? 00:00:00 /usr/bin/dbus-launch --sh-syntax --exit-with-session xfce4-session
I've removed all references to dbus-launch in relation to xfce4 that I can find. Parent process is root, and so no clues there.
EDIT:
b61fad530cae4af75f6fbc5800000720 appears to be pulseaudio
Last edited by Roken (2016-09-18 12:14:09)
Ryzen 5900X 12 core/24 thread - RTX 3090 FE 24 Gb, Asus Prime B450 Plus, 32Gb Corsair DDR4, Cooler Master N300 chassis, 5 HD (1 NvME PCI, 4SSD) + 1 x optical.
Linux user #545703
/ is the root of all problems.
Offline
Lookup systemd cgroups (systemctl status) to see if its related to a service/unit file.
Last edited by Maniaxx (2016-09-22 00:50:11)
sys2064
Offline
Did anyone find a fix for this? I've tried all the suggestions in the thread and no dice so far.
Offline
Please don't necrobump. Create a new topic and describe your setup, paste your config files, etc.
https://wiki.archlinux.org/index.php/Co … bumping.22
Closing.
Sakura:-
Mobo: MSI MAG X570S TORPEDO MAX // Processor: AMD Ryzen 9 5950X @4.9GHz // GFX: AMD Radeon RX 5700 XT // RAM: 32GB (4x 8GB) Corsair DDR4 (@ 3000MHz) // Storage: 1x 3TB HDD, 6x 1TB SSD, 2x 120GB SSD, 1x 275GB M2 SSD
Making lemonade from lemons since 2015.
Online