Announcement

Collapse
No announcement yet.

Nepomuk strikes again!

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Nepomuk strikes again!

    Anybody else seeing this 90,000+ times in your .xsession-errors file?

    Code:
    [/usr/bin/nepomukservicestub] nepomukfileindexer(2819)/nepomuk (strigi service): SimpleIndexError:  "Cannot set values for abstract property '<http://nepomuk.kde.org/ontologies/2010/11/29/kext#indexingLevel>'."
    The 90,000+ lines (and growing) were generated within 20 minutes or so after booting.

    Please Read Me

    #2
    Hm. Not seeing that, but my .xsession-errors file was pretty damn big. You can't just delete it, because it'll get created again. And deleting it doesn't really free up space, because running processes that have the file open won't release the inodes until you reboot.

    A lot of the older recommendations for preventing that file from getting created no longer work, including symlinking it to /dev/null. This method should:

    1. Elevate to root and open the file /etc/X11/Xsession

    2. Find the line containing ERRFILE=$HOME/.xsession-errors

    3. Comment that line, and all the following lines, through and including the line containing exec >>"$ERRFILE" 2>&1

    4. Add the following new line at the end of this newly-commented block:
    Code:
    exec >> /dev/null 2>&1
    5. Log out of KDE

    6. Switch to a console and log in

    7. Remove your existing ~/.xsession-errors

    8. Reboot

    I just tried this on my Quantal laptop and it seems to be working. I still get an .xsession-errors file, but it remains zero length. Yay! For some reason, that file was full of all the pr0n URLs I've wasted my day staring at. Not now! Whew.

    (source)

    Comment


      #3
      Done.

      Thanks Steve.

      I thought it was odd or at least notable that the attempt at truncation didn't work either. My .xsession-errors was three times the size supposedly allowed by the truncation stanza. Oh well, it's ZERO now.

      Now, off to solve my GRUB problem - not in your "wheelhouse" as you abandoned grub awhile back!

      p.s. Watching those web pages will cause hair to grow on your palms!

      Please Read Me

      Comment


        #4
        Wow, that didn't work!

        After reboot, .xsession-errors still exists and is growing faster than before! 80,000 lines (as above) in 10 minutes.

        Please Read Me

        Comment


          #5
          Now that one stumps me.

          The changed modified Xsession file should look like this, changes in red:
          Code:
          . . .
          [COLOR="#FF0000"][B]#[/B][/COLOR]ERRFILE=$HOME/.xsession-errors
          
          # attempt to create an error file; abort if we cannot
          [COLOR="#FF0000"][B]#[/B][/COLOR]if (umask 077 && touch "$ERRFILE") 2> /dev/null && [ -w "$ERRFILE" ] &&
          [COLOR="#FF0000"][B]#[/B][/COLOR]  [ ! -L "$ERRFILE" ]; then
          [COLOR="#FF0000"][B]#[/B][/COLOR]  chmod 600 "$ERRFILE"
          [COLOR="#FF0000"][B]#[/B][/COLOR]elif ERRFILE=$(tempfile 2> /dev/null); then
          [COLOR="#FF0000"][B]#[/B][/COLOR]  if ! ln -sf "$ERRFILE" "${TMPDIR:=/tmp}/xsession-$USER"; then
          [COLOR="#FF0000"][B]#[/B][/COLOR]    message "warning: unable to symlink \"$TMPDIR/xsession-$USER\" to" \
          [COLOR="#FF0000"][B]#[/B][/COLOR]             "\"$ERRFILE\"; look for session log/errors in" \
          [COLOR="#FF0000"][B]#[/B][/COLOR]             "\"$TMPDIR/xsession-$USER\"."
          [COLOR="#FF0000"][B]#[/B][/COLOR]  fi
          [COLOR="#FF0000"][B]#[/B][/COLOR]else
          [COLOR="#FF0000"][B]#[/B][/COLOR]  errormsg "unable to create X session log/error file; aborting."
          [COLOR="#FF0000"][B]#[/B][/COLOR]fi
          
          # truncate ERRFILE if it is too big to avoid disk usage DoS
          [COLOR="#FF0000"][B]#[/B][/COLOR]if [ "`stat -c%s \"$ERRFILE\"`" -gt 500000 ]; then
          [COLOR="#FF0000"][B]#[/B][/COLOR]  T=`mktemp -p "$HOME"`
          [COLOR="#FF0000"][B]#[/B][/COLOR]  tail -c 500000 "$ERRFILE" > "$T" && mv -f "$T" "$ERRFILE" || rm -f "$T"
          [COLOR="#FF0000"][B]#[/B][/COLOR]fi
          
          [COLOR="#FF0000"][B]#[/B][/COLOR]exec >>"$ERRFILE" 2>&1
          [COLOR="#FF0000"][B]exec >> /dev/null 2>&1[/B][/COLOR]
          . . .

          Anyway...two ideas. Uncomment most of what you commented, leaving only the line containing ERRFILE=$HOME/.xsession-errors commented out. Also remove the new exec line you added. This configuration will relocate .xsession-errors to /tmp/xsession-$USER. At least that means they'll go away after reboot. (I think the *buntus now clear /tmp at boot...I forget the default, since I always mount mine to a tmpfs now.)

          You might fiddle with changing the owner of the regular .xsession-errors file to root and enabling the immutable attribute. I don't have much faith in that approach, though.

          Comment


            #6
            Another thought...what does
            Code:
            sudo lsof | grep xsession
            tell you?

            Comment


              #7
              Originally posted by SteveRiley View Post
              Another thought...what does
              Code:
              sudo lsof | grep xsession
              tell you?
              Wow!
              Code:
              startkde   2182           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errorsstart_kde  2305           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              kdeinit4   2306           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              kdeinit4   2306           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              klauncher  2307           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              klauncher  2307           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              kded4      2309           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              kded4      2309           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QInotifyF  2309  2317     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QInotifyF  2309  2317     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QProcessM  2309  2318     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QProcessM  2309  2318     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              gdbus      2309  2332     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              gdbus      2309  2332     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              bluedevil  2321           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              bluedevil  2321           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              kglobalac  2327           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              kglobalac  2327           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              kactivity  2331           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              kactivity  2331           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QThread    2331  2337     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QThread    2331  2337     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QThread    2331  2338     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QThread    2331  2338     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QThread    2331  2339     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QThread    2331  2339     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QThread    2331  2343     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QThread    2331  2343     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QInotifyF  2331  2344     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QInotifyF  2331  2344     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QThread    2331  3039     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QThread    2331  3039     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              kwrapper4  2335           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              ksmserver  2336           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              ksmserver  2336           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QProcessM  2336  2346     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QProcessM  2336  2346     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              kwin       2347           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              kwin       2347           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QProcessM  2347  2350     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QProcessM  2347  2350     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              kwin       2347  2356     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              kwin       2347  2356     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              knotify4   2353           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              knotify4   2353           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QInotifyF  2353  2357     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QInotifyF  2353  2357     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              plasma-de  2355           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              plasma-de  2355           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              plasma-de  2355  2369     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              plasma-de  2355  2369     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QInotifyF  2355  2395     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QInotifyF  2355  2395     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QInotifyF  2355  2409     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QInotifyF  2355  2409     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              KCupsConn  2355  2410     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              KCupsConn  2355  2410     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              lancelot   2367           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              lancelot   2367           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QInotifyF  2367  2368     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QInotifyF  2367  2368     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QInotifyF  2367  2370     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QInotifyF  2367  2370     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QProcessM  2367  2371     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QProcessM  2367  2371     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              akonadi_c  2373           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              akonadi_c  2373           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QProcessM  2373  2374     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QProcessM  2373  2374     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QInotifyF  2373  2449     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QInotifyF  2373  2449     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QInotifyF  2373  2455     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QInotifyF  2373  2455     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              akonadise  2375           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              akonadise  2375           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QProcessM  2375  2376     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QProcessM  2375  2376     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Akonadi::  2375  2440     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Akonadi::  2375  2440     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              IntervalC  2375  2441     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              IntervalC  2375  2441     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              StorageJa  2375  2442     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              StorageJa  2375  2442     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Akonadi::  2375  2443     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Akonadi::  2375  2443     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Akonadi::  2375  2493     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Akonadi::  2375  2493     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Akonadi::  2375  2536     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Akonadi::  2375  2536     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Akonadi::  2375  2537     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Akonadi::  2375  2537     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Akonadi::  2375  2545     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Akonadi::  2375  2545     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Akonadi::  2375  2546     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Akonadi::  2375  2546     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Akonadi::  2375  2555     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Akonadi::  2375  2555     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Akonadi::  2375  2556     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Akonadi::  2375  2556     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Akonadi::  2375  2557     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Akonadi::  2375  2557     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Akonadi::  2375  2558     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Akonadi::  2375  2558     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Akonadi::  2375  2561     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Akonadi::  2375  2561     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Akonadi::  2375  2563     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Akonadi::  2375  2563     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Akonadi::  2375  2690     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Akonadi::  2375  2690     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Akonadi::  2375  2691     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Akonadi::  2375  2691     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              nepomukse  2439           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              nepomukse  2439           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QProcessM  2439  2450     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QProcessM  2439  2450     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              yakuake    2453           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              yakuake    2453           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QProcessM  2453  2574     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QProcessM  2453  2574     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QInotifyF  2453  2843     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QInotifyF  2453  2843     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              akonadi_a  2456           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              akonadi_a  2456           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QProcessM  2456  2528     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QProcessM  2456  2528     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              akonadi_a  2457           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              akonadi_a  2457           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              akonadi_a  2458           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              akonadi_a  2458           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QProcessM  2458  2529     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QProcessM  2458  2529     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              akonadi_g  2459           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              akonadi_g  2459           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              akonadi_a  2460           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              akonadi_a  2460           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QProcessM  2460  2532     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QProcessM  2460  2532     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              akonadi_i  2462           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              akonadi_i  2462           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              KIMAP::Se  2462 11472     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              KIMAP::Se  2462 11472     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              KIMAP::Se  2462 11680     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              KIMAP::Se  2462 11680     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              akonadi_a  2463           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              akonadi_a  2463           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QProcessM  2463  2534     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QProcessM  2463  2534     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              akonadi_m  2464           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              akonadi_m  2464           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              akonadi_m  2467           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              akonadi_m  2467           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              konsole    2468           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              konsole    2468           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QInotifyF  2468  2570     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QInotifyF  2468  2570     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QProcessM  2468  2611     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QProcessM  2468  2611     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              akonadi_n  2475           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              akonadi_n  2475           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QProcessM  2475  2794     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QProcessM  2475  2794     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              krunner    2476           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              krunner    2476           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QInotifyF  2476  2610     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QInotifyF  2476  2610     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              polkit-kd  2492           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              polkit-kd  2492           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              gdbus      2492  2568     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              gdbus      2492  2568     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              kmix       2495           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              kmix       2495           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QInotifyF  2495  2600     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QInotifyF  2495  2600     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QInotifyF  2495  2683     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QInotifyF  2495  2683     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              nepomukco  2498           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              nepomukco  2498           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              klipper    2503           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              klipper    2503           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              dropbox    2525           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              dropbox    2525           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              dropbox    2525  2716     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              dropbox    2525  2716     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              dropbox    2525  2717     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              dropbox    2525  2717     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              dropbox    2525  2718     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              dropbox    2525  2718     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              dropbox    2525  2719     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              dropbox    2525  2719     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              gmain      2525  2728     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              gmain      2525  2728     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              gdbus      2525  2733     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              gdbus      2525  2733     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              dropbox    2525  2776     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              dropbox    2525  2776     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              dropbox    2525  2777     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              dropbox    2525  2777     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              dropbox    2525  2778     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              dropbox    2525  2778     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              dropbox    2525  2779     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              dropbox    2525  2779     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              dropbox    2525  2780     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              dropbox    2525  2780     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              dropbox    2525  2781     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              dropbox    2525  2781     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              dropbox    2525  2782     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              dropbox    2525  2782     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              dropbox    2525  2783     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              dropbox    2525  2783     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              dropbox    2525  2784     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              dropbox    2525  2784     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              dropbox    2525  2785     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              dropbox    2525  2785     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              dropbox    2525  2786     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              dropbox    2525  2786     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              dropbox    2525  2788     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              dropbox    2525  2788     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              dropbox    2525  2789     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              dropbox    2525  2789     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              dropbox    2525  2791     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              dropbox    2525  2791     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              kwalletd   2802           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              kwalletd   2802           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              iron       2865           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              iron       2865           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              NetworkCh  2865  2868     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              NetworkCh  2865  2868     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              inotify_r  2865  2869     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              inotify_r  2865  2869     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              AudioThre  2865  2872     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              AudioThre  2865  2872     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              CrShutdow  2865  2873     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              CrShutdow  2865  2873     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_DB  2865  2877     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_DB  2865  2877     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_We  2865  2878     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_We  2865  2878     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_Fi  2865  2879     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_Fi  2865  2879     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_Fi  2865  2880     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_Fi  2865  2880     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_Pr  2865  2881     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_Pr  2865  2881     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_Ca  2865  2882     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_Ca  2865  2882     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_IO  2865  2883     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_IO  2865  2883     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              MediaStre  2865  2884     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              MediaStre  2865  2884     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              BrowserWa  2865  2885     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              BrowserWa  2865  2885     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              BrowserBl  2865  2886     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              BrowserBl  2865  2886     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_Sa  2865  2887     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_Sa  2865  2887     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              gmain      2865  2889     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              gmain      2865  2889     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              gdbus      2865  2891     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              gdbus      2865  2891     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              BrowserBl  2865  2892     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              BrowserBl  2865  2892     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_Sy  2865  2897     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_Sy  2865  2897     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_Hi  2865  2898     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_Hi  2865  2898     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              BrowserBl  2865  2899     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              BrowserBl  2865  2899     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              NSS        2865  2913     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              NSS        2865  2913     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              WorkerPoo  2865 11686     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              WorkerPoo  2865 11686     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              WorkerPoo  2865 11687     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              WorkerPoo  2865 11687     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              WorkerPoo  2865 11689     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              WorkerPoo  2865 11689     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              WorkerPoo  2865 11690     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              WorkerPoo  2865 11690     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              WorkerPoo  2865 11691     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              WorkerPoo  2865 11691     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              iron       2866           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              iron       2866           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              iron       2867           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              iron       2867           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              iron       2893           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              iron       2893           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_Ch  2893  2894     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_Ch  2893  2894     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              VC         2893  2895     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              VC         2893  2895     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              SignalSen  2893  2896     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              SignalSen  2893  2896     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              iron       2900           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              iron       2900           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_Ch  2900  2902     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_Ch  2900  2902     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              VC         2900  2903     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              VC         2900  2903     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              SignalSen  2900  2904     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              SignalSen  2900  2904     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              iron       2905           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              iron       2905           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_Ch  2905  2906     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_Ch  2905  2906     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              VC         2905  2907     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              VC         2905  2907     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              SignalSen  2905  2908     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              SignalSen  2905  2908     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              iron       2909           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              iron       2909           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_Ch  2909  2910     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_Ch  2909  2910     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              VC         2909  2911     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              VC         2909  2911     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              SignalSen  2909  2912     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              SignalSen  2909  2912     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              iron       2914           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              iron       2914           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_Ch  2914  2915     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_Ch  2914  2915     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              VC         2914  2916     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              VC         2914  2916     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              SignalSen  2914  2918     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              SignalSen  2914  2918     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              iron       2920           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              iron       2920           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_Ch  2920  2921     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_Ch  2920  2921     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              VC         2920  2922     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              VC         2920  2922     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              SignalSen  2920  2923     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              SignalSen  2920  2923     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              iron       2926           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              iron       2926           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_Ch  2926  2927     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_Ch  2926  2927     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              VC         2926  2928     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              VC         2926  2928     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              SignalSen  2926  2929     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              SignalSen  2926  2929     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              MediaPipe  2926  2933     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              MediaPipe  2926  2933     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              iron       2937           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              iron       2937           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_Ch  2937  2938     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_Ch  2937  2938     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              VC         2937  2939     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              VC         2937  2939     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              SignalSen  2937  2940     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              SignalSen  2937  2940     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              iron       2942           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              iron       2942           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_Ch  2942  2943     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_Ch  2942  2943     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              VC         2942  2944     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              VC         2942  2944     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              SignalSen  2942  2945     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              SignalSen  2942  2945     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              iron       2981           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              iron       2981           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_Ch  2981  2982     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_Ch  2981  2982     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              VC         2981  2983     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              VC         2981  2983     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              SignalSen  2981  2984     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              SignalSen  2981  2984     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              dolphin    3022           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              dolphin    3022           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QInotifyF  3022  3024     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QInotifyF  3022  3024     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QInotifyF  3022  3025     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QInotifyF  3022  3025     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QProcessM  3022  3040     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              QProcessM  3022  3040     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              iron       3113           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              iron       3113           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_Ch  3113  3114     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_Ch  3113  3114     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              VC         3113  3115     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              VC         3113  3115     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              SignalSen  3113  3116     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              SignalSen  3113  3116     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              iron      11630           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              iron      11630           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_Ch 11630 11631     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              Chrome_Ch 11630 11631     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              VC        11630 11632     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              VC        11630 11632     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              SignalSen 11630 11633     stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              SignalSen 11630 11633     stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              kio_file  11725           stuart    1w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              kio_file  11725           stuart    2w      REG               0,26  57926974     154181 /home/stuart/.xsession-errors
              It looks like the nepomuk errors stopped at about 300,000ish.

              I haven't had time to re-edit the Xsession file yet.

              Please Read Me

              Comment


                #8
                The tmp idea might help somewhat as I use tmpfs as well.

                Please Read Me

                Comment


                  #9
                  Originally posted by oshunluvr View Post
                  The tmp idea might help somewhat as I use tmpfs as well.
                  Well, until your RAM is completely consumed .... then it won't be fun any more! ;-)

                  Comment


                    #10
                    I seem to recall something about tmpfs never exceeding 50% available RAM...?

                    Comment


                      #11
                      That appears to be correct Steve (I did not know that). However, this begs the question -- wtf happens with your system when it hits the limit?

                      Comment


                        #12
                        Oshunluvr:

                        Anybody else seeing this 90,000+ times in your .xsession-errors file?
                        I don't have a file by that name at all that I can find in my /home directory. Is this something generated by enabling Nepomuk?

                        If so, what are you using Nepomuk for? My understanding is that it is a disk indexer, along with Strigi. If you are using it for that, I have found that Recoll is a much better product. Lightning quick both in indexing and in searching.

                        Frank.
                        Linux: Powerful, open, elegant. Its all I use.

                        Comment


                          #13
                          Originally posted by oshunluvr View Post
                          Wow, that didn't work!
                          Think I found your problem: LightDM hardcodes $HOME/.xsession-errors in xsession.c. I'm using KDM, not LightDM, so I'm not plagued with this little bug. And indeed, there's Launchpad bug 1001035, complaining specifically about it. Status: wishlist. Sigh.

                          Another technique is to add some code to your .bashrc that converts the file back into a symlink:
                          Code:
                          # .xsession-errors can grow huge... remove it
                          if [ ! -h $HOME/.xsession-errors ]
                          then
                              /bin/rm $HOME/.xsession-errors
                              ln -s /dev/null $HOME/.xsession-errors
                          fi
                           
                          if [ ! -h $HOME/.xsession-errors.old ]
                          then
                              /bin/rm $HOME/.xsession-errors.old
                              ln -s /dev/null $HOME/.xsession-errors.old
                          fi
                          (source)

                          If that doesn't work, then change to KDM

                          Comment


                            #14
                            x-session 1887 wallace 1w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            x-session 1887 wallace 2w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            start_kde 2004 wallace 1w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            start_kde 2004 wallace 2w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            kdeinit4 2005 wallace 1w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            kdeinit4 2005 wallace 2w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            klauncher 2006 wallace 1w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            klauncher 2006 wallace 2w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            kded4 2008 wallace 1w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            kded4 2008 wallace 2w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            kglobalac 2014 wallace 1w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            kglobalac 2014 wallace 2w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            kwalletd 2016 wallace 1w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            kwalletd 2016 wallace 2w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            kactivity 2018 wallace 1w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            kactivity 2018 wallace 2w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            kwrapper4 2176 wallace 1w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            kwrapper4 2176 wallace 2w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            ksmserver 2177 wallace 1w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            ksmserver 2177 wallace 2w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            kwin 2182 wallace 1w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            kwin 2182 wallace 2w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            knotify4 2190 wallace 1w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            knotify4 2190 wallace 2w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            plasma-de 2193 wallace 1w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            plasma-de 2193 wallace 2w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            xsettings 2218 wallace 1w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            xsettings 2218 wallace 2w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            nepomukse 2220 wallace 1w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            nepomukse 2220 wallace 2w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            akonaditr 2228 wallace 1w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            akonaditr 2228 wallace 2w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            nepomukco 2238 wallace 1w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            nepomukco 2238 wallace 2w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            krunner 2245 wallace 1w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            krunner 2245 wallace 2w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            kmix 2246 wallace 1w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            kmix 2246 wallace 2w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            zeitgeist 2254 wallace 1w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            zeitgeist 2254 wallace 2w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            python 2266 wallace 1w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            python 2266 wallace 2w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            polkit-kd 2272 wallace 1w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            polkit-kd 2272 wallace 2w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            klipper 2278 wallace 1w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            klipper 2278 wallace 2w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            totem 4405 wallace 1w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            totem 4405 wallace 2w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            firefox 7526 wallace 1w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            firefox 7526 wallace 2w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            kmozillah 7546 wallace 2w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            plugin-co 7574 wallace 1w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            plugin-co 7574 wallace 2w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            kio_http 8047 wallace 1w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            kio_http 8047 wallace 2w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            kio_http 8048 wallace 1w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            kio_http 8048 wallace 2w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            kio_http 8049 wallace 1w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            kio_http 8049 wallace 2w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            kio_http 8050 wallace 1w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            kio_http 8050 wallace 2w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            kio_http 8054 wallace 1w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            kio_http 8054 wallace 2w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            konsole 8352 wallace 1w REG 8,17 101860 15466503 /home/wallace/.xsession-errors
                            konsole 8352 wallace 2w REG 8,17 101860 15466503 /home/wallace/.xsession-errors


                            I'm in Kubuntu 12.04 (KDE 4.10.2) and getting a similar error.

                            Comment


                              #15
                              Originally posted by Frank616 View Post
                              I don't have a file by that name at all that I can find in my /home directory. Is this something generated by enabling Nepomuk?
                              It's the standard error file for the X Window System. I don't think I've ever encountered a machine without one. Let me see the output of:
                              Code:
                              ls -al /tmp

                              Comment

                              Working...
                              X