Affected versions: Ubuntu 24.04 LTS

📖 ~1 min read

Table of contents
  1. Symptom & Impact
  2. Environment & Reproduction
  3. Root Cause Analysis
  4. Quick Triage
  5. Step-by-Step Diagnosis
  6. Solution – Primary Fix
  7. Solution – Alternative Approaches
  8. Verification & Acceptance Criteria
  9. Rollback Plan
  10. Prevention & Hardening
  11. Related Errors & Cross-Refs
  12. References & Further Reading

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
Illustrative mockup for ubuntu-24-04-lts — terminal_or_shell
Diagnostic output for performance/high-cpu-tracker — Illustrative mockup — Progressive Robot

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
Illustrative mockup for ubuntu-24-04-lts — log_or_console
Resolution output for performance/high-cpu-tracker — Illustrative mockup — Progressive Robot

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 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.