You are not logged in.

#1 2009-02-18 18:40:27

Zibi1981
Member
From: Poland
Registered: 2008-01-31
Posts: 644

Meta Tracker using too much resources and making HDD to act loudly

Recently I have been searching for a good desktop indexing application and I noticed Meta Tracker. It's quite easy to understand and it's interface looks good, even though I'm on KDE not GNOME. I have added trackerd to my /home/$USER/.kde/Autostart folder and it is working correctly after a fresh start. The problem I have with it is that it consumes too much CPU (usually 8-20%) and my disk acts very loudly while it runs. I'm getting the feeling that trackerd is accessing my HDD every 2 seconds producing lots of unwanted noise, and possibly contributing to faster wear and tear of my HDD.
Can someone using this program tell me if it's a normal behavior of Tracker, or did I do something wrong maybe.

Any help greatly appreciated smile

Last edited by Zibi1981 (2009-02-18 18:41:12)


"... being a Linux user is sort of like living in a house inhabited by a large family of carpenters and architects. Every morning when you wake up, the house is a little different. Maybe there is a new turret, or some walls have moved. Or perhaps someone has temporarily removed the floor under your bed."

MSI Raider GE78HX 13VI-032PL

Offline

#2 2009-02-18 18:58:29

bwalk
Member
Registered: 2007-03-21
Posts: 177

Re: Meta Tracker using too much resources and making HDD to act loudly

You have let trackerd finished its initial indexing? Here, I don't recognize the daemon anymore, except when really large amounts of data get created. Anyways, you can finetune tracker via ~/.config/tracker/tracker.cfg

Offline

#3 2009-02-18 21:43:15

Zibi1981
Member
From: Poland
Registered: 2008-01-31
Posts: 644

Re: Meta Tracker using too much resources and making HDD to act loudly

Well, it surely had enough time to finish indexing. At the moment trackerd is using >30% of my CPU load, and HDD "ticks" to frequently AFAIK. I'm not very familiar with Meta Tracker and other indexing programs. Is it a way to make them use less resources? And BTW can I add trackerd to the DAEMONS section of my /etc/rc.conf file instead of creating link in KDE's autostart directory? This  magnifying glass icon jumping just after I enter my desktop annoys me.


"... being a Linux user is sort of like living in a house inhabited by a large family of carpenters and architects. Every morning when you wake up, the house is a little different. Maybe there is a new turret, or some walls have moved. Or perhaps someone has temporarily removed the floor under your bed."

MSI Raider GE78HX 13VI-032PL

Offline

#4 2009-02-20 16:37:35

bwalk
Member
Registered: 2007-03-21
Posts: 177

Re: Meta Tracker using too much resources and making HDD to act loudly

Below are some statistics and my (I think default) tracker.cfg. trackerd gives me around 40 MB memory and exactly no cpu consumption. Afaik, there is no run-script for tracker which you can add to rc.conf.

-------fetching index stats---------

default : 0 
Files : 52590 
Folders : 4062 
Documents : 1318 
Images : 2652 
Music : 400 
Videos : 380 
Text : 6968 
Development : 32892 
Other : 3918 
Emails : 0 
EvolutionEmails : 0 
ThunderbirdEmails : 0 
KMailEmails : 0 
EmailAttachments : 0 
EvolutionAttachments : 0 
KMailAttachments : 0 
Conversations : 0 
GaimConversations : 0 
Applications : 373 
Webhistory : 0 
------------------------------------
[General]
# Log Verbosity - Valid values are 0 (displays/logs only errors), 1 (minimal), 2 (detailed), and 3 (debug)
Verbosity=0
# Set the initial sleeping time, in seconds
InitialSleep=45
# Minimizes the use of memory but may slow indexing down
LowMemoryMode=false

[Watches]
# List of directory roots to index and watch seperated by semicolons
WatchDirectoryRoots=/home/bwalk;
# List of directory roots to index but not watch (no live updates but are refreshed when trackerd is next restarted) seperated by semicolons
CrawlDirectory=
# List of directory roots to not index and not watch seperated by semicolons
NoWatchDirectory=/home/bwalk/Download/torrent;
# Set to false to prevent watching of any kind
EnableWatching=true

[Indexing]
# Throttles the indexing process. Allowable values are 0-20. higher values decrease indexing speed
Throttle=10
# Disables the indexing process
EnableIndexing=true
# Enables indexing of a file's text contents
EnableFileContentIndexing=true
# Enables generation of thumbnails
EnableThumbnails=false
# Enables fast index merges but may hog the disk for extended periods
EnableFastMerges=false
# List of partial file patterns (glob) seperated by semicolons that specify files to not index (basic stat info is only indexed for files that match these patterns)
NoIndexFileTypes=;
# Sets minimum length of words to index
MinWordLength=3
# Sets maximum length of words to index (words are cropped if bigger than this)
MaxWordLength=30
# Sets the language specific stemmer and stopword list to use 
# Valid values are 'en' (english), 'da' (danish), 'nl' (dutch), 'fi' (finnish), 'fr' (french), 'de' (german), 'it' (italien), 'nb' (norwegian), 'pt' (portugese), 'ru' (russian), 'es' (spanish), 'sv' (swedish)
Language=en
# Enables use of language-specific stemmer
EnableStemmer=true
# Set to true prevents tracker from descending into mounted directory trees
SkipMountPoints=false
# Disable all indexing when on battery
BatteryIndex=true
# Disable initial index sweep when on battery
BatteryIndexInitial=false
# Pause indexer when disk space gets below equal/below this value, in %% of the $HOME filesystem. Set it to a value smaller then zero to disable pausing at all.
LowDiskSpaceLimit=1

[Emails]
IndexEvolutionEmails=false
IndexThunderbirdEmails=true

