I want to mount a smb share in userspace using gio mount and a kerberos ticket. That works so far. But the dbus-daemon constantly spits out a message on stdout like
dbus-daemon[2305]: [session uid=26372637263 pid=2305] Activating service name=bla bla
or
Successfully activated service bla bla
To be able to use "gio mount" I have to restart the bash using
exec dbus-run-session -- bash
and I do that too to start a dbus-session. Only the mentioned messages bother me. STDOUT/STDERR redirection with
&> /dev/null
is not an option and consequently ignored or I use it incorrectly.
What can I do here?