Wiki source code of Disable Gnome Tracker
Version 3.1 by Thomas Coelho (local) on 2023/05/08 09:07
Show last authors
author | version | line-number | content |
---|---|---|---|
1 | Gnome Tracker (in our system 22.04 tracker3) is the full text indexing and search service of gnome. Depending on the size on type of your file this may introduce a significant load on the file servers and the client. Sometimes the tracker database gets corrupted. The reason for this is currently not clear. This article should give some hints to control and fix the behavior of this service. | ||
2 | |||
3 | = Diagnostics = | ||
4 | |||
5 | Tracker uses several helper programs to get the required data from your files. This is '**tracker-miner-fs-**3' and '**tracker-extract-3**'. You can use top or any other load monitor to check the processes. If they are on the top of the most active processes and you see a high system load. With an Idle desktop the load should be lower then 1.0: | ||
6 | |||
7 | {{{ top - 11:03:08 up 2:41, 2 users, load average: 1.17, 1.29, 1.37}}} | ||
8 | |||
9 | = GUI Tools = | ||
10 | |||
11 | = Command line tools = | ||
12 | |||
13 | tracker3 status | ||
14 | |||
15 | tracker3 reset -r -s | ||
16 | |||
17 | |||
18 | = Completely disable the services = | ||
19 | |||
20 | The service is base on user systemd service, which can be disabled by overwriting: | ||
21 | |||
22 | {{code language="bash"}} | ||
23 | systemctl --user mask tracker-extract-3.service tracker-miner-fs-3.service tracker-miner-rss-3.service tracker-writeback-3.service tracker-xdg-portal-3.service tracker-miner-fs-control-3.service | ||
24 | {{/code}} |