[Performance]
# Maximum size of text in bytes to index from a file's text contents
MaxTextToIndex=1048576
# Maximum number of unique words to index from a file's text contents
MaxWordsToIndex=10000
# Specifies the no of entities to index before determining whether to perform index optimization
OptimizationSweepCount=10000
# Sets the maximum bucket count for the indexer
MaxBucketCount=524288
# Sets the minimum bucket count
MinBucketCount=65536
# Sets no. of divisions of the index file
Divisions=4
# Selects the desired ratio of used records to buckets to be used when optimizing index (should be a value between 0 and 4) 
BucketRatio=1
# Alters how much padding is used to prevent index relocations. Higher values improve indexing speed but waste more disk space. Value should be in range (1..8)
Padding=2
# Sets stack size of trackerd threads in bytes. The default on Linux is 8Mb (0 will use the system default).
ThreadStackSize=0

Offline

#5 2009-02-20 23:50:34

Zibi1981
Member
From: Poland
Registered: 2008-01-31
Posts: 644

Re: Meta Tracker using too much resources and making HDD to act loudly

Where did you get those stats from? I would like to check on mine too.
I didn't change manually any config entries, only via tracker-preferences. Have you set indexing and observing, or only indexing? How many directories you trackerd indexes?


"... being a Linux user is sort of like living in a house inhabited by a large family of carpenters and architects. Every morning when you wake up, the house is a little different. Maybe there is a new turret, or some walls have moved. Or perhaps someone has temporarily removed the floor under your bed."

MSI Raider GE78HX 13VI-032PL

Offline

#6 2009-02-21 14:02:38

bwalk
Member
Registered: 2007-03-21
Posts: 177

Re: Meta Tracker using too much resources and making HDD to act loudly

tracker-stats

I have both indexing and watching enabled. I have fast index merges disabled, but I don't know, how this behaves. I let it only watch my home director, but this contains already around 4000 directories and has about 50 GB data.

Offline

#7 2009-02-22 11:05:52

Zibi1981
Member
From: Poland
Registered: 2008-01-31
Posts: 644

Re: Meta Tracker using too much resources and making HDD to act loudly

Here are my tracker stats

zbyszek ~ $  tracker-stats

-------pobieranie statystyk indeksowania---------

default : 0
Files : 157035
Folders : 22573
Documents : 5624
Images : 35446
Music : 683
Videos : 52
Text : 13769
Development : 18008
Other : 60880
Emails : 0
EvolutionEmails : 0
ThunderbirdEmails : 0
KMailEmails : 0
EmailAttachments : 0
EvolutionAttachments : 0
KMailAttachments : 0
Conversations : 0
GaimConversations : 0
Applications : 343
Webhistory : 0
------------------------------------

Trackerd is still using ~30% of my CPU load initially, and after a while it settles at around 2-3%. Is this a normal behavior?


"... being a Linux user is sort of like living in a house inhabited by a large family of carpenters and architects. Every morning when you wake up, the house is a little different. Maybe there is a new turret, or some walls have moved. Or perhaps someone has temporarily removed the floor under your bed."

MSI Raider GE78HX 13VI-032PL

Offline

#8 2009-02-22 11:23:07

bwalk
Member
Registered: 2007-03-21
Posts: 177

Re: Meta Tracker using too much resources and making HDD to act loudly

I don't know how well tracker scales, but you're indexing about five times the data that I do. Mind posting your tracker.cfg and an extract from

tracker-files -s Other

and

du -h --max-depth=1 ~

Offline

#9 2009-02-22 13:17:21

Zibi1981
Member
From: Poland
Registered: 2008-01-31
Posts: 644

Re: Meta Tracker using too much resources and making HDD to act loudly

