📖 ~1 min read
Table of contents
Symptom & Impact
Desktop becomes sluggish with sustained high CPU from tracker-miner processes.
Environment & Reproduction
Usually occurs after indexing large file trees or network mounts.
top -o %CPU
ps -eo pid,comm,%cpu --sort=-%cpu | head
Root Cause Analysis
File indexer scans excessive paths or repeatedly reindexes volatile directories.
Quick Triage
Confirm tracker process activity and index workload.
tracker3 status 2>/dev/null || true
tracker3 daemon -w 2>/dev/null || true
Step-by-Step Diagnosis
Identify directories driving index churn and current miner queues.
journalctl --user -u tracker-miner-fs-3 -n 80 --no-pager 2>/dev/null || true
find ~/ -maxdepth 2 -type d | head

Solution – Primary Fix
Pause or reset indexing and exclude large or transient paths.
Still having issues? Our Managed IT Services team can diagnose and resolve this for you. Get in touch for a free consultation.
tracker3 daemon --terminate 2>/dev/null || true
tracker3 reset --filesystem 2>/dev/null || true
gsettings reset-recursively org.freedesktop.Tracker3.Miner.Files

Solution – Alternative Approaches
Disable indexer auto-start for constrained desktop environments.
systemctl --user mask tracker-miner-fs-3.service tracker-extract-3.service
Verification & Acceptance Criteria
CPU utilization stabilizes and desktop interaction latency returns to normal.
top -o %CPU
ps -eo comm,%cpu --sort=-%cpu | head
Rollback Plan
Unmask services if search indexing is required by user workflows.
systemctl --user unmask tracker-miner-fs-3.service tracker-extract-3.service
Prevention & Hardening
Exclude heavy build and cache directories from desktop indexing defaults.
gsettings get org.freedesktop.Tracker3.Miner.Files ignored-directories
Related Errors & Cross-Refs
Related symptoms include fan noise, thermal throttling, and delayed file manager response.
Related tutorial: View the step-by-step tutorial for Ubuntu 24.04 LTS.
View all Ubuntu 24.04 LTS tutorials on the Tutorials Hub →
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
GNOME Tracker3 documentation and Ubuntu desktop performance notes.
Need Expert Help?
If you cannot resolve this yourself, our team offers hands-on Server Management, Managed IT Services, and flexible Support Plans. Contact us today — we respond within one business day.