I have the following lines repeating every minute in my /var/log/syslog
file.
Oct 9 19:19:42 my_machine dbus-daemon[2138]: [session uid=1000 pid=2138] Activating via systemd: service name='org.freedesktop.Tracker1.Miner.Extract' unit='tracker-extract.service' requested by ':1.66' (uid=1000 pid=2555 comm="/usr/lib/tracker/tracker-miner-fs " label="unconfined")
Oct 9 19:19:42 my_machine systemd[2118]: Starting Tracker metadata extractor...
Oct 9 19:19:42 my_machine dbus-daemon[2138]: [session uid=1000 pid=2138] Successfully activated service 'org.freedesktop.Tracker1.Miner.Extract'
Oct 9 19:19:42 my_machine systemd[2118]: Started Tracker metadata extractor.
Oct 9 19:19:53 my_machine systemd[2118]: tracker-extract.service: Succeeded.
Can somebody explain what is going on.
My system is Ubuntu 19.04 with latest updates. This problem seems to have started around April 21st. Probably after upgrading 18.10 to 19.04.
How can I change the period from 1 minute to (say) 1 hour?
gsettings list-recursively | grep -i org.freedesktop.Tracker | sort | uniq
shows log verbosity set to 'errors', and crawling-interval-2
. I don't use GNOME but have a couple of tools installed I don't want to break by masking the service completely. – James EJ Jan 20 '21 at 20:37journalctl
. – Pablo Bianchi Jan 23 '21 at 01:10verbosity
is set toerrors
, andorg.freedesktop.Tracker.Miner.Files crawling-interval
is-1
. – FedKad Jan 23 '21 at 09:33tracker reset --hard
followed bysystemctl --user mask tracker-{miner-apps,miner-fs,store}
seems to do the trick. – codlord Jan 24 '21 at 11:59dbus-monitor
. – James EJ Jan 27 '21 at 03:50tracker daemon -k
stops the process and has options to pause throughtracker help daemon
– James EJ Jan 27 '21 at 03:51/etc/xdg/autostart/tracker-*
. Perhaps just tracker-store looking at https://gitlab.gnome.org/GNOME/tracker/-/merge_requests/309/diffs – James EJ Jan 27 '21 at 03:57