give an analogue of this command but for s6: systemctl --user status dbus 08 June 2022, 15:48:56 I need it because the session in Wayland plasma does not display icons for example: telegram discord, etc., the meeting turned out the bus has a duplicate, and therefore the icons of these applications are not displayed that's what ps aux | grep dbus gives out: root 241 0.0 0.0 2960 1260 ? S 16:04 0:00 s6-supervise dbus-logroot 242 0.0 0.0 2960 1184 ? S 16:04 0:00 s6-supervise dbus-srvs6log 331 0.0 0.0 2960 1200 ? Ss 16:04 0:00 s6-log -d3 -b -- n3 s2000000 T /var/log/dbusdbus 369 0.3 0.1 6092 4448 ? Ss 16:04 0:07 dbus-daemon --system --nofork --nopidfile --print-pid=3khomyak 1243 0.0 0.0 4428 240 ? Ss 16:04 0:00 /usr/bin/dbus-daemon --syslog --fork --print-pid 4 --print-address 6 --sessionsddm 1281 0.0 0.0 5480 288 ? S 16:04 0:00 dbus-launch --autolaunch 84abadd8aecb8f7ce2250e4f629775fe --binary-syntax --close-stderrsddm 1282 0.0 0.0 4428 240 ? Ss 16:04 0:00 /usr/bin/dbus-daemon --syslog-only --fork --print-pid 5 --print-address 7 --sessionroot 1614 0.0 0.4 62952 16284 ? S 16:04 0:00 /usr/lib/sddm/sddm-helper --socket /tmp/sddm-auth90c651a9-2e76-4bef-b951-a62b0c4e464e --id 3 --start dbus-run-session /usr/bin/startplasma-x11 --user khomyakkhomyak 1624 0.0 0.0 3816 1304 ? S 16:04 0:00 dbus-run-session /usr/bin/startplasma-x11khomyak 1631 0.0 0.0 5036 3772 ? S 16:04 0:00 dbus-daemon --nofork --print-address 4 --sessionkhomyak 1801 0.0 0.5 226188 23792 ? Sl 16:04 0:00 /usr/bin/gmenudbusmenuproxykhomyak 8878 0.0 0.0 6712 2476 pts/2 S+ 16:39 0:00 grep --color=auto --exclude-dir=.bzr --exclude-dir=CVS --exclude-dir=.git --exclude-dir=.hg --exclude-dir=.svn --exclude-dir=.idea --exclude-dir=.tox dbus
Re: give an analogue of this command but for s6: systemctl --user status dbus Reply #1 – 08 June 2022, 16:21:42 It doesn't really exist. You can use s6-svstat to point to a specific service directory (for example, "s6-svstat /run/s6-rc/servicedirs/dbus-srv"), but that would only tell you that the root dbus-daemon is up and running. There's no s6-managed user dbus process however. What is spawned when you login is just automatic (I think maybe logind does this but I don't know for sure). You could, in theory, set up your own dbus service for just the local user, but I don't think that would help anything and would likely just cause more problems.
Re: give an analogue of this command but for s6: systemctl --user status dbus Reply #2 – 08 June 2022, 17:51:27 deleted. Thought it's 66