<div dir="ltr">I'm building colord 1.2.12 (stable API) from src<br><br>I've configured with<br><br>                    colord 1.2.12<br>                  ===================<br><br>        prefix:                    /usr/local<br>        datadir:                   ${datarootdir}<br>        compiler:                  /usr/bin/gcc-6<br>        cflags:                    -O3 -Wall -fstack-protector -funwind-tables -fasynchronous-unwind-tables -fmessage-length=0 -grecord-gcc-switches -march=native -mtune=native<br>        cppflags:                  -O3 -Wall -fstack-protector -funwind-tables -fasynchronous-unwind-tables -fmessage-length=0 -grecord-gcc-switches -march=native -mtune=native -D_FORTIFY_SOURCE=2 -DG_DISABLE_SINGLE_INCLUDES -DG_DISABLE_DEPRECATED -DGSEAL_ENABLE<br>        cd-it8:                    $(top_builddir)/client/cd-it8<br>        cd-create-profile:         $(top_builddir)/client/cd-create-profile<br>        gobject-introspection:     yes<br>        PolicyKit support:         yes<br>        Reverse engineering tools: no<br>        BASH completion support:   yes<br>        SANE support:              no<br>        Udev support:              yes<br>        GUsb support:              yes<br>        Extra print profiles:      no<br>        Install tests:             no<br>        ArgyllCMS sensor:          yes<br>        Building libcolordcompat:  yes<br>        Vala API generator:        yes<br>        Daemon user:               colord<br>        udev rules.d dir:          /usr/lib/udev/rules.d<br>        systemd-login support:     yes<br>        systemd service dir:       /usr/lib/systemd/system<br>        Unix support:              yes<br><br>build/install<br><br>    make V=1<br>    make install<br><br>reports no obvious errors<br><br>after install<br><br>    updatedb<br>    locate ColorManager | egrep -v "/src"<br>        /usr/local/etc/dbus-1/system.d/org.freedesktop.ColorManager.conf<br>        /usr/local/share/dbus-1/interfaces/org.freedesktop.ColorManager.Device.xml<br>        /usr/local/share/dbus-1/interfaces/org.freedesktop.ColorManager.Profile.xml<br>        /usr/local/share/dbus-1/interfaces/org.freedesktop.ColorManager.Sensor.xml<br>        /usr/local/share/dbus-1/interfaces/org.freedesktop.ColorManager.xml<br>        /usr/local/share/dbus-1/system-services/org.freedesktop.ColorManager.service<br><br>    cat /usr/local/share/dbus-1/system-services/org.freedesktop.ColorManager.service<br>        [D-BUS Service]<br>        Name=org.freedesktop.ColorManager<br>        Exec=/usr/local/lib64/colord<br>        User=colord<br>        SystemdService=colord.service<br><br>    locate colord.service<br>        /usr/lib/systemd/system/colord.service<br><br>    cat /usr/lib/systemd/system/colord.service<br>        [Unit]<br>        Description=Manage, Install and Generate Color Profiles<br><br>        [Service]<br>        Type=dbus<br>        BusName=org.freedesktop.ColorManager<br>        ExecStart=/usr/local/lib64/colord<br>        User=colord<br>        # We think that udev's AF_NETLINK messages are being filtered when<br>        # network namespacing is on.<br>        # PrivateNetwork=yes<br>        PrivateTmp=yes<br><br>making sure<br><br>    pkill colord<br>    ps ax | grep colord<br>        (empty)<br><br>exec<br><br>    which colormgr<br>        /usr/local/bin/colormgr<br>    colormgr get-devices<br><br>immediately returns<br><br>    No connection to colord: Error calling StartServiceByName for org.freedesktop.ColorManager: GDBus.Error:org.freedesktop.systemd1.LoadFailed: Unit colord.service failed to load: No such file or directory.<br><br>and in<br><br>    /var/log/messages<br><br>        Oct 30 16:09:45 test dbus[1842]: [system] Activating via systemd: service name='org.freedesktop.ColorManager' unit='colord.service'<br>        Oct 30 16:09:45 test dbus[1842]: [system] Activation via systemd failed for unit 'colord.service': Unit colord.service failed to load: No such file or directory.<br><br>I'm not sure why the error is "No such file or directory" ... colord.service clearly exists.<br><br>According to<br><br>    Bug 92165 - colord-session: Add a systemd user service corresponding to the D-Bus session service <br>    <a href="https://bugs.freedesktop.org/show_bug.cgi?id=92165">https://bugs.freedesktop.org/show_bug.cgi?id=92165</a><br><br>        "This deliberately does not configure the systemd unit to be started on login: it is still only launched on-demand via D-Bus activation, just like it always was."<br><br>iiuc, on use of any colord tool, e.g. 'colormgr', the <br><br>    /usr/local/share/dbus-1/system-services/org.freedesktop.ColorManager.service<br><br>service should be triggered, and then should invoke/start<br><br>    /usr/lib/systemd/system/colord.service<br><br>What am I missing here?<br></div>