Well, I wanted trackerd to index and watch my /home directory and only to index other folders, like: /var, /opt, /lib64, /lib and /etc (in case I'm looking for a config file).
Below are the configs you asked smile

[General]
# Log Verbosity - Valid values are 0 (displays/logs only errors), 1 (minimal), 2 (detailed), and 3 (debug)
Verbosity=0

# Minimizes the use of memory but may slow indexing down
LowMemoryMode=false

# Set the initial sleeping time, in seconds
InitialSleep=60

[Watches]
# List of directory roots to index and watch seperated by semicolons
WatchDirectoryRoots=/home/zbyszek;
# List of directory roots to index but not watch (no live updates but are refreshed when trackerd is next restarted) seperated by semicolons
CrawlDirectory=/var;/opt;/lib64;/lib;/etc;
# List of directory roots to not index and not watch seperated by semicolons
NoWatchDirectory=
# Set to false to prevent watching of any kind
EnableWatching=true

[Indexing]
# Throttles the indexing process. Allowable values are 0-20. higher values decrease indexing speed
Throttle=0
# Disables the indexing process
EnableIndexing=true
# Enables indexing of a file's text contents
EnableFileContentIndexing=true
# Enables generation of thumbnails
EnableThumbnails=false
# List of partial file patterns (glob) seperated by semicolons that specify files to not index (basic stat info is only indexed for files that match these patterns)
NoIndexFileTypes=;

# Sets minimum length of words to index
MinWordLength=3
# Sets maximum length of words to index (words are cropped if bigger than this)
MaxWordLength=30
# Sets the language specific stemmer and stopword list to use 
# Valid values are 'en' (english), 'da' (danish), 'nl' (dutch), 'fi' (finnish), 'fr' (french), 'de' (german), 'it' (italien), 'nb' (norwegian), 'pt' (portugese), 'ru' (russian), 'es' (spanish), 'sv' (swedish)
Language=en
# Enables use of language-specific stemmer
EnableStemmer=true

[Emails]
IndexEvolutionEmails=false

[Performance]
# Maximum size of text in bytes to index from a file's text contents
MaxTextToIndex=1048576
# Maximum number of unique words to index from a file's text contents
MaxWordsToIndex=10000
# Specifies the no of entities to index before determining whether to perform index optimization
OptimizationSweepCount=10000
# Sets the maximum bucket count for the indexer
MaxBucketCount=524288
# Sets the minimum bucket count
MinBucketCount=65536
# Sets no. of divisions of the index file
Dvisions=4
# Selects the desired ratio of used records to buckets to be used when optimizing index (should be a value between 0 and 4) 
BucketRatio=1
# Alters how much padding is used to prevent index relocations. Higher values improve indexing speed but waste more disk space. Value should be in range (1..8)
Padding=2
zbyszek ~ $  tracker-files -s Other
/etc/PolicyKit/PolicyKit.conf
/etc/X11/sessions/kdemod3.desktop
/etc/arch-release
/etc/avahi/services/sftp-ssh.service
/etc/avahi/services/ssh.service
/etc/blkid.tab.old
/etc/bonobo-activation/bonobo-activation-config.xml
/etc/crypttab
/etc/dbus-1/system.d/org.freedesktop.PolicyKit.conf
/etc/dbus-1/system.d/org.gnome.GConf.Defaults.conf
/etc/fonts/conf.avail/10-autohint.conf
/etc/fonts/conf.avail/10-no-sub-pixel.conf
/etc/fonts/conf.avail/10-sub-pixel-bgr.conf
/etc/fonts/conf.avail/10-sub-pixel-rgb.conf
/etc/fonts/conf.avail/10-sub-pixel-vbgr.conf
/etc/fonts/conf.avail/10-sub-pixel-vrgb.conf
/etc/fonts/conf.avail/10-unhinted.conf
/etc/fonts/conf.avail/20-fix-globaladvance.conf
/etc/fonts/conf.avail/20-unhint-small-vera.conf
/etc/fonts/conf.avail/25-unhint-nonlatin.conf
/etc/fonts/conf.avail/29-replace-bitmap-fonts.conf
/etc/fonts/conf.avail/30-metric-aliases.conf
/etc/fonts/conf.avail/30-urw-aliases.conf
/etc/fonts/conf.avail/40-nonlatin.conf
/etc/fonts/conf.avail/45-latin.conf
/etc/fonts/conf.avail/49-sansserif.conf
/etc/fonts/conf.avail/50-user.conf
/etc/fonts/conf.avail/51-local.conf
/etc/fonts/conf.avail/60-latin.conf
/etc/fonts/conf.avail/64-ttf-thai-tlwg.conf
/etc/fonts/conf.avail/65-fonts-persian.conf
/etc/fonts/conf.avail/65-khmer.conf
/etc/fonts/conf.avail/65-nonlatin.conf
/etc/fonts/conf.avail/69-unifont.conf
/etc/fonts/conf.avail/70-no-bitmaps.conf
/etc/fonts/conf.avail/70-yes-bitmaps.conf
/etc/fonts/conf.avail/80-delicious.conf
/etc/fonts/conf.avail/90-synthetic.conf
/etc/fonts/conf.avail/90-ttf-thai-tlwg-synthetic.conf
/etc/fonts/conf.d/20-fix-globaladvance.conf
/etc/fonts/conf.d/20-unhint-small-vera.conf
/etc/fonts/conf.d/29-replace-bitmap-fonts.conf
/etc/fonts/conf.d/30-metric-aliases.conf
/etc/fonts/conf.d/30-urw-aliases.conf
/etc/fonts/conf.d/40-nonlatin.conf
/etc/fonts/conf.d/45-latin.conf
/etc/fonts/conf.d/49-sansserif.conf
/etc/fonts/conf.d/50-user.conf
/etc/fonts/conf.d/51-local.conf
/etc/fonts/conf.d/60-latin.conf
/etc/fonts/conf.d/65-fonts-persian.conf
/etc/fonts/conf.d/65-nonlatin.conf
/etc/fonts/conf.d/69-unifont.conf
/etc/fonts/conf.d/80-delicious.conf
/etc/fonts/conf.d/90-synthetic.conf
/etc/fonts/fonts.conf
/etc/fonts/fonts.dtd
/etc/gconf/gconf.xml.defaults/%gconf-tree-af.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-ar.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-as.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-az.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-be.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-be@latin.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-bg.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-bn.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-bn_IN.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-bs.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-ca.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-cs.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-cy.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-da.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-de.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-dz.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-el.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-en_CA.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-en_GB.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-eo.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-es.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-et.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-eu.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-fa.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-fi.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-fr.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-fur.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-ga.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-gl.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-gu.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-he.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-hi.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-hr.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-hu.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-id.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-is.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-it.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-ja.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-ka.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-kn.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-ko.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-ku.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-lt.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-lv.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-mai.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-mg.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-mk.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-ml.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-mn.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-mr.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-ms.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-nb.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-ne.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-nl.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-nn.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-nso.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-oc.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-or.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-pa.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-pl.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-pt.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-pt_BR.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-ro.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-ru.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-sk.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-sl.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-sq.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-sr.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-sr@ije.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-sr@latin.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-sv.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-ta.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-te.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-th.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-tr.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-uk.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-vi.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-wa.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-xh.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-zh_CN.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-zh_HK.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-zh_TW.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree-zu.xml
/etc/gconf/gconf.xml.defaults/%gconf-tree.xml
/etc/group-
/etc/group.bak
/etc/gshadow-
/etc/gshadow.bak
/etc/gshadow.pacnew
/etc/gtk/gtkrc.tr
/etc/hal/fdi/policy/10-keymap.fdi
/etc/hal/fdi/policy/11-x11-synaptics.fdi
/etc/laptop-mode/conf.d/ac97-powersave.conf
/etc/laptop-mode/conf.d/bluetooth.conf
/etc/laptop-mode/conf.d/configuration-file-control.conf
/etc/laptop-mode/conf.d/cpufreq.conf
/etc/laptop-mode/conf.d/dpms-standby.conf
/etc/laptop-mode/conf.d/ethernet.conf
/etc/laptop-mode/conf.d/hal-polling.conf
/etc/laptop-mode/conf.d/intel-sata-powermgmt.conf
/etc/laptop-mode/conf.d/lcd-brightness.conf
/etc/laptop-mode/conf.d/sched-mc-power-savings.conf
/etc/laptop-mode/conf.d/start-stop-programs.conf
/etc/laptop-mode/conf.d/terminal-blanking.conf
/etc/laptop-mode/conf.d/video-out.conf
/etc/laptop-mode/conf.d/wireless-ipw-power.conf
/etc/laptop-mode/conf.d/wireless-iwl-power.conf
/etc/laptop-mode/lm-profiler.conf
/etc/ld.so.cache
/etc/locale.gen
/etc/localtime
/etc/mdnsd.conf
/etc/motd
/etc/passwd-
/etc/passwd.bak
/etc/ppp/chap-secrets
/etc/ppp/chap-secrets.pacsave
/etc/ppp/pap-secrets
/etc/ppp/pap-secrets.pacsave
/etc/shadow
/etc/shadow-
/etc/shadow.bak
/etc/shadow.pacnew
/etc/slp.reg
/etc/splashy/themes
/etc/ssl/certs/00673b5b.0
/etc/ssl/certs/02b73561.0
/etc/ssl/certs/0481cb65.0
/etc/ssl/certs/052e396b.0
/etc/ssl/certs/06d75f4b.0
/etc/ssl/certs/0c364b2d.0
/etc/ssl/certs/0dbd0096.0
/etc/ssl/certs/0e82f83a.0
/etc/ssl/certs/10d149a2.0
/etc/ssl/certs/111e6273.0
/etc/ssl/certs/1155c94b.0
/etc/ssl/certs/11a09b38.0
/etc/ssl/certs/11f154d6.0
/etc/ssl/certs/124bbd54.0
/etc/ssl/certs/128b9c8d.0
/etc/ssl/certs/12d55845.0
/etc/ssl/certs/1689a10b.0
/etc/ssl/certs/17b51fe6.0
/etc/ssl/certs/19899da5.0
/etc/ssl/certs/1dac3003.0
/etc/ssl/certs/1dcd6f4c.0
/etc/ssl/certs/219d9499.0
/etc/ssl/certs/23f4c490.0
/etc/ssl/certs/256fd83b.0
/etc/ssl/certs/2edf7016.0
/etc/ssl/certs/2fb1850a.0
/etc/ssl/certs/31044350.0
/etc/ssl/certs/33815e15.0
/etc/ssl/certs/399e7759.0
/etc/ssl/certs/3ad48a91.0
/etc/ssl/certs/3c58f906.0
/etc/ssl/certs/3c860d51.0
/etc/ssl/certs/3e223c08.0
/etc/ssl/certs/3e7271e8.0
/etc/ssl/certs/408e388a.0
/etc/ssl/certs/412bea73.0
/etc/ssl/certs/4166ec0c.0
/etc/ssl/certs/4184de39.0
/etc/ssl/certs/4643210f.0
/etc/ssl/certs/46b2fd3b.0
/etc/ssl/certs/47996b5c.0
/etc/ssl/certs/4d654d1d.0
/etc/ssl/certs/4e18c148.0
/etc/ssl/certs/4fbd6bfa.0
/etc/ssl/certs/5046c355.0
/etc/ssl/certs/54edfa5d.0
/etc/ssl/certs/56b8a0b6.0
/etc/ssl/certs/56e29e75.0
/etc/ssl/certs/57692373.0
/etc/ssl/certs/58a44af1.0
/etc/ssl/certs/58a44af1.1
/etc/ssl/certs/594f1775.0
/etc/ssl/certs/5a3f0ff8.0
/etc/ssl/certs/5a5372fc.0
/etc/ssl/certs/5cf9d536.0
/etc/ssl/certs/5ed36f99.0
/etc/ssl/certs/635ccfd5.0
/etc/ssl/certs/69105f4f.0
/etc/ssl/certs/6adf0799.0
/etc/ssl/certs/6e52cc39.0
/etc/ssl/certs/6e8bf996.0
/etc/ssl/certs/6f5d9899.0
/etc/ssl/certs/6fcc125d.0
/etc/ssl/certs/709afd2b.0
/etc/ssl/certs/72bf6a04.0
/etc/ssl/certs/72fa7371.0
/etc/ssl/certs/731f03a5.0
/etc/ssl/certs/74c26bd0.0
/etc/ssl/certs/755f7420.0
/etc/ssl/certs/75680d2e.0
/etc/ssl/certs/7651b327.0
/etc/ssl/certs/76579174.0
/etc/ssl/certs/788c9bfc.0
/etc/ssl/certs/7999be0d.0
/etc/ssl/certs/7a819ef2.0
/etc/ssl/certs/7d3cd826.0
/etc/ssl/certs/7d453d8f.0
/etc/ssl/certs/819a45f6.0
/etc/ssl/certs/81b9768f.0
/etc/ssl/certs/8317b10c.0
/etc/ssl/certs/8470719d.0
/etc/ssl/certs/84cba82f.0
/etc/ssl/certs/86f32474.0
/etc/ssl/certs/87753b0d.0
/etc/ssl/certs/8f7b96c4.0
/etc/ssl/certs/8fe643df.0
/etc/ssl/certs/9339512a.0
/etc/ssl/certs/95750816.0
/etc/ssl/certs/9772ca32.0
/etc/ssl/certs/97b4211c.0
/etc/ssl/certs/9ec3a561.0
/etc/ssl/certs/ABAecom_=sub.__Am._Bankers_Assn.=_Root_CA.pem
/etc/ssl/certs/AOL_Time_Warner_Root_Certification_Authority_1.pem
/etc/ssl/certs/AOL_Time_Warner_Root_Certification_Authority_2.pem
/etc/ssl/certs/AddTrust_External_Root.pem
/etc/ssl/certs/AddTrust_Low-Value_Services_Root.pem
/etc/ssl/certs/AddTrust_Public_Services_Root.pem
/etc/ssl/certs/AddTrust_Qualified_Certificates_Root.pem
/etc/ssl/certs/America_Online_Root_Certification_Authority_1.pem
/etc/ssl/certs/America_Online_Root_Certification_Authority_2.pem
/etc/ssl/certs/Baltimore_CyberTrust_Root.pem
/etc/ssl/certs/COMODO_Certification_Authority.pem
/etc/ssl/certs/Camerfirma_Chambers_of_Commerce_Root.pem
/etc/ssl/certs/Camerfirma_Global_Chambersign_Root.pem
/etc/ssl/certs/Certplus_Class_2_Primary_CA.pem
/etc/ssl/certs/Certum_Root_CA.pem
/etc/ssl/certs/Comodo_AAA_Services_root.pem
/etc/ssl/certs/Comodo_Secure_Services_root.pem
/etc/ssl/certs/Comodo_Trusted_Services_root.pem
/etc/ssl/certs/DST_ACES_CA_X6.pem
/etc/ssl/certs/DST_Root_CA_X3.pem
/etc/ssl/certs/DigiCert_Assured_ID_Root_CA.pem
/etc/ssl/certs/DigiCert_Global_Root_CA.pem
/etc/ssl/certs/DigiCert_High_Assurance_EV_Root_CA.pem
/etc/ssl/certs/Digital_Signature_Trust_Co._Global_CA_1.pem
/etc/ssl/certs/Digital_Signature_Trust_Co._Global_CA_2.pem
/etc/ssl/certs/Digital_Signature_Trust_Co._Global_CA_3.pem
/etc/ssl/certs/Digital_Signature_Trust_Co._Global_CA_4.pem
/etc/ssl/certs/Entrust.net_Global_Secure_Personal_CA.pem
/etc/ssl/certs/Entrust.net_Global_Secure_Server_CA.pem
/etc/ssl/certs/Entrust.net_Premium_2048_Secure_Server_CA.pem
/etc/ssl/certs/Entrust.net_Secure_Personal_CA.pem
/etc/ssl/certs/Entrust.net_Secure_Server_CA.pem
/etc/ssl/certs/Entrust_Root_Certification_Authority.pem
/etc/ssl/certs/Equifax_Secure_CA.pem
/etc/ssl/certs/Equifax_Secure_Global_eBusiness_CA.pem
/etc/ssl/certs/Equifax_Secure_eBusiness_CA_1.pem
/etc/ssl/certs/Equifax_Secure_eBusiness_CA_2.pem
/etc/ssl/certs/Firmaprofesional_Root_CA.pem
/etc/ssl/certs/GTE_CyberTrust_Global_Root.pem
/etc/ssl/certs/GTE_CyberTrust_Root_CA.pem
/etc/ssl/certs/GeoTrust_Global_CA.pem
/etc/ssl/certs/GeoTrust_Global_CA_2.pem
/etc/ssl/certs/GeoTrust_Primary_Certification_Authority.pem
/etc/ssl/certs/GeoTrust_Universal_CA.pem
/etc/ssl/certs/GeoTrust_Universal_CA_2.pem
/etc/ssl/certs/GlobalSign_Root_CA.pem
/etc/ssl/certs/GlobalSign_Root_CA_-_R2.pem
/etc/ssl/certs/Go_Daddy_Class_2_CA.pem
/etc/ssl/certs/IPS_CLASE1_root.pem
/etc/ssl/certs/IPS_CLASE3_root.pem
/etc/ssl/certs/IPS_CLASEA1_root.pem
/etc/ssl/certs/IPS_CLASEA3_root.pem
/etc/ssl/certs/IPS_Chained_CAs_root.pem
/etc/ssl/certs/IPS_Servidores_root.pem
/etc/ssl/certs/IPS_Timestamping_root.pem
/etc/ssl/certs/NetLock_Business_=Class_B=_Root.pem
/etc/ssl/certs/NetLock_Express_=Class_C=_Root.pem
/etc/ssl/certs/NetLock_Notary_=Class_A=_Root.pem
/etc/ssl/certs/NetLock_Qualified_=Class_QA=_Root.pem
/etc/ssl/certs/QuoVadis_Root_CA.pem
/etc/ssl/certs/QuoVadis_Root_CA_2.pem
/etc/ssl/certs/QuoVadis_Root_CA_3.pem
/etc/ssl/certs/QuoVadis_Root_Certification_Authority.pem
/etc/ssl/certs/RSA_Root_Certificate_1.pem
/etc/ssl/certs/RSA_Security_1024_v3.pem
/etc/ssl/certs/RSA_Security_2048_v3.pem
/etc/ssl/certs/SecureTrust_CA.pem
/etc/ssl/certs/Secure_Global_CA.pem
/etc/ssl/certs/Security_Communication_Root_CA.pem
/etc/ssl/certs/Sonera_Class_1_Root_CA.pem
/etc/ssl/certs/Sonera_Class_2_Root_CA.pem
/etc/ssl/certs/Staat_der_Nederlanden_Root_CA.pem
/etc/ssl/certs/Starfield_Class_2_CA.pem
/etc/ssl/certs/StartCom_Certification_Authority.pem
/etc/ssl/certs/StartCom_Ltd..pem
/etc/ssl/certs/SwissSign_Gold_CA_-_G2.pem
/etc/ssl/certs/SwissSign_Platinum_CA_-_G2.pem
/etc/ssl/certs/SwissSign_Silver_CA_-_G2.pem
/etc/ssl/certs/Swisscom_Root_CA_1.pem
/etc/ssl/certs/TC_TrustCenter__Germany__Class_2_CA.pem
/etc/ssl/certs/TC_TrustCenter__Germany__Class_3_CA.pem
/etc/ssl/certs/TDC_Internet_Root_CA.pem
/etc/ssl/certs/TDC_OCES_Root_CA.pem
/etc/ssl/certs/TURKTRUST_Certificate_Services_Provider_Root_1.pem
/etc/ssl/certs/TURKTRUST_Certificate_Services_Provider_Root_2.pem
/etc/ssl/certs/Taiwan_GRCA.pem
/etc/ssl/certs/Thawte_Personal_Basic_CA.pem
/etc/ssl/certs/Thawte_Personal_Freemail_CA.pem
/etc/ssl/certs/Thawte_Personal_Premium_CA.pem
/etc/ssl/certs/Thawte_Premium_Server_CA.pem
/etc/ssl/certs/Thawte_Server_CA.pem
/etc/ssl/certs/Thawte_Time_Stamping_CA.pem
/etc/ssl/certs/UTN-USER_First-Network_Applications.pem
/etc/ssl/certs/UTN_DATACorp_SGC_Root_CA.pem
/etc/ssl/certs/UTN_USERFirst_Email_Root_CA.pem
/etc/ssl/certs/UTN_USERFirst_Hardware_Root_CA.pem
/etc/ssl/certs/UTN_USERFirst_Object_Root_CA.pem
/etc/ssl/certs/ValiCert_Class_1_VA.pem
/etc/ssl/certs/ValiCert_Class_2_VA.pem
/etc/ssl/certs/VeriSign_Class_3_Public_Primary_Certification_Authority_-_G5.pem
/etc/ssl/certs/Verisign_Class_1_Public_Primary_Certification_Authority.pem
/etc/ssl/certs/Verisign_Class_1_Public_Primary_Certification_Authority_-_G2.pem
/etc/ssl/certs/Verisign_Class_1_Public_Primary_Certification_Authority_-_G3.pem
/etc/ssl/certs/Verisign_Class_2_Public_Primary_Certification_Authority.pem
/etc/ssl/certs/Verisign_Class_2_Public_Primary_Certification_Authority_-_G2.pem
/etc/ssl/certs/Verisign_Class_2_Public_Primary_Certification_Authority_-_G3.pem
/etc/ssl/certs/Verisign_Class_3_Public_Primary_Certification_Authority.pem
/etc/ssl/certs/Verisign_Class_3_Public_Primary_Certification_Authority_-_G2.pem
/etc/ssl/certs/Verisign_Class_3_Public_Primary_Certification_Authority_-_G3.pem
/etc/ssl/certs/Verisign_Class_4_Public_Primary_Certification_Authority_-_G2.pem
/etc/ssl/certs/Verisign_Class_4_Public_Primary_Certification_Authority_-_G3.pem
/etc/ssl/certs/Verisign_RSA_Secure_Server_CA.pem
/etc/ssl/certs/Verisign_Time_Stamping_Authority_CA.pem
/etc/ssl/certs/Visa_International_Global_Root_2.pem
/etc/ssl/certs/Visa_eCommerce_Root.pem
/etc/ssl/certs/Wells_Fargo_Root_CA.pem
/etc/ssl/certs/XRamp_Global_CA_Root.pem
/etc/ssl/certs/a0bc6fbb.0
/etc/ssl/certs/a145806c.0
/etc/ssl/certs/a15b3b6b.0
/etc/ssl/certs/a2df7ad7.0
/etc/ssl/certs/a3896b44.0
/etc/ssl/certs/a6776c69.0
/etc/ssl/certs/a7605362.0
/etc/ssl/certs/aaa45464.0
/etc/ssl/certs/add67345.0
/etc/ssl/certs/b0f3e76e.0
/etc/ssl/certs/b3fec4ff.0
/etc/ssl/certs/b5f329fa.0
/etc/ssl/certs/b8609e8a.0
/etc/ssl/certs/bcdd5959.0
/etc/ssl/certs/bda4cc84.0
/etc/ssl/certs/bdacca6f.0
/etc/ssl/certs/beTRUSTed_Root_CA-Baltimore_Implementation.pem
/etc/ssl/certs/beTRUSTed_Root_CA.pem
/etc/ssl/certs/beTRUSTed_Root_CA_-_Entrust_Implementation.pem
/etc/ssl/certs/beTRUSTed_Root_CA_-_RSA_Implementation.pem
/etc/ssl/certs/bf64f35b.0
/etc/ssl/certs/bf87590f.0
/etc/ssl/certs/brasil.gov.br.pem
/etc/ssl/certs/c19d42c7.0
/etc/ssl/certs/c215bc69.0
/etc/ssl/certs/c33a80d4.0
/etc/ssl/certs/c527e4ab.0
/etc/ssl/certs/c9bc75ba.0
/etc/ssl/certs/ca-certificates.crt
/etc/ssl/certs/ca.pem
/etc/ssl/certs/cacert.org.pem
/etc/ssl/certs/cb796bc1.0
/etc/ssl/certs/ccb919f9.0
/etc/ssl/certs/cdaebb72.0
/etc/ssl/certs/cert_igca_dsa.pem
/etc/ssl/certs/cert_igca_rsa.pem
/etc/ssl/certs/cf701eeb.0
/etc/ssl/certs/class3.pem
/etc/ssl/certs/d2adc77d.0
/etc/ssl/certs/d537fba6.0
/etc/ssl/certs/d78a75c7.0
/etc/ssl/certs/d8274e24.0
/etc/ssl/certs/ddc328ff.0
/etc/ssl/certs/deutsche-telekom-root-ca-2.pem
/etc/ssl/certs/e268a4c5.0
/etc/ssl/certs/e5662767.0
/etc/ssl/certs/e60bf0c0.0
/etc/ssl/certs/e775ed2d.0
/etc/ssl/certs/e7b8d656.0
/etc/ssl/certs/ed049835.0
/etc/ssl/certs/ed524cf5.0
/etc/ssl/certs/ed62f4e3.0
/etc/ssl/certs/ee7cd6fb.0
/etc/ssl/certs/f3cf1e8e.0
/etc/ssl/certs/f4996e82.0
/etc/ssl/certs/f64d9715.0
/etc/ssl/certs/f73e89fd.0
/etc/ssl/certs/f950ccc2.0
/etc/ssl/certs/facacbc6.0
/etc/ssl/certs/ff783690.0
/etc/ssl/certs/root.pem
/etc/ssl/certs/signet_ca1_pem.pem
/etc/ssl/certs/signet_ca2_pem.pem
/etc/ssl/certs/signet_ca3_pem.pem
/etc/ssl/certs/signet_ocspklasa2_pem.pem
/etc/ssl/certs/signet_ocspklasa3_pem.pem
/etc/ssl/certs/signet_pca2_pem.pem
/etc/ssl/certs/signet_pca3_pem.pem
/etc/ssl/certs/signet_rootca_pem.pem
/etc/ssl/certs/signet_tsa1_pem.pem
/etc/ssl/certs/spi-ca-2003.pem
/etc/ssl/certs/spi-cacert-2008.pem
/etc/ssl/certs/thawte_Primary_Root_CA.pem
/etc/wicd/manager-settings.conf
/etc/wicd/wired-settings.conf
/etc/wicd/wireless-settings.conf
/etc/xdg/autostart/tracker-applet.desktop
/etc/xdg/autostart/trackerd.desktop
/etc/xdg/autostart/wicd-tray.desktop
/etc/xml/catalog
/home/zbyszek/ABS/KBibTex/kbibtex-0.2.1-2-x86_64.pkg.tar.gz
/home/zbyszek/ABS/KBibTex/kbibtex-0.2.1.tar.bz2
/home/zbyszek/ABS/KlamAV/klamav-0.44-2-x86_64.pkg.tar.gz
/home/zbyszek/ABS/KlamAV/klamav-0.44-source.tar.gz
/home/zbyszek/ABS/clamav/clamav-0.94.2-1-x86_64.pkg.tar.gz
/home/zbyszek/ABS/clamav/clamav-0.94.2.tar.gz
/home/zbyszek/ABS/fiDefrag/fidefrag-bzr-53-2-x86_64.pkg.tar.gz
/home/zbyszek/ABS/getlive/GetLive_0_57.tgz
/home/zbyszek/ABS/getlive/getlive-0.57-2-x86_64.pkg.tar.gz
/home/zbyszek/ABS/initscripts-splashy/initscripts-2008.09-2.tar.gz
/home/zbyszek/ABS/initscripts-splashy/initscripts-splashy-2008.09-2-x86_64.pkg.tar.gz
/home/zbyszek/ABS/kdemod3-kdebluetooth/kdebluetooth-1.0_beta8.tar.bz2
/home/zbyszek/ABS/kdemod3-kdebluetooth/kdemod3-kdebluetooth-1.0_beta8-2-x86_64.pkg.tar.gz
/home/zbyszek/ABS/libopensync/libopensync-0.22-2-x86_64.pkg.tar.gz
/home/zbyszek/ABS/libopensync/libopensync-0.22.tar.bz2
/home/zbyszek/ABS/splashy-theme-darch/splashy-theme-darch-0.4.1-2-x86_64.pkg.tar.gz
/home/zbyszek/ABS/splashy-theme-darch/splashy-theme-darch-0.4.1.tar.gz
/home/zbyszek/ABS/splashy/splashy-0.3.13-1-x86_64.pkg.tar.gz
/home/zbyszek/ABS/splashy/splashy-0.3.13.tar.gz
/home/zbyszek/ABS/sysvinit-mod/sysvinit-2.86.tar.gz
/home/zbyszek/ABS/sysvinit-mod/sysvinit-mod-2.86-2-x86_64.pkg.tar.gz
/home/zbyszek/ABS/uswsusp/suspend-0.8.tar.gz
/home/zbyszek/ABS/uswsusp/uswsusp-0.8-4-x86_64.pkg.tar.gz
/home/zbyszek/ABS/yaourt/yaourt-0.9.2.4-1-x86_64.pkg.tar.gz
/home/zbyszek/ABS/yaourt/yaourt-0.9.2.4.src.tar.gz
/home/zbyszek/Desktop/Dyski Twarde.desktop
/home/zbyszek/Desktop/KingKonq.desktop
/home/zbyszek/Desktop/System.desktop
/home/zbyszek/Desktop/jabref.desktop
/home/zbyszek/Desktop/trash.desktop
/home/zbyszek/Dokumenty/Doskonalenie zawodowe/Elektrokardiologia/Rozruszniki/Elementarz stałej elektrostymulacji serca.mht
/home/zbyszek/Dokumenty/Doskonalenie zawodowe/Resuscytacja/BLS-AED-FINAL-28-4-06_4.ppt
/home/zbyszek/Dokumenty/Konfiguracja Arch64/PolicyKit/PolicyKit.conf
/home/zbyszek/Dokumenty/Praca/Historia stymulacji serca.ppt
/home/zbyszek/Dokumenty/Praca/Materiały medyczne/87 pacjentów
/home/zbyszek/Dokumenty/Praca/Materiały medyczne/Ginekologia.rar
/home/zbyszek/Dokumenty/Praca/Materiały medyczne/medrat.zip
/home/zbyszek/Dokumenty/Praca/Materiały medyczne/prelpsych.zip
/home/zbyszek/Dokumenty/Praca/Praca naukowa/GRACE Risk Score/acs_risk.exe
/home/zbyszek/Dokumenty/Praca/Praca naukowa/Holter/93 pacjentów po pierwszym MI.sta
/home/zbyszek/Dokumenty/Praca/Praca naukowa/Holter/HRV i HRT ostatnia.ppt
/home/zbyszek/Dokumenty/Praca/Praca naukowa/Holter/HRV i HRT zgodność 95-2003.ppt
zbyszek ~ $  du -h --max-depth=1 ~
0       /home/zbyszek/.adobe
4,0K    /home/zbyszek/.bin
346M    /home/zbyszek/.cache
8,0K    /home/zbyszek/.cddb
68K     /home/zbyszek/.config
4,0K    /home/zbyszek/.dbus
8,0K    /home/zbyszek/.dvdcss
32K     /home/zbyszek/.fontconfig
76K     /home/zbyszek/.fonts
8,0K    /home/zbyszek/.gconf
8,0K    /home/zbyszek/.gconfd
4,0K    /home/zbyszek/.gegl-0.0
384K    /home/zbyszek/.gimp-2.6
0       /home/zbyszek/.gnome2
0       /home/zbyszek/.gnome2_private
380K    /home/zbyszek/.gnupg
204K    /home/zbyszek/.gstreamer-0.10
4,5M    /home/zbyszek/.icons
28K     /home/zbyszek/.java
964K    /home/zbyszek/.kadu
669M    /home/zbyszek/.kde
59M     /home/zbyszek/.klamav
4,0K    /home/zbyszek/.linuxcounter
952K    /home/zbyszek/.local
64K     /home/zbyszek/.lyx
352K    /home/zbyszek/.macromedia
616K    /home/zbyszek/.mcop
80M     /home/zbyszek/.mozilla
24K     /home/zbyszek/.mplayer
68K     /home/zbyszek/.nvclock
14M     /home/zbyszek/.openoffice.org
0       /home/zbyszek/.opensync
100M    /home/zbyszek/.opera
16K     /home/zbyszek/.phoronix-test-suite
44K     /home/zbyszek/.qt
1,1M    /home/zbyszek/.spamassassin
40K     /home/zbyszek/.superkaramba
272K    /home/zbyszek/.texlive
7,3M    /home/zbyszek/.thumbnails
68K     /home/zbyszek/.xine
37M     /home/zbyszek/ABS
80K     /home/zbyszek/Desktop
222M    /home/zbyszek/Dokumenty
3,6G    /home/zbyszek/Filmy
1,2G    /home/zbyszek/Muzyka
901M    /home/zbyszek/Obrazki
1,5G    /home/zbyszek/Pobrania
118M    /home/zbyszek/Programy
216K    /home/zbyszek/fidefrag
8,8G    /home/zbyszek

"... being a Linux user is sort of like living in a house inhabited by a large family of carpenters and architects. Every morning when you wake up, the house is a little different. Maybe there is a new turret, or some walls have moved. Or perhaps someone has temporarily removed the floor under your bed."

MSI Raider GE78HX 13VI-032PL

Offline

#10 2009-02-22 14:21:36

bwalk
Member
Registered: 2007-03-21
Posts: 177

Re: Meta Tracker using too much resources and making HDD to act loudly

Hmm, I'd try letting it only watch your home directory. First, what are the chances that you search for a file which hides in /lib64? Second, tracker is optimized for finding metadata inside files, and I hardly doubt that a .so file has some. But yet it has to crawl along those directories.

As I still don't know anything about the scaling properties of tracker, I'd suggest, kill your tracker index cache in .cache/tracker and .local/share/tracker, get rid of those unnecessary directories above and try again. If the situation gets better, there's your problem, if not, we can look again.

Offline

#11 2009-02-22 17:40:18

Zibi1981
Member
From: Poland
Registered: 2008-01-31
Posts: 644

Re: Meta Tracker using too much resources and making HDD to act loudly

Well I guess it could be the reason. I noticed that after a while trackerd is using less that 1% of CPU load, so it seems that after "crawling" (as you called it) along those directories it settles down on a stable, low CPU-load-level usage.
What do you mean exactly by killing tracker index cache? Should I delete those folders?


"... being a Linux user is sort of like living in a house inhabited by a large family of carpenters and architects. Every morning when you wake up, the house is a little different. Maybe there is a new turret, or some walls have moved. Or perhaps someone has temporarily removed the floor under your bed."

MSI Raider GE78HX 13VI-032PL

Offline

#12 2009-02-23 00:10:09

bwalk
Member
Registered: 2007-03-21
Posts: 177

Re: Meta Tracker using too much resources and making HDD to act loudly

Yeah, just delete them. I don't know, if tracker is smart enough to clean them up itself.

Offline

#13 2009-05-24 14:27:42

Zibi1981
Member
From: Poland
Registered: 2008-01-31
Posts: 644

Re: Meta Tracker using too much resources and making HDD to act loudly

Well MetaTracker used to work nicely for some amount of time...it did... Now after updating my system some time ago I've noticed that it won't start during OS boot-up (the link in ~/.kde/Autostart isn't working now). Maybe it has something to do with my graphical environment, which is some kind mixed up, mostly consisting of KDEmod 3.5.10 packages with addition of some of KDE4. I'm not quite sure how this is possible, I think that Pacman mixed them up while updating my system. Nevertheless I also have a ~/.kde4 folder but without /Autostart sub-folder in it.
Going back to the main topic trackerd and tracker-indexer when started manually are consuming 100% of my dual-core CPU, rising it's temperature, with no visible result. they just keep "eating" RAM memory and never stop. What the heck? Does anyone have similar issue?


"... being a Linux user is sort of like living in a house inhabited by a large family of carpenters and architects. Every morning when you wake up, the house is a little different. Maybe there is a new turret, or some walls have moved. Or perhaps someone has temporarily removed the floor under your bed."

MSI Raider GE78HX 13VI-032PL

Offline

Board footer

Powered by FluxBB