You are not logged in.

#1 2012-07-07 01:35:58

cfr
Member
From: Cymru
Registered: 2011-11-27
Posts: 7,130

[workaround] linker issues: firefox suddenly fails to find shared libs

I usually use Mozilla's 64 bit binary of Firefox so that I can use my preferred interface language. (The language pack doesn't work.) This is installed under /usr/local using stow.

As a backup (and in the hope that the language pack might one day start working), I also have Arch's version installed. This is effectively the US version although the dud language pack is installed too.

This usually works perfectly fine. 13.0.1 was working, as expected, perfectly fine.

I rebooted yesterday. After reboot, the Mozilla version will not launch. ~/.xsession-errors includes:

lib/firefox/plugin-container: error while loading shared libraries: libxpcom.so: cannot open shared object file: No such file or directory

There are a series of similar reports reported at https://bugzilla.mozilla.org/show_bug.cgi?id=723487 but this obviously only affects a very few people which makes me think there must be something weird going on with my system.

I'm not quite sure what the output of ldd should look like, but I know it should not look like this:

$ ldd /usr/local/stow/firefox-13.0.1-cy/lib/firefox/plugin-container 
        linux-vdso.so.1 (0x00007fff78fff000)
        libpthread.so.0 => /lib/libpthread.so.0 (0x00007f4a6e186000)
        librt.so.1 => /lib/librt.so.1 (0x00007f4a6df7e000)
        libxpcom.so => not found
        libmozalloc.so => not found
        libxul.so => not found
        libplds4.so => /usr/lib/libplds4.so (0x00007f4a6dd7a000)
        libplc4.so => /usr/lib/libplc4.so (0x00007f4a6db75000)
        libnspr4.so => /usr/lib/libnspr4.so (0x00007f4a6d937000)
        libdl.so.2 => /lib/libdl.so.2 (0x00007f4a6d733000)
        libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0x00007f4a6d42f000)
        libm.so.6 => /lib/libm.so.6 (0x00007f4a6d135000)
        libgcc_s.so.1 => /usr/lib/libgcc_s.so.1 (0x00007f4a6cf20000)
        libc.so.6 => /lib/libc.so.6 (0x00007f4a6cb7c000)
        /lib64/ld-linux-x86-64.so.2 (0x00007f4a6e3a2000)

So I thought that I might be able to work around this by telling the system about the shared libraries. I initially tried adding

/usr/local/lib

as local.conf in /etc/ld.so.conf.d (and running ldconfig) but that had no effect. I then tried adding

/usr/local/lib/firefox

as local-firefox.conf (and ldconfig). This definitely made a difference. ldd found all the missing libraries and a whole bunch more - the output looked comparable to the output I'd get running ldd on Arch's version of the plugin-container. However, firefox still crashed immediately although I couldn't find anything helpful in ~/.xsession-errors. The change had a more dramatic effect on Arch's build of firefox, though - that then just seg-faulted immediately. (So I've undone the changes, obviously, so I at least have a working browser.)

Can anybody shed any light on this? What I don't understand is that the very same install of firefox worked perfectly well until I rebooted yesterday and now it fails utterly.

I realise that I'm not using Arch's version of firefox (but I would if the language pack worked smile) but I'm thinking there's just something I don't understand here about the way shared libraries work... I tried some searching but basically found a great many posts explaining how to add paths to /etc/ld.so.conf etc. and that obviously isn't a good solution in this particular case.

There is no DYLD_LIBRARY_PATH on Linux, right? LD_LIBRARY_PATH is the only relevant environmental variable? But from reading, I gather setting this for normal use isn't a great idea and that it is better to configure via /etc/ld.so.conf (or /etc/ld.so.conf.d/*) for Linux? I'm just checking because DYLD_LIBRARY_PATH would be my first thought on OS X - although mainly for compiling rather than running stuff, admittedly.

Last edited by cfr (2012-07-08 23:42:00)


CLI Paste | How To Ask Questions

Arch Linux | x86_64 | GPT | EFI boot | refind | stub loader | systemd | LVM2 on LUKS
Lenovo x270 | Intel(R) Core(TM) i5-7200U CPU @ 2.50GHz | Intel Wireless 8265/8275 | US keyboard w/ Euro | 512G NVMe INTEL SSDPEKKF512G7L

Offline

#2 2012-07-07 20:39:02

ConnorBehan
Package Maintainer (PM)
From: Long Island NY
Registered: 2007-07-05
Posts: 1,359
Website

Re: [workaround] linker issues: firefox suddenly fails to find shared libs

I think /etc/ld.so.conf would be a global setting that affects every program. So if you put /usr/local/lib/firefox in there, Arch's firefox will try to use these libraries and fail. With LD_LIBRARY_PATH, you can set this for only one program, e.g. start Mozilla's firefox with "LD_LIBRARY_PATH=/usr/local/lib/firefox /usr/local/bin/firefox".

The only reason Arch's firefox works without this trick is because the path "/usr/lib/firefox" was hardcoded into it with -rpath (something that is also considered bad form). Mozilla may have done something similar where the firefox binary they ship expects to be in /usr instead of /usr/local.


6EA3 F3F3 B908 2632 A9CB E931 D53A 0445 B47A 0DAB
Great things come in tar.xz packages.

Offline

#3 2012-07-08 02:07:08

cfr
Member
From: Cymru
Registered: 2011-11-27
Posts: 7,130

Re: [workaround] linker issues: firefox suddenly fails to find shared libs

ConnorBehan wrote:

I think /etc/ld.so.conf would be a global setting that affects every program. So if you put /usr/local/lib/firefox in there, Arch's firefox will try to use these libraries and fail. With LD_LIBRARY_PATH, you can set this for only one program, e.g. start Mozilla's firefox with "LD_LIBRARY_PATH=/usr/local/lib/firefox /usr/local/bin/firefox".

I figured it was something like that but appreciate the explanation. Unfortunately, even with the setting changed globally, firefox still couldn't start - although ldd did find the libraries - so I don't think this is going to solve it, even if it is part of the solution. I'm not quite sure what further problem there is.

The only reason Arch's firefox works without this trick is because the path "/usr/lib/firefox" was hardcoded into it with -rpath (something that is also considered bad form). Mozilla may have done something similar where the firefox binary they ship expects to be in /usr instead of /usr/local.

Interesting. But it doesn't explain why the very same binary worked just fine under /usr/local before I rebooted. Moreover, I've installed a number of Mozilla builds this way (the language pack has never worked) and they've all worked without my doing anything special.


CLI Paste | How To Ask Questions

Arch Linux | x86_64 | GPT | EFI boot | refind | stub loader | systemd | LVM2 on LUKS
Lenovo x270 | Intel(R) Core(TM) i5-7200U CPU @ 2.50GHz | Intel Wireless 8265/8275 | US keyboard w/ Euro | 512G NVMe INTEL SSDPEKKF512G7L

Offline

#4 2012-07-08 04:07:54

Zancarius
Member
From: NM, USA
Registered: 2012-05-06
Posts: 207

Re: [workaround] linker issues: firefox suddenly fails to find shared libs

Sorry you're still having problems cfr. I remember the confounding language pack issue.

I don't suppose strace could yield some insight into why it's failing or what it's attempting to load (and can't)?

strace -e trace=open firefox

Could be helpful, but check the man page first. You can further filter the output. It's gotten me out of a bind or two!

Edit: From what it looks like, Firefox attempts to load local copies of certain libraries first (if configured, I believe; depends on how it was built), then falls back to the system ones. Perhaps somewhere in there might be a clue...

Last edited by Zancarius (2012-07-08 04:10:34)


He who has no .plan has small finger.
~Confucius on UNIX.

Offline

#5 2012-07-08 10:08:52

a4591
Member
Registered: 2012-07-08
Posts: 7

Re: [workaround] linker issues: firefox suddenly fails to find shared libs

My official Mozilla Firefox also wouldn't start any more after a recent upgrade. I was able to fix it by downgrading glibc from 2.16.0-1 to 2.15-12. I was downgrading packages one by one until it worked, so it's possible that something else needs to be downgraded too.

I had a similar problem with Thunderbird a few weeks ago. In that case the problem was fixed upstream. I think it was bug 762621.

Offline

#6 2012-07-08 15:39:52

cfr
Member
From: Cymru
Registered: 2011-11-27
Posts: 7,130

Re: [workaround] linker issues: firefox suddenly fails to find shared libs

I fear that the glibc upgrade may be the culprit in which case, I'm afraid this may not get fixed at all...

I found that just setting LD_LIBRARY_PATH to /usr/local/lib/firefox didn't work. Although firefox then found its bundled libraries, it failed to find any system libraries. So I tried

LD_LIBRARY_PATH=/usr/local/lib/firefox:/lib:/usr/lib strace -e trace=open -o ff-ld-mwy.strace firefox

EDIT: I think this is wrong and that it makes no difference. The change just makes it look in more places, maybe? But it does seem to get further in this case, though I've no idea why e.g. it searches for a lot more icons. I'm not sure why that would be...

The output isn't meaning much to me right now. That is, several things look odd but I think that is probably me rather than necessarily being something wrong. Here's the output:

 
open("/usr/local/lib/firefox/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/local/lib/firefox/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/local/lib/firefox/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/local/lib/firefox/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = 3
open("/usr/local/lib/firefox/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = 3
open("/usr/local/lib/firefox/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = 3
open("/usr/local/lib/firefox/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/tls/x86_64/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/tls/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/x86_64/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = 3
open("/usr/local/lib/firefox/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = 3
open("/usr/local/lib/firefox/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = 3
open("/usr/local/lib/firefox/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/dependentlibs.list", O_RDONLY) = 3
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libnspr4.so", O_RDONLY) = 4
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libnspr4.so", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libplc4.so", O_RDONLY) = 4
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libplc4.so", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libplds4.so", O_RDONLY) = 4
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libplds4.so", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libmozalloc.so", O_RDONLY) = 4
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libmozalloc.so", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libmozsqlite3.so", O_RDONLY) = 4
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libmozsqlite3.so", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libnssutil3.so", O_RDONLY) = 4
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libnssutil3.so", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libsoftokn3.so", O_RDONLY) = 4
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libsoftokn3.so", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libnss3.so", O_RDONLY) = 4
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libnss3.so", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libssl3.so", O_RDONLY) = 4
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libssl3.so", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libsmime3.so", O_RDONLY) = 4
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libsmime3.so", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libxul.so", O_RDONLY) = 4
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libxul.so", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libXrender.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libXrender.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libXrender.so.1", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libfreetype.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libfreetype.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libfreetype.so.6", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libfontconfig.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libfontconfig.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libfontconfig.so.1", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libasound.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libasound.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libasound.so.2", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libdbus-glib-1.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libdbus-glib-1.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libdbus-glib-1.so.2", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libdbus-1.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libdbus-1.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libdbus-1.so.3", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libglib-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libglib-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libglib-2.0.so.0", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libX11.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libX11.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libX11.so.6", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libXext.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libXext.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libXext.so.6", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libpangoft2-1.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libpangoft2-1.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libpangoft2-1.0.so.0", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libpangocairo-1.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libpangocairo-1.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libpangocairo-1.0.so.0", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libpango-1.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libpango-1.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libpango-1.0.so.0", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libcairo.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libcairo.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libcairo.so.2", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libgobject-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libgobject-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libgobject-2.0.so.0", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libgmodule-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libgmodule-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libgmodule-2.0.so.0", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libgtk-x11-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libgtk-x11-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libgtk-x11-2.0.so.0", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libatk-1.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libatk-1.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libatk-1.0.so.0", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libgdk-x11-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libgdk-x11-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libgdk-x11-2.0.so.0", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libgdk_pixbuf-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libgdk_pixbuf-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libgdk_pixbuf-2.0.so.0", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libXt.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libXt.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libXt.so.6", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libgthread-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libgthread-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libgthread-2.0.so.0", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libz.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libz.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libz.so.1", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libbz2.so.1.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libbz2.so.1.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libbz2.so.1.0", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libexpat.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libexpat.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libexpat.so.1", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libgio-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libgio-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libgio-2.0.so.0", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libpcre.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libpcre.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libpcre.so.1", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libxcb.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libxcb.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libxcb.so.1", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libpixman-1.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libpixman-1.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libpixman-1.so.0", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libpng15.so.15", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libpng15.so.15", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libpng15.so.15", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libxcb-shm.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libxcb-shm.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libxcb-shm.so.0", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libxcb-render.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libxcb-render.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libxcb-render.so.0", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libffi.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libffi.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libffi.so.6", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libXfixes.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libXfixes.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libXfixes.so.3", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libXinerama.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libXinerama.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libXinerama.so.1", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libXi.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libXi.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libXi.so.6", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libXrandr.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libXrandr.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libXrandr.so.2", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libXcursor.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libXcursor.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libXcursor.so.1", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libXcomposite.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libXcomposite.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libXcomposite.so.1", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libXdamage.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libXdamage.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libXdamage.so.1", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libSM.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libSM.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libSM.so.6", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libICE.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libICE.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libICE.so.6", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libresolv.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libresolv.so.2", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libXau.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libXau.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libXau.so.6", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libXdmcp.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libXdmcp.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libXdmcp.so.6", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libuuid.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libuuid.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libuuid.so.1", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libxpcom.so", O_RDONLY|O_CLOEXEC) = 3
open("/home/<username>/.mozilla/firefox/Crash Reports/InstallTime20120614114901", O_RDONLY) = 4
open("/home/<username>/.mozilla/firefox/Crash Reports/LastCrash", O_RDONLY) = 4
open("/usr/share/X11/locale/locale.alias", O_RDONLY) = 4
open("/usr/share/X11/locale/locale.dir", O_RDONLY) = 4
open("/usr/share/X11/locale/C/XLC_LOCALE", O_RDONLY) = 4
open("/usr/share/X11/locale/locale.alias", O_RDONLY) = 4
open("/usr/share/X11/locale/locale.dir", O_RDONLY) = 4
open("/usr/share/X11/locale/C/XLC_LOCALE", O_RDONLY) = 4
open("/etc/nsswitch.conf", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libnss_files.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libnss_files.so.2", O_RDONLY|O_CLOEXEC) = 4
open("/etc/passwd", O_RDONLY|O_CLOEXEC) = 4
open("/usr/lib/gtk-2.0/modules/libcanberra-gtk-module.so", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libcanberra-gtk.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libcanberra-gtk.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libcanberra-gtk.so.0", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libcanberra.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libcanberra.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libcanberra.so.0", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libvorbisfile.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libvorbisfile.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libvorbisfile.so.3", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libvorbis.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libvorbis.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libvorbis.so.0", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libogg.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libogg.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libogg.so.0", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libtdb.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libtdb.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libtdb.so.1", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libltdl.so.7", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libltdl.so.7", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libltdl.so.7", O_RDONLY|O_CLOEXEC) = 4
open("/home/<username>/.Xauthority", O_RDONLY) = 5
--- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=30447, si_status=0, si_utime=1, si_stime=0} ---
open("/home/<username>/.Xauthority", O_RDONLY) = 5
open("/etc/gtk-2.0/gtkrc", O_RDONLY)    = 6
open("/home/<username>/.kde4/share/config/gtkrc-2.0", O_RDONLY) = 6
open("/usr/share/themes/oxygen-gtk/gtk-2.0/gtkrc", O_RDONLY) = 7
open("/usr/lib/gtk-2.0/2.10.0/engines/liboxygen-gtk.so", O_RDONLY|O_CLOEXEC) = 8
open("/proc/30446/cmdline", O_RDONLY)   = 8
open("/home/<username>/.config/oxygen-gtk/argb-apps.conf", O_WRONLY|O_CREAT|O_APPEND, 0666) = 8
open("/usr/share/themes/oxygen-gtk/gtk-2.0/argb-apps.conf", O_RDONLY) = 8
open("/home/<username>/.config/oxygen-gtk/argb-apps.conf", O_RDONLY) = 9
--- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=30448, si_status=0, si_utime=0, si_stime=0} ---
open("/usr/share/themes/oxygen-gtk/gtk-2.0/kdeglobals", O_RDONLY) = 8
open("/usr/share/themes/oxygen-gtk/gtk-2.0/kdeglobals", O_RDONLY) = 8
open("/usr/lib/charset.alias", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/gconv/gconv-modules.cache", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/gconv/gconv-modules", O_RDONLY|O_CLOEXEC) = 9
open("/usr/lib/gio/modules/giomodule.cache", O_RDONLY) = 9
open("/usr/share/config/kdeglobals", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/config/kdeglobals", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/config/kdeglobals", O_RDONLY) = 9
open("/home/<username>/.kde4/share/config/kdeglobals", O_RDONLY) = 9
open("/usr/share/themes/oxygen-gtk/gtk-2.0/oxygenrc", O_RDONLY) = 9
open("/usr/share/themes/oxygen-gtk/gtk-2.0/oxygenrc", O_RDONLY) = 9
open("/usr/share/config/oxygenrc", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/config/oxygenrc", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/config/oxygenrc", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/config/oxygenrc", O_RDONLY) = -1 ENOENT (No such file or directory)
--- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=30449, si_status=0, si_utime=1, si_stime=0} ---
open("/usr/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache", O_RDONLY) = 9
open("/usr/share/themes/oxygen-gtk/gtk-2.0/icons4", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/index.theme", O_RDONLY) = 9
open("/usr/share/icons/gnome/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/image-x-generic.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/mimetypes/image-x-generic.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/mimetypes/image-x-generic.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/mimetypes/image-x-generic.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/mimetypes/image-x-generic.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/image-x-generic.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/image-x-generic.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/mimetypes/image-x-generic.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/image-x-generic.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-information.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/status/dialog-information.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-information.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-information.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/status/dialog-information.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-information.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-refresh.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/view-refresh.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/view-refresh.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/view-refresh.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/view-refresh.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-refresh.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-refresh.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/view-refresh.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-refresh.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/configure.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/configure.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/configure.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/configure.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/configure.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/configure.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/configure.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/configure.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/configure.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-warning.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/status/dialog-warning.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-warning.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/status/dialog-warning.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-warning.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/status/dialog-warning.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-warning.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/status/dialog-warning.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-warning.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-warning.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/status/dialog-warning.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-warning.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/places/folder.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/places/folder.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/places/folder.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/places/folder.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/places/folder.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/places/folder.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/places/folder.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/places/folder.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/places/folder.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/help-about.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/help-about.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/help-about.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/actions/help-about.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/help-about.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/actions/help-about.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/help-about.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/actions/help-about.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/help-about.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/help-about.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/help-about.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/help-about.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/list-add.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/list-add.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/list-add.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/list-add.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/list-add.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/list-add.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/list-add.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/list-add.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/list-add.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/dialog-ok-apply.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/dialog-ok-apply.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/dialog-ok-apply.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/dialog-ok-apply.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/dialog-ok-apply.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/dialog-ok-apply.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/dialog-ok-apply.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/dialog-ok-apply.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/dialog-ok-apply.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-text-bold.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/format-text-bold.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-text-bold.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-text-bold.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-text-bold.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-text-bold.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-text-bold.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/format-text-bold.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-text-bold.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/dialog-cancel.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/dialog-cancel.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/dialog-cancel.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/dialog-cancel.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/dialog-cancel.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/dialog-cancel.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/dialog-cancel.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/dialog-cancel.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/dialog-cancel.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/devices/media-optical.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/devices/media-optical.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/devices/media-optical.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/devices/media-optical.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/devices/media-optical.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/devices/media-optical.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/devices/media-optical.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/devices/media-optical.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/devices/media-optical.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-clear.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-clear.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-clear.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-clear.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-clear.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-clear.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-clear.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-clear.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-clear.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/window-close.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/window-close.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/window-close.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/window-close.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/window-close.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/window-close.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/window-close.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/window-close.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/window-close.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/color-picker.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/color-picker.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/color-picker.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/color-picker.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/color-picker.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/color-picker.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/color-picker.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/color-picker.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/color-picker.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/network-connect.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/network-connect.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/network-connect.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/network-connect.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/network-connect.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/network-connect.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/network-connect.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/network-connect.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/network-connect.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-export.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-export.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-export.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-export.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-export.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-export.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-export.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-export.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-export.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-copy.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-copy.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-copy.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-copy.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-copy.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-copy.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-copy.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-copy.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-copy.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-cut.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-cut.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-cut.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-cut.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-cut.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-cut.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-cut.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-cut.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-cut.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-delete.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-delete.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-delete.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-delete.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-delete.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-delete.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-delete.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-delete.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-delete.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-password.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/status/dialog-password.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-password.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/status/dialog-password.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-password.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/status/dialog-password.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-password.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/status/dialog-password.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-password.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-password.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/status/dialog-password.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-password.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-error.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/status/dialog-error.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-error.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/status/dialog-error.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-error.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/status/dialog-error.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-error.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/status/dialog-error.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-error.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-error.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/status/dialog-error.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-error.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-information.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/status/dialog-information.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-information.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-information.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/status/dialog-information.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-information.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-information.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/status/dialog-information.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-information.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-information.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/status/dialog-information.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-information.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-warning.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/status/dialog-warning.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-warning.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/status/dialog-warning.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-warning.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/status/dialog-warning.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-warning.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/status/dialog-warning.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-warning.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-warning.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/status/dialog-warning.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-warning.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/places/folder.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/places/folder.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/places/folder.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/places/folder.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/places/folder.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/places/folder.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/places/folder.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/places/folder.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/places/folder.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/network-disconnect.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/network-disconnect.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/network-disconnect.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/network-disconnect.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/network-disconnect.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/network-disconnect.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/network-disconnect.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/network-disconnect.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/network-disconnect.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/places/document-multiple.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/places/document-multiple.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/places/document-multiple.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/places/document-multiple.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/places/document-multiple.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/places/document-multiple.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/places/document-multiple.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/places/document-multiple.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/places/document-multiple.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-properties.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-properties.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-properties.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-properties.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-properties.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-properties.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-properties.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-properties.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-properties.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/fork.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/fork.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/fork.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/fork.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/fork.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/fork.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/fork.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/fork.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/fork.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/application-x-zerosize.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-find.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-find.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-find.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-find.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-find.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-find.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-find.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-find.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-find.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-find-replace.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-find-replace.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-find-replace.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-find-replace.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-find-replace.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-find-replace.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-find-replace.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-find-replace.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-find-replace.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/devices/media-floppy.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/devices/media-floppy.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/devices/media-floppy.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/devices/media-floppy.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/devices/media-floppy.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/devices/media-floppy.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/devices/media-floppy.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/devices/media-floppy.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/devices/media-floppy.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-fullscreen.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/view-fullscreen.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/view-fullscreen.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/view-fullscreen.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/view-fullscreen.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-fullscreen.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-fullscreen.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/view-fullscreen.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-fullscreen.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-previous.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-previous.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-previous.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-previous.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-previous.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-previous.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-previous.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-previous.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-previous.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-previous.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-previous.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-previous.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-previous.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-previous.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-previous.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-previous.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-previous.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-previous.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-next.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-next.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-next.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-next.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-next.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-next.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-next.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-next.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-next.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-down.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-down.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-down.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-down.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-down.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-down.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-down.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-down.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-down.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-next.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-next.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-next.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-next.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-next.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-next.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-next.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-next.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-next.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-next.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-next.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-next.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-next.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-next.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-next.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-next.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-next.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-next.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-previous.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-previous.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-previous.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-previous.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-previous.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-previous.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-previous.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-previous.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-previous.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-up.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-up.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-up.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-up.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-up.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-up.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-up.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-up.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-up.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-bottom.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-bottom.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-bottom.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-bottom.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-bottom.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-bottom.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-bottom.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-bottom.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-bottom.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-first.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-first.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-first.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-first.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-first.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-first.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-first.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-first.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-first.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-last.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-last.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-last.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-last.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-last.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-last.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-last.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-last.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-last.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-top.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-top.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-top.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-top.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-top.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-top.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-top.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-top.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-top.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/devices/drive-harddisk.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/devices/drive-harddisk.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/devices/drive-harddisk.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/devices/drive-harddisk.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/devices/drive-harddisk.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/devices/drive-harddisk.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/devices/drive-harddisk.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/devices/drive-harddisk.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/16x16/devices/drive-harddisk.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/devices/drive-harddisk.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/devices/drive-harddisk.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/devices/drive-harddisk.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/help-contents.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/help-contents.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/help-contents.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/actions/help-contents.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/help-contents.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/actions/help-contents.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/help-contents.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/actions/help-contents.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/help-contents.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/help-contents.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/help-contents.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/help-contents.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-home.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-home.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-home.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/actions/go-home.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-home.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/actions/go-home.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-home.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/actions/go-home.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-home.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-home.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-home.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-home.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-indent-more.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/format-indent-more.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-indent-more.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-indent-more.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-indent-more.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-indent-more.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-indent-more.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/format-indent-more.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-indent-more.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/help-contents.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/help-contents.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/help-contents.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/actions/help-contents.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/help-contents.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/actions/help-contents.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/help-contents.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/actions/help-contents.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/help-contents.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/help-contents.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/help-contents.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/help-contents.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/help-about.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/help-about.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/help-about.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/actions/help-about.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/help-about.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/actions/help-about.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/help-about.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/actions/help-about.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/help-about.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/help-about.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/help-about.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/help-about.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-text-italic.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/format-text-italic.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-text-italic.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-text-italic.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-text-italic.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-text-italic.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-text-italic.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/format-text-italic.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-text-italic.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-jump.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-jump.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-jump.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-jump.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-jump.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-jump.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-jump.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-jump.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-jump.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-justify-center.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/format-justify-center.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-justify-center.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-justify-center.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-justify-center.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-justify-center.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-justify-center.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/format-justify-center.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-justify-center.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-justify-fill.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/format-justify-fill.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-justify-fill.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-justify-fill.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-justify-fill.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-justify-fill.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-justify-fill.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/format-justify-fill.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-justify-fill.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-justify-left.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/format-justify-left.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-justify-left.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-justify-left.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-justify-left.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-justify-left.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-justify-left.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/format-justify-left.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-justify-left.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-justify-right.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/format-justify-right.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-justify-right.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-justify-right.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-justify-right.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-justify-right.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-justify-right.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/format-justify-right.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-justify-right.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-restore.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/view-restore.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/view-restore.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/view-restore.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/view-restore.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-restore.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-restore.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/view-restore.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-restore.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-seek-forward.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/media-seek-forward.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-seek-forward.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-seek-forward.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-seek-forward.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-seek-forward.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-seek-forward.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/media-seek-forward.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-seek-forward.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-skip-forward.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/media-skip-forward.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-skip-forward.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-skip-forward.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-skip-forward.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-skip-forward.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-skip-forward.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/media-skip-forward.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-skip-forward.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-playback-pause.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/media-playback-pause.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-playback-pause.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-playback-pause.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-playback-pause.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-playback-pause.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-playback-pause.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/media-playback-pause.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-playback-pause.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-playback-start.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/media-playback-start.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-playback-start.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-playback-start.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-playback-start.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-playback-start.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-playback-start.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/media-playback-start.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-playback-start.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-skip-backward.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/media-skip-backward.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-skip-backward.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-skip-backward.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-skip-backward.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-skip-backward.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-skip-backward.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/media-skip-backward.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-skip-backward.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-record.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/media-record.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-record.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-record.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-record.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-record.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-record.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/media-record.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-record.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-seek-backward.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/media-seek-backward.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-seek-backward.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-seek-backward.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-seek-backward.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-seek-backward.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-seek-backward.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/media-seek-backward.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-seek-backward.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-playback-stop.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/media-playback-stop.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-playback-stop.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-playback-stop.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-playback-stop.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-playback-stop.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-playback-stop.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/media-playback-stop.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-playback-stop.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/unknown.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/mimetypes/unknown.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/mimetypes/unknown.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/mimetypes/unknown.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/mimetypes/unknown.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/unknown.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/unknown.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/mimetypes/unknown.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/unknown.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/places/network-server.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/places/network-server.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/places/network-server.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/places/network-server.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/places/network-server.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/places/network-server.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/places/network-server.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/places/network-server.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/16x16/places/network-server.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/places/network-server.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/places/network-server.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/places/network-server.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-new.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-new.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-new.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-new.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-new.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-new.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-new.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-new.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-new.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-delete.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-delete.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-delete.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-delete.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-delete.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-delete.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-delete.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-delete.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-delete.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/dialog-ok.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/dialog-ok.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/dialog-ok.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/dialog-ok.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/dialog-ok.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/dialog-ok.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/dialog-ok.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/dialog-ok.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/dialog-ok.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-open.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-open.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-open.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-open.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-open.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-open.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-open.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-open.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-open.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-paste.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-paste.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-paste.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-paste.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-paste.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-paste.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-paste.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-paste.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-paste.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/configure.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/configure.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/configure.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/configure.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/configure.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/configure.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/configure.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/configure.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/configure.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-print.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-print.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-print.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-print.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-print.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-print.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-print.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-print.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-print.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-print-preview.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-print-preview.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-print-preview.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-print-preview.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-print-preview.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-print-preview.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-print-preview.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-print-preview.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-print-preview.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-properties.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-properties.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-properties.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-properties.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-properties.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-properties.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-properties.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-properties.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-properties.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/application-exit.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/application-exit.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/application-exit.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/application-exit.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/application-exit.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/application-exit.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/application-exit.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/application-exit.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/application-exit.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-redo.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-redo.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-redo.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-redo.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-redo.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-redo.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-redo.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-redo.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-redo.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-refresh.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/view-refresh.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/view-refresh.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/view-refresh.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/view-refresh.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-refresh.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-refresh.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/view-refresh.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-refresh.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-delete.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-delete.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-delete.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-delete.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-delete.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-delete.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-delete.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-delete.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-delete.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-revert.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-revert.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-revert.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-revert.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-revert.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-revert.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-revert.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-revert.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-revert.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-save.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-save.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-save.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-save.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-save.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-save.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-save.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-save.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-save.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-save-as.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-save-as.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-save-as.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-save-as.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-save-as.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-save-as.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-save-as.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-save-as.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-save-as.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-select-all.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-select-all.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-select-all.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-select-all.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-select-all.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-select-all.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-select-all.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-select-all.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-select-all.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/color-picker.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/color-picker.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/color-picker.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/color-picker.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/color-picker.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/color-picker.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/color-picker.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/color-picker.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/color-picker.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/apps/preferences-desktop-font.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/apps/preferences-desktop-font.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/apps/preferences-desktop-font.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/apps/preferences-desktop-font.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/apps/preferences-desktop-font.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/apps/preferences-desktop-font.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/apps/preferences-desktop-font.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/apps/preferences-desktop-font.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/apps/preferences-desktop-font.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-sort-ascending.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/view-sort-ascending.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/view-sort-ascending.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/view-sort-ascending.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/view-sort-ascending.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-sort-ascending.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-sort-ascending.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/view-sort-ascending.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-sort-ascending.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-sort-descending.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/view-sort-descending.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/view-sort-descending.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/view-sort-descending.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/view-sort-descending.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-sort-descending.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-sort-descending.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/view-sort-descending.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-sort-descending.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/tools-check-spelling.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/tools-check-spelling.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/tools-check-spelling.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/tools-check-spelling.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/tools-check-spelling.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/tools-check-spelling.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/tools-check-spelling.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/tools-check-spelling.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/tools-check-spelling.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/process-stop.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/process-stop.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/process-stop.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/process-stop.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/process-stop.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/process-stop.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/process-stop.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/process-stop.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/process-stop.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-text-strikethrough.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/format-text-strikethrough.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-text-strikethrough.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-text-strikethrough.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-text-strikethrough.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-text-strikethrough.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-text-strikethrough.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/format-text-strikethrough.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-text-strikethrough.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-undo.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-undo.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-undo.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-undo.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-undo.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-undo.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-undo.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-undo.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-undo.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-text-underline.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/format-text-underline.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-text-underline.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-text-underline.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-text-underline.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-text-underline.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-text-underline.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/format-text-underline.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-text-underline.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-undo.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-undo.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-undo.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-undo.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-undo.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-undo.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-undo.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-undo.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-undo.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-indent-less.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/format-indent-less.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-indent-less.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-indent-less.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-indent-less.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-indent-less.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-indent-less.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/format-indent-less.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-indent-less.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/dialog-ok.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/dialog-ok.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/dialog-ok.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/dialog-ok.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/dialog-ok.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/dialog-ok.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/dialog-ok.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/dialog-ok.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/dialog-ok.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/zoom-original.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/zoom-original.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/zoom-original.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/zoom-original.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/zoom-original.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/zoom-original.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/zoom-original.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/zoom-original.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/zoom-original.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/zoom-fit-best.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/zoom-fit-best.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/zoom-fit-best.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/zoom-fit-best.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/zoom-fit-best.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/zoom-fit-best.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/zoom-fit-best.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/zoom-fit-best.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/zoom-fit-best.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/zoom-in.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/zoom-in.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/zoom-in.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/zoom-in.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/zoom-in.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/zoom-in.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/zoom-in.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/zoom-in.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/zoom-in.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/zoom-out.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/zoom-out.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/zoom-out.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/zoom-out.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/zoom-out.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/zoom-out.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/zoom-out.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/zoom-out.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/zoom-out.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/bookmarks-organize.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/bookmarks-organize.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/bookmarks-organize.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/bookmarks-organize.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/bookmarks-organize.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/bookmarks-organize.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/bookmarks-organize.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/bookmarks-organize.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/bookmarks-organize.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-clear-locationbar-rtl.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-clear-locationbar-rtl.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-clear-locationbar-rtl.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-clear-locationbar-rtl.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-clear-locationbar-rtl.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-clear-locationbar-rtl.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-clear-locationbar-rtl.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-clear-locationbar-rtl.png", O_RDONLY) = 9
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-clear-locationbar-rtl.png", O_RDONLY) = 9
open("/usr/share/themes/Raleigh/gtk-2.0/gtkrc", O_RDONLY) = 6
open("/home/<username>/.Xdefaults-<ComputerName>", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/local/lib/firefox/libgnomeui-2.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libgnomeui-2.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libgnomeui-2.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 6
open("/lib/libgnomeui-2.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libgnomeui-2.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/updates/0/update.status", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.mozilla/firefox/profiles.ini", O_RDONLY) = 6
open("/usr/lib/gconv/UTF-16.so", O_RDONLY|O_CLOEXEC) = 6
open("/home/<username>/.mozilla/firefox/3cqqd1st.default/.parentlock", O_WRONLY|O_CREAT|O_TRUNC, 0666) = 6
open("/etc/resolv.conf", O_RDONLY|O_CLOEXEC) = 7
open("/etc/host.conf", O_RDONLY|O_CLOEXEC) = 7
open("/etc/hosts", O_RDONLY|O_CLOEXEC)  = 7
open("/home/<username>/.mozilla/firefox/3cqqd1st.default/compatibility.ini", O_RDONLY) = 7
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/omni.ja", O_RDONLY) = 13
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/defaults/pref/channel-prefs.js", O_RDONLY) = 13
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/chrome.manifest", O_RDONLY) = 15
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/components/binary.manifest", O_RDONLY) = 16
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/components/libmozgnome.so", O_RDONLY|O_CLOEXEC) = 17
open("/usr/local/lib/firefox/libgnomevfs-2.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libgnomevfs-2.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libgnomevfs-2.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 17
open("/lib/libgnomevfs-2.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libgnomevfs-2.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/components/libdbusservice.so", O_RDONLY|O_CLOEXEC) = 17
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/components/libnkgnomevfs.so", O_RDONLY|O_CLOEXEC) = 17
open("/usr/local/lib/firefox/libgnomevfs-2.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libgnomevfs-2.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libgnomevfs-2.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 17
open("/lib/libgnomevfs-2.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libgnomevfs-2.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/components/libbrowsercomps.so", O_RDONLY|O_CLOEXEC) = 17
open("/usr/share/locale/locale.alias", O_RDONLY) = 15
open("/etc/pango/pangorc", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/home/<username>/.config/pango/pangorc", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/etc/pango/pango.modules", O_RDONLY) = 15
open("/etc/fonts/fonts.conf", O_RDONLY) = 15
open("/etc/fonts/conf.d/20-fix-globaladvance.conf", O_RDONLY) = 17
open("/etc/fonts/conf.d/20-unhint-small-dejavu-sans-mono.conf", O_RDONLY) = 17
open("/etc/fonts/conf.d/20-unhint-small-dejavu-sans.conf", O_RDONLY) = 17
open("/etc/fonts/conf.d/20-unhint-small-dejavu-serif.conf", O_RDONLY) = 17
open("/etc/fonts/conf.d/20-unhint-small-vera.conf", O_RDONLY) = 17
open("/etc/fonts/conf.d/29-replace-bitmap-fonts.conf", O_RDONLY) = 17
open("/etc/fonts/conf.d/30-metric-aliases.conf", O_RDONLY) = 17
open("/etc/fonts/conf.d/30-urw-aliases.conf", O_RDONLY) = 17
open("/etc/fonts/conf.d/40-nonlatin.conf", O_RDONLY) = 17
open("/etc/fonts/conf.d/45-latin.conf", O_RDONLY) = 17
open("/etc/fonts/conf.d/49-sansserif.conf", O_RDONLY) = 17
open("/etc/fonts/conf.d/50-user.conf", O_RDONLY) = 17
open("/home/<username>/.fonts.conf", O_RDONLY) = 18
open("/etc/fonts/conf.d/51-local.conf", O_RDONLY) = 17
open("/etc/fonts/local.conf", O_RDONLY) = 18
open("/etc/fonts/conf.d/52-infinality.conf", O_RDONLY) = 17
open("/etc/fonts/infinality/infinality.conf", O_RDONLY) = 18
open("/etc/fonts/infinality/conf.d/20-aliases-default-inf.conf", O_RDONLY) = 20
open("/etc/fonts/infinality/conf.d/20-fix-cantarell.conf", O_RDONLY) = 20
open("/etc/fonts/infinality/conf.d/21-aliases-wine-win7-inf.conf", O_RDONLY) = 20
open("/etc/fonts/infinality/conf.d/30-non-latin-inf-win.conf", O_RDONLY) = 20
open("/etc/fonts/infinality/conf.d/41-repl-os-inf.conf", O_RDONLY) = 20
open("/etc/fonts/infinality/conf.d/42-repl-global.conf", O_RDONLY) = 20
open("/etc/fonts/infinality/conf.d/43-repl-terminus.conf", O_RDONLY) = 20
open("/etc/fonts/infinality/conf.d/43-repl-tt-traced-bitmap.conf", O_RDONLY) = 20
open("/etc/fonts/infinality/conf.d/44-repl-corrective.conf", O_RDONLY) = 20
open("/etc/fonts/infinality/conf.d/50-base-rendering-inf-osx-lin.conf", O_RDONLY) = 20
open("/etc/fonts/infinality/conf.d/60-group-non-tt-fonts.conf", O_RDONLY) = 20
open("/etc/fonts/infinality/conf.d/60-group-tt-fonts.conf", O_RDONLY) = 20
open("/etc/fonts/infinality/conf.d/61-group-non-tt-rendering-inf-7-xp-lin.conf", O_RDONLY) = 20
open("/etc/fonts/infinality/conf.d/61-group-tt-rendering-inf-7-xp.conf", O_RDONLY) = 20
open("/etc/fonts/infinality/conf.d/62-tt-monospace-rendering.conf", O_RDONLY) = 20
open("/etc/fonts/infinality/conf.d/62-tt-traced-bitmap-rendering.conf", O_RDONLY) = 20
open("/etc/fonts/infinality/conf.d/64-override-inf.conf", O_RDONLY) = 20
open("/etc/fonts/infinality/conf.d/65-override.conf", O_RDONLY) = 20
open("/etc/fonts/infinality/conf.d/70-forced-synthetic.conf", O_RDONLY) = 20
open("/etc/fonts/infinality/conf.d/80-selective-rendering-inf-7-xp.conf", O_RDONLY) = 20
open("/etc/fonts/infinality/conf.d/80-selective-rendering-inf-win-lin.conf", O_RDONLY) = 20
open("/etc/fonts/infinality/conf.d/81-final-rendering-inf-7-xp.conf", O_RDONLY) = 20
open("/etc/fonts/infinality/conf.d/90-no-synthetic.conf", O_RDONLY) = 20
open("/etc/fonts/infinality/conf.d/90-reject.conf", O_RDONLY) = 20
open("/etc/fonts/conf.d/57-dejavu-sans-mono.conf", O_RDONLY) = 17
open("/etc/fonts/conf.d/57-dejavu-sans.conf", O_RDONLY) = 17
open("/etc/fonts/conf.d/57-dejavu-serif.conf", O_RDONLY) = 17
open("/etc/fonts/conf.d/60-latin.conf", O_RDONLY) = 17
open("/etc/fonts/conf.d/65-fonts-persian.conf", O_RDONLY) = 17
open("/etc/fonts/conf.d/65-nonlatin.conf", O_RDONLY) = 17
open("/etc/fonts/conf.d/69-unifont.conf", O_RDONLY) = 17
open("/etc/fonts/conf.d/70-no-bitmaps.conf", O_RDONLY) = 17
open("/etc/fonts/conf.d/80-delicious.conf", O_RDONLY) = 17
open("/etc/fonts/conf.d/90-synthetic.conf", O_RDONLY) = 17
open("/etc/fonts/conf.d/99pdftoopvp.conf", O_RDONLY) = 17
open("/var/cache/fontconfig/3830d5c3ddfd5cd38a049b759396e72e-le64.cache-3", O_RDONLY) = 15
open("/var/cache/fontconfig/4c599c202bc5c08e2d34565a40eac3b2-le64.cache-3", O_RDONLY) = 15
open("/var/cache/fontconfig/df311e82a1a24c41a75c2c930223552e-le64.cache-3", O_RDONLY) = 15
open("/var/cache/fontconfig/17090aa38d5c6f09fb8c5c354938f1d7-le64.cache-3", O_RDONLY) = 15
open("/var/cache/fontconfig/f349e9996a5320f6dd491cedd2b1f964-le64.cache-3", O_RDONLY) = 15
open("/var/cache/fontconfig/f6b893a7224233d96cb72fd88691c0b4-le64.cache-3", O_RDONLY) = 15
open("/var/cache/fontconfig/d62e99ef547d1d24cdb1bd22ec1a2976-le64.cache-3", O_RDONLY) = 15
open("/var/cache/fontconfig/3fa645b0e3a29c70e53084e094754bdd-le64.cache-3", O_RDONLY) = 15
open("/var/cache/fontconfig/2d31a572ce6667f6a0da9c8dc611898b-le64.cache-3", O_RDONLY) = 15
open("/var/cache/fontconfig/a1c95d6dfc9a7b34f44445cf81166004-le64.cache-3", O_RDONLY) = 15
open("/var/cache/fontconfig/a98d8961fa319a64d3cfd8640c79e62d-le64.cache-3", O_RDONLY) = 15
open("/var/cache/fontconfig/8d4af663993b81a124ee82e610bb31f9-le64.cache-3", O_RDONLY) = 15
open("/var/cache/fontconfig/5512704b9abd6431e8dc140284145d3b-le64.cache-3", O_RDONLY) = 15
open("/var/cache/fontconfig/4b172ca7f111e3cffadc3636415fead9-le64.cache-3", O_RDONLY) = 15
open("/var/cache/fontconfig/5ca8086aeacc9c68e81a71e7ef846b3b-le64.cache-3", O_RDONLY) = 15
open("/usr/share/fonts/TTF/arial.ttf", O_RDONLY) = 15
open("/home/<username>/.icons/Oxygen_Blue/cursors/xterm", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.icons/Oxygen_Blue/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/Oxygen_Blue/cursors/xterm", O_RDONLY) = 15
open("/etc/gtk-2.0/gtk.immodules", O_RDONLY) = 15
open("/sys/devices/system/cpu/online", O_RDONLY|O_CLOEXEC) = 17
open("/proc/self/maps", O_RDONLY|O_CLOEXEC) = 17
open("/dev/urandom", O_RDONLY)          = 17
open("/proc/meminfo", O_RDONLY|O_CLOEXEC) = 18
open("/home/<username>/.mozilla/firefox/3cqqd1st.default/prefs.js", O_RDONLY) = 18
open("/etc/resolv.conf", O_RDONLY|O_CLOEXEC) = 19
open("/home/<username>/.mozilla/firefox/3cqqd1st.default/user.js", O_RDONLY) = 18
open("/home/<username>/.mozilla/firefox/3cqqd1st.default/prefs.js", O_WRONLY|O_CREAT|O_EXCL|O_TRUNC, 0600) = -1 EEXIST (File exists)
open("/home/<username>/.mozilla/firefox/3cqqd1st.default/prefs-1.js", O_WRONLY|O_CREAT|O_EXCL|O_TRUNC, 0600) = -1 EEXIST (File exists)
open("/home/<username>/.mozilla/firefox/3cqqd1st.default/prefs-2.js", O_WRONLY|O_CREAT|O_EXCL|O_TRUNC, 0600) = -1 EEXIST (File exists)
open("/home/<username>/.mozilla/firefox/3cqqd1st.default/prefs-3.js", O_WRONLY|O_CREAT|O_EXCL|O_TRUNC, 0600) = -1 EEXIST (File exists)
open("/home/<username>/.mozilla/firefox/3cqqd1st.default/prefs-4.js", O_WRONLY|O_CREAT|O_EXCL|O_TRUNC, 0600) = -1 EEXIST (File exists)
open("/home/<username>/.mozilla/firefox/3cqqd1st.default/prefs-5.js", O_WRONLY|O_CREAT|O_EXCL|O_TRUNC, 0600) = -1 EEXIST (File exists)
open("/home/<username>/.mozilla/firefox/3cqqd1st.default/prefs-6.js", O_WRONLY|O_CREAT|O_EXCL|O_TRUNC, 0600) = -1 EEXIST (File exists)
open("/home/<username>/.mozilla/firefox/3cqqd1st.default/prefs-7.js", O_WRONLY|O_CREAT|O_EXCL|O_TRUNC, 0600) = -1 EEXIST (File exists)
open("/home/<username>/.mozilla/firefox/3cqqd1st.default/prefs-8.js", O_WRONLY|O_CREAT|O_EXCL|O_TRUNC, 0600) = 18
open("/home/<username>/.mozilla/firefox/3cqqd1st.default/prefs-8.js", O_WRONLY|O_CREAT|O_TRUNC, 0600) = 18
open("/usr/local/lib/firefox/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/local/lib/firefox/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/local/lib/firefox/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/local/lib/firefox/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/tls/x86_64/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/tls/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/x86_64/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/lib/firefox/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = 4
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/dependentlibs.list", O_RDONLY) = 4
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libnspr4.so", O_RDONLY) = 5
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libnspr4.so", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libplc4.so", O_RDONLY) = 5
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libplc4.so", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libplds4.so", O_RDONLY) = 5
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libplds4.so", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libmozalloc.so", O_RDONLY) = 5
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libmozalloc.so", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libmozsqlite3.so", O_RDONLY) = 5
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libmozsqlite3.so", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libnssutil3.so", O_RDONLY) = 5
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libnssutil3.so", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libsoftokn3.so", O_RDONLY) = 5
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libsoftokn3.so", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libnss3.so", O_RDONLY) = 5
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libnss3.so", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libssl3.so", O_RDONLY) = 5
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libssl3.so", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libsmime3.so", O_RDONLY) = 5
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libsmime3.so", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libxul.so", O_RDONLY) = 5
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libxul.so", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libXrender.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libXrender.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libXrender.so.1", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libfreetype.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libfreetype.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libfreetype.so.6", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libfontconfig.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libfontconfig.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libfontconfig.so.1", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libasound.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libasound.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libasound.so.2", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libdbus-glib-1.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libdbus-glib-1.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libdbus-glib-1.so.2", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libdbus-1.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libdbus-1.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libdbus-1.so.3", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libglib-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libglib-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libglib-2.0.so.0", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libX11.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libX11.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libX11.so.6", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libXext.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libXext.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libXext.so.6", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libpangoft2-1.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libpangoft2-1.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libpangoft2-1.0.so.0", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libpangocairo-1.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libpangocairo-1.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libpangocairo-1.0.so.0", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libpango-1.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libpango-1.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libpango-1.0.so.0", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libcairo.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libcairo.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libcairo.so.2", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libgobject-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libgobject-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libgobject-2.0.so.0", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libgmodule-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libgmodule-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libgmodule-2.0.so.0", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libgtk-x11-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libgtk-x11-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libgtk-x11-2.0.so.0", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libatk-1.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libatk-1.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libatk-1.0.so.0", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libgdk-x11-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libgdk-x11-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libgdk-x11-2.0.so.0", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libgdk_pixbuf-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libgdk_pixbuf-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libgdk_pixbuf-2.0.so.0", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libXt.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libXt.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libXt.so.6", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libgthread-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libgthread-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libgthread-2.0.so.0", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libz.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libz.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libz.so.1", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libbz2.so.1.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libbz2.so.1.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libbz2.so.1.0", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libexpat.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libexpat.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libexpat.so.1", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libgio-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libgio-2.0.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libgio-2.0.so.0", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libpcre.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libpcre.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libpcre.so.1", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libxcb.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libxcb.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libxcb.so.1", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libpixman-1.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libpixman-1.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libpixman-1.so.0", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libpng15.so.15", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libpng15.so.15", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libpng15.so.15", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libxcb-shm.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libxcb-shm.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libxcb-shm.so.0", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libxcb-render.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libxcb-render.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libxcb-render.so.0", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libffi.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libffi.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libffi.so.6", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libXfixes.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libXfixes.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libXfixes.so.3", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libXinerama.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libXinerama.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libXinerama.so.1", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libXi.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libXi.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libXi.so.6", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libXrandr.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libXrandr.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libXrandr.so.2", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libXcursor.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libXcursor.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libXcursor.so.1", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libXcomposite.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libXcomposite.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libXcomposite.so.1", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libXdamage.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libXdamage.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libXdamage.so.1", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libSM.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libSM.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libSM.so.6", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libICE.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libICE.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libICE.so.6", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libresolv.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libresolv.so.2", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libXau.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libXau.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libXau.so.6", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libXdmcp.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libXdmcp.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libXdmcp.so.6", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libuuid.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libuuid.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libuuid.so.1", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libxpcom.so", O_RDONLY|O_CLOEXEC) = 4
open("/home/<username>/.mozilla/firefox/Crash Reports/InstallTime20120614114901", O_RDONLY) = 5
open("/home/<username>/.mozilla/firefox/Crash Reports/LastCrash", O_RDONLY) = 5
open("/usr/share/X11/locale/locale.alias", O_RDONLY) = 5
open("/usr/share/X11/locale/locale.dir", O_RDONLY) = 5
open("/usr/share/X11/locale/C/XLC_LOCALE", O_RDONLY) = 5
open("/usr/share/X11/locale/locale.alias", O_RDONLY) = 5
open("/usr/share/X11/locale/locale.dir", O_RDONLY) = 5
open("/usr/share/X11/locale/C/XLC_LOCALE", O_RDONLY) = 5
open("/etc/nsswitch.conf", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libnss_files.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libnss_files.so.2", O_RDONLY|O_CLOEXEC) = 5
open("/etc/passwd", O_RDONLY|O_CLOEXEC) = 5
open("/usr/lib/gtk-2.0/modules/libcanberra-gtk-module.so", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libcanberra-gtk.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libcanberra-gtk.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libcanberra-gtk.so.0", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libcanberra.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libcanberra.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libcanberra.so.0", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libvorbisfile.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libvorbisfile.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libvorbisfile.so.3", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libvorbis.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libvorbis.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libvorbis.so.0", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libogg.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libogg.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libogg.so.0", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libtdb.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libtdb.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libtdb.so.1", O_RDONLY|O_CLOEXEC) = 5
open("/usr/local/lib/firefox/libltdl.so.7", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libltdl.so.7", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libltdl.so.7", O_RDONLY|O_CLOEXEC) = 5
open("/home/<username>/.Xauthority", O_RDONLY) = 7
--- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=30460, si_status=0, si_utime=1, si_stime=1} ---
open("/home/<username>/.Xauthority", O_RDONLY) = 7
open("/etc/gtk-2.0/gtkrc", O_RDONLY)    = 8
open("/home/<username>/.kde4/share/config/gtkrc-2.0", O_RDONLY) = 8
open("/usr/share/themes/oxygen-gtk/gtk-2.0/gtkrc", O_RDONLY) = 9
open("/usr/lib/gtk-2.0/2.10.0/engines/liboxygen-gtk.so", O_RDONLY|O_CLOEXEC) = 10
open("/proc/30446/cmdline", O_RDONLY)   = 10
open("/home/<username>/.config/oxygen-gtk/argb-apps.conf", O_WRONLY|O_CREAT|O_APPEND, 0666) = 10
open("/usr/share/themes/oxygen-gtk/gtk-2.0/argb-apps.conf", O_RDONLY) = 10
open("/home/<username>/.config/oxygen-gtk/argb-apps.conf", O_RDONLY) = 11
--- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=30461, si_status=0, si_utime=1, si_stime=0} ---
open("/usr/share/themes/oxygen-gtk/gtk-2.0/kdeglobals", O_RDONLY) = 10
open("/usr/share/themes/oxygen-gtk/gtk-2.0/kdeglobals", O_RDONLY) = 10
open("/usr/lib/charset.alias", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/gconv/gconv-modules.cache", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/gconv/gconv-modules", O_RDONLY|O_CLOEXEC) = 11
open("/usr/lib/gio/modules/giomodule.cache", O_RDONLY) = 11
open("/usr/share/config/kdeglobals", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/config/kdeglobals", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/config/kdeglobals", O_RDONLY) = 11
open("/home/<username>/.kde4/share/config/kdeglobals", O_RDONLY) = 11
open("/usr/share/themes/oxygen-gtk/gtk-2.0/oxygenrc", O_RDONLY) = 11
open("/usr/share/themes/oxygen-gtk/gtk-2.0/oxygenrc", O_RDONLY) = 11
open("/usr/share/config/oxygenrc", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/config/oxygenrc", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/config/oxygenrc", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/config/oxygenrc", O_RDONLY) = -1 ENOENT (No such file or directory)
--- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=30462, si_status=0, si_utime=1, si_stime=0} ---
open("/usr/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache", O_RDONLY) = 11
open("/usr/share/themes/oxygen-gtk/gtk-2.0/icons4", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/index.theme", O_RDONLY) = 11
open("/usr/share/icons/gnome/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/image-x-generic.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/mimetypes/image-x-generic.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/mimetypes/image-x-generic.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/mimetypes/image-x-generic.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/mimetypes/image-x-generic.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/image-x-generic.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/image-x-generic.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/mimetypes/image-x-generic.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/image-x-generic.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-information.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/status/dialog-information.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-information.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-information.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/status/dialog-information.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-information.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-refresh.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/view-refresh.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/view-refresh.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/view-refresh.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/view-refresh.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-refresh.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-refresh.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/view-refresh.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-refresh.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/configure.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/configure.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/configure.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/configure.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/configure.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/configure.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/configure.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/configure.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/configure.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-warning.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/status/dialog-warning.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-warning.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/status/dialog-warning.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-warning.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/status/dialog-warning.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-warning.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/status/dialog-warning.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-warning.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-warning.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/status/dialog-warning.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-warning.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/places/folder.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/places/folder.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/places/folder.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/places/folder.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/places/folder.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/places/folder.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/places/folder.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/places/folder.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/places/folder.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/application-x-zerosize.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/mimetypes/application-x-zerosize.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/mimetypes/application-x-zerosize.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/mimetypes/application-x-zerosize.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/mimetypes/application-x-zerosize.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/application-x-zerosize.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/application-x-zerosize.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/mimetypes/application-x-zerosize.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/application-x-zerosize.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/help-about.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/help-about.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/help-about.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/actions/help-about.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/help-about.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/actions/help-about.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/help-about.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/actions/help-about.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/help-about.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/help-about.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/help-about.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/help-about.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/list-add.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/list-add.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/list-add.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/list-add.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/list-add.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/list-add.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/list-add.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/list-add.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/list-add.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/dialog-ok-apply.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/dialog-ok-apply.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/dialog-ok-apply.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/dialog-ok-apply.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/dialog-ok-apply.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/dialog-ok-apply.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/dialog-ok-apply.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/dialog-ok-apply.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/dialog-ok-apply.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-text-bold.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/format-text-bold.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-text-bold.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-text-bold.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-text-bold.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-text-bold.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-text-bold.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/format-text-bold.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-text-bold.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/dialog-cancel.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/dialog-cancel.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/dialog-cancel.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/dialog-cancel.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/dialog-cancel.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/dialog-cancel.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/dialog-cancel.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/dialog-cancel.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/dialog-cancel.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/devices/media-optical.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/devices/media-optical.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/devices/media-optical.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/devices/media-optical.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/devices/media-optical.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/devices/media-optical.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/devices/media-optical.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/devices/media-optical.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/devices/media-optical.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-clear.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-clear.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-clear.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-clear.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-clear.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-clear.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-clear.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-clear.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-clear.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/window-close.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/window-close.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/window-close.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/window-close.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/window-close.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/window-close.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/window-close.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/window-close.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/window-close.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/color-picker.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/color-picker.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/color-picker.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/color-picker.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/color-picker.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/color-picker.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/color-picker.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/color-picker.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/color-picker.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/network-connect.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/network-connect.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/network-connect.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/network-connect.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/network-connect.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/network-connect.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/network-connect.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/network-connect.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/network-connect.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-export.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-export.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-export.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-export.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-export.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-export.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-export.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-export.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-export.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-copy.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-copy.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-copy.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-copy.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-copy.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-copy.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-copy.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-copy.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-copy.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-cut.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-cut.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-cut.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-cut.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-cut.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-cut.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-cut.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-cut.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-cut.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-delete.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-delete.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-delete.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-delete.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-delete.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-delete.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-delete.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-delete.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-delete.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-password.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/status/dialog-password.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-password.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/status/dialog-password.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-password.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/status/dialog-password.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-password.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/status/dialog-password.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-password.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-password.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/status/dialog-password.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-password.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-error.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/status/dialog-error.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-error.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/status/dialog-error.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-error.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/status/dialog-error.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-error.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/status/dialog-error.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-error.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-error.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/status/dialog-error.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-error.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-information.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/status/dialog-information.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-information.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-information.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/status/dialog-information.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-information.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-information.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/status/dialog-information.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/status/dialog-information.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-information.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-information.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/status/dialog-information.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-information.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-warning.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/status/dialog-warning.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-warning.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/status/dialog-warning.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-warning.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/status/dialog-warning.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/status/dialog-warning.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/status/dialog-warning.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-warning.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-warning.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/status/dialog-warning.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/status/dialog-warning.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/places/folder.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/places/folder.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/places/folder.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/places/folder.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/places/folder.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/places/folder.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/places/folder.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/places/folder.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/places/folder.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/network-disconnect.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/network-disconnect.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/network-disconnect.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/network-disconnect.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/network-disconnect.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/network-disconnect.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/network-disconnect.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/network-disconnect.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/network-disconnect.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/application-x-zerosize.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/mimetypes/application-x-zerosize.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/mimetypes/application-x-zerosize.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/mimetypes/application-x-zerosize.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/mimetypes/application-x-zerosize.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/application-x-zerosize.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/application-x-zerosize.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/mimetypes/application-x-zerosize.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/application-x-zerosize.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/places/document-multiple.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/places/document-multiple.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/places/document-multiple.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/places/document-multiple.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/places/document-multiple.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/places/document-multiple.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/places/document-multiple.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/places/document-multiple.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/places/document-multiple.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-properties.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-properties.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-properties.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-properties.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-properties.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-properties.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-properties.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-properties.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-properties.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/fork.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/fork.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/fork.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/fork.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/fork.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/fork.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/fork.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/fork.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/fork.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/application-x-zerosize.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/mimetypes/application-x-zerosize.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/mimetypes/application-x-zerosize.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/mimetypes/application-x-zerosize.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/mimetypes/application-x-zerosize.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/application-x-zerosize.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/application-x-zerosize.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/mimetypes/application-x-zerosize.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/application-x-zerosize.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-find.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-find.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-find.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-find.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-find.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-find.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-find.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-find.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-find.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-find-replace.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-find-replace.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-find-replace.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-find-replace.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-find-replace.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-find-replace.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-find-replace.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-find-replace.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-find-replace.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/devices/media-floppy.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/devices/media-floppy.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/devices/media-floppy.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/devices/media-floppy.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/devices/media-floppy.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/devices/media-floppy.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/devices/media-floppy.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/devices/media-floppy.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/devices/media-floppy.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-fullscreen.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/view-fullscreen.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/view-fullscreen.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/view-fullscreen.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/view-fullscreen.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-fullscreen.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-fullscreen.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/view-fullscreen.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-fullscreen.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-previous.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-previous.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-previous.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-previous.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-previous.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-previous.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-previous.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-previous.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-previous.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-previous.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-previous.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-previous.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-previous.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-previous.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-previous.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-previous.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-previous.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-previous.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-next.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-next.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-next.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-next.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-next.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-next.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-next.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-next.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-next.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-down.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-down.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-down.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-down.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-down.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-down.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-down.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-down.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-down.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-next.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-next.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-next.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-next.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-next.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-next.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-next.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-next.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-next.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-next.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-next.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-next.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-next.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-next.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-next.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-next.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-next.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-next.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-previous.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-previous.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-previous.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-previous.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-previous.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-previous.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-previous.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-previous.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-previous.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-up.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-up.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-up.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-up.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-up.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-up.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-up.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-up.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-up.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-bottom.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-bottom.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-bottom.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-bottom.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-bottom.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-bottom.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-bottom.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-bottom.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-bottom.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-first.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-first.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-first.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-first.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-first.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-first.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-first.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-first.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-first.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-last.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-last.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-last.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-last.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-last.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-last.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-last.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-last.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-last.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-top.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-top.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-top.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-top.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-top.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-top.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-top.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-top.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-top.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/devices/drive-harddisk.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/devices/drive-harddisk.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/devices/drive-harddisk.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/devices/drive-harddisk.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/devices/drive-harddisk.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/devices/drive-harddisk.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/devices/drive-harddisk.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/devices/drive-harddisk.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/16x16/devices/drive-harddisk.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/devices/drive-harddisk.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/devices/drive-harddisk.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/devices/drive-harddisk.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/help-contents.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/help-contents.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/help-contents.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/actions/help-contents.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/help-contents.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/actions/help-contents.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/help-contents.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/actions/help-contents.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/help-contents.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/help-contents.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/help-contents.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/help-contents.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-home.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-home.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-home.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/actions/go-home.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-home.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/actions/go-home.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-home.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/actions/go-home.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-home.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-home.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-home.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-home.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-indent-more.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/format-indent-more.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-indent-more.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-indent-more.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-indent-more.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-indent-more.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-indent-more.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/format-indent-more.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-indent-more.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/help-contents.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/help-contents.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/help-contents.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/actions/help-contents.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/help-contents.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/actions/help-contents.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/help-contents.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/actions/help-contents.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/help-contents.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/help-contents.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/help-contents.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/help-contents.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/help-about.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/help-about.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/help-about.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/actions/help-about.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/help-about.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/actions/help-about.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/help-about.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/actions/help-about.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/help-about.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/help-about.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/help-about.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/help-about.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-text-italic.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/format-text-italic.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-text-italic.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-text-italic.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-text-italic.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-text-italic.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-text-italic.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/format-text-italic.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-text-italic.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-jump.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-jump.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-jump.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-jump.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/go-jump.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-jump.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-jump.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/go-jump.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/go-jump.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-justify-center.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/format-justify-center.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-justify-center.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-justify-center.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-justify-center.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-justify-center.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-justify-center.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/format-justify-center.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-justify-center.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-justify-fill.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/format-justify-fill.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-justify-fill.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-justify-fill.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-justify-fill.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-justify-fill.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-justify-fill.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/format-justify-fill.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-justify-fill.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-justify-left.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/format-justify-left.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-justify-left.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-justify-left.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-justify-left.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-justify-left.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-justify-left.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/format-justify-left.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-justify-left.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-justify-right.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/format-justify-right.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-justify-right.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-justify-right.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-justify-right.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-justify-right.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-justify-right.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/format-justify-right.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-justify-right.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-restore.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/view-restore.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/view-restore.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/view-restore.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/view-restore.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-restore.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-restore.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/view-restore.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-restore.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-seek-forward.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/media-seek-forward.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-seek-forward.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-seek-forward.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-seek-forward.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-seek-forward.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-seek-forward.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/media-seek-forward.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-seek-forward.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-skip-forward.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/media-skip-forward.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-skip-forward.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-skip-forward.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-skip-forward.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-skip-forward.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-skip-forward.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/media-skip-forward.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-skip-forward.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-playback-pause.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/media-playback-pause.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-playback-pause.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-playback-pause.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-playback-pause.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-playback-pause.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-playback-pause.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/media-playback-pause.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-playback-pause.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-playback-start.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/media-playback-start.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-playback-start.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-playback-start.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-playback-start.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-playback-start.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-playback-start.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/media-playback-start.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-playback-start.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-skip-backward.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/media-skip-backward.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-skip-backward.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-skip-backward.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-skip-backward.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-skip-backward.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-skip-backward.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/media-skip-backward.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-skip-backward.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-record.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/media-record.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-record.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-record.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-record.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-record.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-record.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/media-record.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-record.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-seek-backward.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/media-seek-backward.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-seek-backward.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-seek-backward.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-seek-backward.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-seek-backward.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-seek-backward.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/media-seek-backward.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-seek-backward.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-playback-stop.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/media-playback-stop.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-playback-stop.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-playback-stop.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/media-playback-stop.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-playback-stop.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-playback-stop.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/media-playback-stop.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/media-playback-stop.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/unknown.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/mimetypes/unknown.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/mimetypes/unknown.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/mimetypes/unknown.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/mimetypes/unknown.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/unknown.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/unknown.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/mimetypes/unknown.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/mimetypes/unknown.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/places/network-server.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/places/network-server.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/places/network-server.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/places/network-server.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/places/network-server.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/places/network-server.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/22x22/places/network-server.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/gnome/22x22/places/network-server.png", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.kde4/share/icons/cfr/16x16/places/network-server.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/places/network-server.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/places/network-server.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/places/network-server.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-new.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-new.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-new.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-new.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-new.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-new.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-new.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-new.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-new.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-delete.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-delete.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-delete.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-delete.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-delete.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-delete.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-delete.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-delete.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-delete.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/dialog-ok.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/dialog-ok.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/dialog-ok.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/dialog-ok.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/dialog-ok.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/dialog-ok.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/dialog-ok.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/dialog-ok.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/dialog-ok.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-open.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-open.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-open.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-open.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-open.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-open.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-open.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-open.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-open.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-paste.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-paste.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-paste.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-paste.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-paste.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-paste.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-paste.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-paste.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-paste.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/configure.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/configure.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/configure.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/configure.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/configure.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/configure.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/configure.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/configure.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/configure.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-print.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-print.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-print.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-print.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-print.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-print.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-print.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-print.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-print.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-print-preview.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-print-preview.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-print-preview.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-print-preview.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-print-preview.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-print-preview.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-print-preview.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-print-preview.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-print-preview.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-properties.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-properties.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-properties.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-properties.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-properties.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-properties.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-properties.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-properties.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-properties.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/application-exit.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/application-exit.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/application-exit.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/application-exit.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/application-exit.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/application-exit.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/application-exit.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/application-exit.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/application-exit.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-redo.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-redo.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-redo.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-redo.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-redo.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-redo.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-redo.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-redo.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-redo.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-refresh.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/view-refresh.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/view-refresh.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/view-refresh.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/view-refresh.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-refresh.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-refresh.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/view-refresh.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-refresh.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-delete.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-delete.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-delete.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-delete.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-delete.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-delete.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-delete.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-delete.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-delete.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-revert.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-revert.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-revert.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-revert.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-revert.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-revert.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-revert.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-revert.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-revert.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-save.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-save.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-save.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-save.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-save.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-save.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-save.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-save.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-save.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-save-as.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-save-as.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-save-as.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-save-as.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/document-save-as.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-save-as.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-save-as.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/document-save-as.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/document-save-as.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-select-all.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-select-all.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-select-all.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-select-all.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-select-all.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-select-all.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-select-all.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-select-all.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-select-all.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/color-picker.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/color-picker.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/color-picker.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/color-picker.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/color-picker.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/color-picker.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/color-picker.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/color-picker.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/color-picker.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/apps/preferences-desktop-font.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/apps/preferences-desktop-font.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/apps/preferences-desktop-font.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/apps/preferences-desktop-font.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/apps/preferences-desktop-font.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/apps/preferences-desktop-font.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/apps/preferences-desktop-font.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/apps/preferences-desktop-font.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/apps/preferences-desktop-font.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-sort-ascending.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/view-sort-ascending.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/view-sort-ascending.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/view-sort-ascending.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/view-sort-ascending.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-sort-ascending.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-sort-ascending.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/view-sort-ascending.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-sort-ascending.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-sort-descending.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/view-sort-descending.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/view-sort-descending.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/view-sort-descending.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/view-sort-descending.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-sort-descending.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-sort-descending.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/view-sort-descending.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/view-sort-descending.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/tools-check-spelling.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/tools-check-spelling.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/tools-check-spelling.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/tools-check-spelling.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/tools-check-spelling.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/tools-check-spelling.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/tools-check-spelling.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/tools-check-spelling.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/tools-check-spelling.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/process-stop.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/process-stop.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/process-stop.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/process-stop.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/process-stop.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/process-stop.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/process-stop.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/process-stop.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/process-stop.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-text-strikethrough.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/format-text-strikethrough.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-text-strikethrough.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-text-strikethrough.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-text-strikethrough.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-text-strikethrough.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-text-strikethrough.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/format-text-strikethrough.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-text-strikethrough.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-undo.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-undo.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-undo.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-undo.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-undo.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-undo.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-undo.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-undo.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-undo.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-text-underline.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/format-text-underline.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-text-underline.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-text-underline.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-text-underline.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-text-underline.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-text-underline.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/format-text-underline.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-text-underline.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-undo.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-undo.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-undo.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-undo.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-undo.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-undo.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-undo.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-undo.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-undo.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-indent-less.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/format-indent-less.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-indent-less.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-indent-less.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/format-indent-less.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-indent-less.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-indent-less.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/format-indent-less.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/format-indent-less.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/dialog-ok.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/dialog-ok.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/dialog-ok.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/dialog-ok.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/dialog-ok.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/dialog-ok.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/dialog-ok.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/dialog-ok.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/dialog-ok.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/zoom-original.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/zoom-original.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/zoom-original.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/zoom-original.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/zoom-original.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/zoom-original.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/zoom-original.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/zoom-original.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/zoom-original.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/zoom-fit-best.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/zoom-fit-best.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/zoom-fit-best.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/zoom-fit-best.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/zoom-fit-best.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/zoom-fit-best.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/zoom-fit-best.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/zoom-fit-best.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/zoom-fit-best.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/zoom-in.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/zoom-in.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/zoom-in.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/zoom-in.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/zoom-in.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/zoom-in.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/zoom-in.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/zoom-in.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/zoom-in.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/zoom-out.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/zoom-out.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/zoom-out.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/zoom-out.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/zoom-out.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/zoom-out.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/zoom-out.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/zoom-out.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/zoom-out.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/bookmarks-organize.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/bookmarks-organize.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/bookmarks-organize.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/bookmarks-organize.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/bookmarks-organize.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/bookmarks-organize.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/bookmarks-organize.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/bookmarks-organize.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/bookmarks-organize.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-clear-locationbar-rtl.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-clear-locationbar-rtl.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-clear-locationbar-rtl.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-clear-locationbar-rtl.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/22x22/actions/edit-clear-locationbar-rtl.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-clear-locationbar-rtl.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-clear-locationbar-rtl.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/32x32/actions/edit-clear-locationbar-rtl.png", O_RDONLY) = 11
open("/home/<username>/.kde4/share/icons/cfr/16x16/actions/edit-clear-locationbar-rtl.png", O_RDONLY) = 11
open("/usr/share/themes/Raleigh/gtk-2.0/gtkrc", O_RDONLY) = 8
open("/home/<username>/.Xdefaults-<ComputerName>", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/local/lib/firefox/libgnomeui-2.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libgnomeui-2.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libgnomeui-2.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 8
open("/lib/libgnomeui-2.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libgnomeui-2.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/updates/0/update.status", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.mozilla/firefox/profiles.ini", O_RDONLY) = 8
open("/usr/lib/gconv/UTF-16.so", O_RDONLY|O_CLOEXEC) = 8
open("/home/<username>/.mozilla/firefox/3cqqd1st.default/.parentlock", O_WRONLY|O_CREAT|O_TRUNC, 0666) = 8
open("/etc/resolv.conf", O_RDONLY|O_CLOEXEC) = 9
open("/etc/host.conf", O_RDONLY|O_CLOEXEC) = 9
open("/etc/hosts", O_RDONLY|O_CLOEXEC)  = 9
open("/home/<username>/.mozilla/firefox/3cqqd1st.default/compatibility.ini", O_RDONLY) = 9
open("/home/<username>/.mozilla/firefox/3cqqd1st.default/compatibility.ini", O_WRONLY|O_CREAT|O_TRUNC, 0600) = 9
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/omni.ja", O_RDONLY) = 15
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/defaults/pref/channel-prefs.js", O_RDONLY) = 15
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/chrome.manifest", O_RDONLY) = 18
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/components/binary.manifest", O_RDONLY) = 19
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/components/libmozgnome.so", O_RDONLY|O_CLOEXEC) = 20
open("/usr/local/lib/firefox/libgnomevfs-2.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libgnomevfs-2.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libgnomevfs-2.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 20
open("/lib/libgnomevfs-2.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libgnomevfs-2.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/components/libdbusservice.so", O_RDONLY|O_CLOEXEC) = 20
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/components/libnkgnomevfs.so", O_RDONLY|O_CLOEXEC) = 20
open("/usr/local/lib/firefox/libgnomevfs-2.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib/libgnomevfs-2.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libgnomevfs-2.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 20
open("/lib/libgnomevfs-2.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libgnomevfs-2.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/components/libbrowsercomps.so", O_RDONLY|O_CLOEXEC) = 20
open("/usr/share/locale/locale.alias", O_RDONLY) = 18
open("/etc/pango/pangorc", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/home/<username>/.config/pango/pangorc", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/etc/pango/pango.modules", O_RDONLY) = 18
open("/etc/fonts/fonts.conf", O_RDONLY) = 18
open("/etc/fonts/conf.d/20-fix-globaladvance.conf", O_RDONLY) = 20
open("/etc/fonts/conf.d/20-unhint-small-dejavu-sans-mono.conf", O_RDONLY) = 20
open("/etc/fonts/conf.d/20-unhint-small-dejavu-sans.conf", O_RDONLY) = 20
open("/etc/fonts/conf.d/20-unhint-small-dejavu-serif.conf", O_RDONLY) = 20
open("/etc/fonts/conf.d/20-unhint-small-vera.conf", O_RDONLY) = 20
open("/etc/fonts/conf.d/29-replace-bitmap-fonts.conf", O_RDONLY) = 20
open("/etc/fonts/conf.d/30-metric-aliases.conf", O_RDONLY) = 20
open("/etc/fonts/conf.d/30-urw-aliases.conf", O_RDONLY) = 20
open("/etc/fonts/conf.d/40-nonlatin.conf", O_RDONLY) = 20
open("/etc/fonts/conf.d/45-latin.conf", O_RDONLY) = 20
open("/etc/fonts/conf.d/49-sansserif.conf", O_RDONLY) = 20
open("/etc/fonts/conf.d/50-user.conf", O_RDONLY) = 20
open("/home/<username>/.fonts.conf", O_RDONLY) = 21
open("/etc/fonts/conf.d/51-local.conf", O_RDONLY) = 20
open("/etc/fonts/local.conf", O_RDONLY) = 21
open("/etc/fonts/conf.d/52-infinality.conf", O_RDONLY) = 20
open("/etc/fonts/infinality/infinality.conf", O_RDONLY) = 21
open("/etc/fonts/infinality/conf.d/20-aliases-default-inf.conf", O_RDONLY) = 23
open("/etc/fonts/infinality/conf.d/20-fix-cantarell.conf", O_RDONLY) = 23
open("/etc/fonts/infinality/conf.d/21-aliases-wine-win7-inf.conf", O_RDONLY) = 23
open("/etc/fonts/infinality/conf.d/30-non-latin-inf-win.conf", O_RDONLY) = 23
open("/etc/fonts/infinality/conf.d/41-repl-os-inf.conf", O_RDONLY) = 23
open("/etc/fonts/infinality/conf.d/42-repl-global.conf", O_RDONLY) = 23
open("/etc/fonts/infinality/conf.d/43-repl-terminus.conf", O_RDONLY) = 23
open("/etc/fonts/infinality/conf.d/43-repl-tt-traced-bitmap.conf", O_RDONLY) = 23
open("/etc/fonts/infinality/conf.d/44-repl-corrective.conf", O_RDONLY) = 23
open("/etc/fonts/infinality/conf.d/50-base-rendering-inf-osx-lin.conf", O_RDONLY) = 23
open("/etc/fonts/infinality/conf.d/60-group-non-tt-fonts.conf", O_RDONLY) = 23
open("/etc/fonts/infinality/conf.d/60-group-tt-fonts.conf", O_RDONLY) = 23
open("/etc/fonts/infinality/conf.d/61-group-non-tt-rendering-inf-7-xp-lin.conf", O_RDONLY) = 23
open("/etc/fonts/infinality/conf.d/61-group-tt-rendering-inf-7-xp.conf", O_RDONLY) = 23
open("/etc/fonts/infinality/conf.d/62-tt-monospace-rendering.conf", O_RDONLY) = 23
open("/etc/fonts/infinality/conf.d/62-tt-traced-bitmap-rendering.conf", O_RDONLY) = 23
open("/etc/fonts/infinality/conf.d/64-override-inf.conf", O_RDONLY) = 23
open("/etc/fonts/infinality/conf.d/65-override.conf", O_RDONLY) = 23
open("/etc/fonts/infinality/conf.d/70-forced-synthetic.conf", O_RDONLY) = 23
open("/etc/fonts/infinality/conf.d/80-selective-rendering-inf-7-xp.conf", O_RDONLY) = 23
open("/etc/fonts/infinality/conf.d/80-selective-rendering-inf-win-lin.conf", O_RDONLY) = 23
open("/etc/fonts/infinality/conf.d/81-final-rendering-inf-7-xp.conf", O_RDONLY) = 23
open("/etc/fonts/infinality/conf.d/90-no-synthetic.conf", O_RDONLY) = 23
open("/etc/fonts/infinality/conf.d/90-reject.conf", O_RDONLY) = 23
open("/etc/fonts/conf.d/57-dejavu-sans-mono.conf", O_RDONLY) = 20
open("/etc/fonts/conf.d/57-dejavu-sans.conf", O_RDONLY) = 20
open("/etc/fonts/conf.d/57-dejavu-serif.conf", O_RDONLY) = 20
open("/etc/fonts/conf.d/60-latin.conf", O_RDONLY) = 20
open("/etc/fonts/conf.d/65-fonts-persian.conf", O_RDONLY) = 20
open("/etc/fonts/conf.d/65-nonlatin.conf", O_RDONLY) = 20
open("/etc/fonts/conf.d/69-unifont.conf", O_RDONLY) = 20
open("/etc/fonts/conf.d/70-no-bitmaps.conf", O_RDONLY) = 20
open("/etc/fonts/conf.d/80-delicious.conf", O_RDONLY) = 20
open("/etc/fonts/conf.d/90-synthetic.conf", O_RDONLY) = 20
open("/etc/fonts/conf.d/99pdftoopvp.conf", O_RDONLY) = 20
open("/var/cache/fontconfig/3830d5c3ddfd5cd38a049b759396e72e-le64.cache-3", O_RDONLY) = 18
open("/var/cache/fontconfig/4c599c202bc5c08e2d34565a40eac3b2-le64.cache-3", O_RDONLY) = 18
open("/var/cache/fontconfig/df311e82a1a24c41a75c2c930223552e-le64.cache-3", O_RDONLY) = 18
open("/var/cache/fontconfig/17090aa38d5c6f09fb8c5c354938f1d7-le64.cache-3", O_RDONLY) = 18
open("/var/cache/fontconfig/f349e9996a5320f6dd491cedd2b1f964-le64.cache-3", O_RDONLY) = 18
open("/var/cache/fontconfig/f6b893a7224233d96cb72fd88691c0b4-le64.cache-3", O_RDONLY) = 18
open("/var/cache/fontconfig/d62e99ef547d1d24cdb1bd22ec1a2976-le64.cache-3", O_RDONLY) = 18
open("/var/cache/fontconfig/3fa645b0e3a29c70e53084e094754bdd-le64.cache-3", O_RDONLY) = 18
open("/var/cache/fontconfig/2d31a572ce6667f6a0da9c8dc611898b-le64.cache-3", O_RDONLY) = 18
open("/var/cache/fontconfig/a1c95d6dfc9a7b34f44445cf81166004-le64.cache-3", O_RDONLY) = 18
open("/var/cache/fontconfig/a98d8961fa319a64d3cfd8640c79e62d-le64.cache-3", O_RDONLY) = 18
open("/var/cache/fontconfig/8d4af663993b81a124ee82e610bb31f9-le64.cache-3", O_RDONLY) = 18
open("/var/cache/fontconfig/5512704b9abd6431e8dc140284145d3b-le64.cache-3", O_RDONLY) = 18
open("/var/cache/fontconfig/4b172ca7f111e3cffadc3636415fead9-le64.cache-3", O_RDONLY) = 18
open("/var/cache/fontconfig/5ca8086aeacc9c68e81a71e7ef846b3b-le64.cache-3", O_RDONLY) = 18
open("/usr/share/fonts/TTF/arial.ttf", O_RDONLY) = 18
open("/home/<username>/.icons/Oxygen_Blue/cursors/xterm", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/<username>/.icons/Oxygen_Blue/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/Oxygen_Blue/cursors/xterm", O_RDONLY) = 18
open("/etc/gtk-2.0/gtk.immodules", O_RDONLY) = 18
open("/sys/devices/system/cpu/online", O_RDONLY|O_CLOEXEC) = 20
open("/proc/self/maps", O_RDONLY|O_CLOEXEC) = 20
open("/dev/urandom", O_RDONLY)          = 20
open("/proc/meminfo", O_RDONLY|O_CLOEXEC) = 21
open("/home/<username>/.mozilla/firefox/3cqqd1st.default/prefs.js", O_RDONLY) = 21
open("/etc/resolv.conf", O_RDONLY|O_CLOEXEC) = 22
open("/home/<username>/.mozilla/firefox/3cqqd1st.default/user.js", O_RDONLY) = 21
open("/home/<username>/.mozilla/firefox/3cqqd1st.default/extensions.sqlite", O_RDWR|O_CREAT, 0644) = 22
open("/home/<username>/.mozilla/firefox/3cqqd1st.default/prefs.js", O_WRONLY|O_CREAT|O_EXCL|O_TRUNC, 0600) = -1 EEXIST (File exists)
open("/home/<username>/.mozilla/firefox/3cqqd1st.default/prefs-1.js", O_WRONLY|O_CREAT|O_EXCL|O_TRUNC, 0600) = -1 EEXIST (File exists)
open("/home/<username>/.mozilla/firefox/3cqqd1st.default/prefs-2.js", O_WRONLY|O_CREAT|O_EXCL|O_TRUNC, 0600) = -1 EEXIST (File exists)
open("/home/<username>/.mozilla/firefox/3cqqd1st.default/prefs-3.js", O_WRONLY|O_CREAT|O_EXCL|O_TRUNC, 0600) = -1 EEXIST (File exists)
open("/home/<username>/.mozilla/firefox/3cqqd1st.default/prefs-4.js", O_WRONLY|O_CREAT|O_EXCL|O_TRUNC, 0600) = -1 EEXIST (File exists)
open("/home/<username>/.mozilla/firefox/3cqqd1st.default/prefs-5.js", O_WRONLY|O_CREAT|O_EXCL|O_TRUNC, 0600) = -1 EEXIST (File exists)
open("/home/<username>/.mozilla/firefox/3cqqd1st.default/prefs-6.js", O_WRONLY|O_CREAT|O_EXCL|O_TRUNC, 0600) = -1 EEXIST (File exists)
open("/home/<username>/.mozilla/firefox/3cqqd1st.default/prefs-7.js", O_WRONLY|O_CREAT|O_EXCL|O_TRUNC, 0600) = -1 EEXIST (File exists)
open("/home/<username>/.mozilla/firefox/3cqqd1st.default/prefs-8.js", O_WRONLY|O_CREAT|O_EXCL|O_TRUNC, 0600) = 23
open("/home/<username>/.mozilla/firefox/3cqqd1st.default/prefs-8.js", O_WRONLY|O_CREAT|O_TRUNC, 0600) = 23
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}/install.rdf", O_RDONLY) = 23
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libnssdbm3.so", O_RDONLY|O_CLOEXEC) = 24
open("/home/<username>/.mozilla/firefox/3cqqd1st.default/secmod.db", O_RDONLY) = 24
open("/usr/local/stow/firefox-13.0.1-cy/lib/firefox/libfreebl3.so", O_RDONLY|O_CLOEXEC) = 24
--- SIGSEGV {si_signo=SIGSEGV, si_code=SEGV_MAPERR, si_addr=0x7ff7e96101f8} ---
open("/home/<username>/.mozilla/firefox/Crash Reports/LastCrash", O_WRONLY|O_CREAT|O_TRUNC, 0600) = 24
open("/home/<username>/.mozilla/firefox/3cqqd1st.default/minidumps/7e2f1b12-753c-8fbc-6a1a0d95-069a534a.extra", O_WRONLY|O_CREAT|O_TRUNC, 0666) = 24
+++ exited with 1 +++

Incidentally, I found I didn't have strace installed by default. I assume this is normal?

I notice that firefox looks for some gnome stuff which I don't have but I'm not sure whether that is the problem or not. It shouldn't be, I don't think, since it worked fine before without it and Arch's works OK.

I more and more think this must be related to the glibc or some other update - that's the only way I can explain the very same firefox install working before reboot but not afterwards. Would this be considered a bug (Arch or upstream glibc or whatever)? Or a firefox bug? Or a configuration issue?

I'm kind of reluctant to downgrade glibc as so much else depends on it...

Last edited by cfr (2012-07-08 15:55:25)


CLI Paste | How To Ask Questions

Arch Linux | x86_64 | GPT | EFI boot | refind | stub loader | systemd | LVM2 on LUKS
Lenovo x270 | Intel(R) Core(TM) i5-7200U CPU @ 2.50GHz | Intel Wireless 8265/8275 | US keyboard w/ Euro | 512G NVMe INTEL SSDPEKKF512G7L

Offline

#7 2012-07-08 16:49:11

fsckd
Forum Fellow
Registered: 2009-06-15
Posts: 4,173

Re: [workaround] linker issues: firefox suddenly fails to find shared libs

Are you using [testing]?


aur S & M :: forum rules :: Community Ethos
Resources for Women, POC, LGBT*, and allies

Offline

#8 2012-07-08 18:04:15

cfr
Member
From: Cymru
Registered: 2011-11-27
Posts: 7,130

Re: [workaround] linker issues: firefox suddenly fails to find shared libs

fsckd wrote:

Are you using [testing]?

No. Why?


CLI Paste | How To Ask Questions

Arch Linux | x86_64 | GPT | EFI boot | refind | stub loader | systemd | LVM2 on LUKS
Lenovo x270 | Intel(R) Core(TM) i5-7200U CPU @ 2.50GHz | Intel Wireless 8265/8275 | US keyboard w/ Euro | 512G NVMe INTEL SSDPEKKF512G7L

Offline

#9 2012-07-08 20:17:00

a4591
Member
Registered: 2012-07-08
Posts: 7

Re: [workaround] linker issues: firefox suddenly fails to find shared libs

@fsckd:
I'm not using [testing] either.

@cfr:
I don't know what the real cause of the problem is. I tried messing with LD_LIBRARY_PATH and LD_PRELOAD without any luck. And such things should be unnecessary since everything worked without any problems for months through multiple upgrades of both Arch and Firefox until this recent Arch upgrade (I tend to do them around once a week).

As for dependency issues with downgrading glibc, in my case it wasn't a big problem. I think I had only 3 dependencies.

Offline

#10 2012-07-08 21:46:11

Zancarius
Member
From: NM, USA
Registered: 2012-05-06
Posts: 207

Re: [workaround] linker issues: firefox suddenly fails to find shared libs

cfr: I'm not sure if this is related, but I've noticed that libfreebl3.so and libnssdbm3.so in my installation are being loaded from /usr/lib; yours appear to be pulled from the Mozilla Firefox dir you have installed under /usr/local. Do you have nss installed and do those files exist in your /usr/lib? This probably has nothing to do with your problem in particular, but on a whim I found a 3 year old bug that appears to have primarily affected Fedora, although it's marked as fixed.

One possibility might be to move the ones from your Firefox distro out of the way. Also, check ldconfig -p to see if it knows about those libraries, e.g. it should hopefully show something like:

$ ldconfig -p | grep libfreeb  
        libfreebl3.so (libc6,x86-64) => /usr/lib/libfreebl3.so
        libfreebl3.so (libc6) => /usr/lib32/libfreebl3.so

If it does, then I'm completely out of ideas. Though, I admit this is mostly a shot in the dark--I'm not completely convinced this is it and without running it through a debugger, we won't know for sure. The segfault at the end of your strace output was interesting...

a4591's suggestion of downgrading glibc might be the only bet.

Last edited by Zancarius (2012-07-08 21:47:56)


He who has no .plan has small finger.
~Confucius on UNIX.

Offline

#11 2012-07-08 22:30:34

cfr
Member
From: Cymru
Registered: 2011-11-27
Posts: 7,130

Re: [workaround] linker issues: firefox suddenly fails to find shared libs

$ ldconfig -p | grep libfreeb
        libfreebl3.so (libc6,x86-64) => /usr/lib/libfreebl3.so

Output from pacman -Qs nss includes:

local/nss 3.13.5-1
    Mozilla Network Security Services

I think this is right, though. I think that it needs to be using the bundled versions of those libraries because that's what the binaries expect/are linked against. If it was substituting system libraries rather than using its own, I'd expect that to create problems.

The problem with downgrading glibc, as I see it, is that glibc is essential to a whole lot of stuff. Even if it works for now, it is bound to break sooner or later because I'd have to keep it downgraded. I can't see that being a good solution and, given how crucial it is, I'm worried I could unexpectedly find myself unable to boot at a tricky moment.

If a developer said it was safe to do this, that would be fine but short of that, I'm not sure... Most things, I figure I can always revert to the current version if need be, but glibc is so fundamental that I worry about doing that. Pacman depends on it, apart from anything else. whoneeds glibc gives 478 results on my system...

Last edited by cfr (2012-07-08 22:31:22)


CLI Paste | How To Ask Questions

Arch Linux | x86_64 | GPT | EFI boot | refind | stub loader | systemd | LVM2 on LUKS
Lenovo x270 | Intel(R) Core(TM) i5-7200U CPU @ 2.50GHz | Intel Wireless 8265/8275 | US keyboard w/ Euro | 512G NVMe INTEL SSDPEKKF512G7L

Offline

#12 2012-07-08 23:41:24

cfr
Member
From: Cymru
Registered: 2011-11-27
Posts: 7,130

Re: [workaround] linker issues: firefox suddenly fails to find shared libs

@Zancarius,
Thanks! I followed the link which "probably has nothing to do with your problem in particular" but which you found on a whim and then I half understood what you were suggesting. It even works! I was so convinced that *nothing* would get it to run that I sat there like a lemon for ages wondering where the crash dialog was. (Firefox itself opens on a different desktop from my terminal programme but the crash dialog appears on the same one.)

I am now posting from Mozilla's firefox with the Welsh interface *without downgrading* anything. Basically, I made a copy of Mozilla's build, unstowed the original, deleted some files from the new one and then stowed the edited version. Here's what I removed:

$ diff -rq firefox-13.0.1-cy*
Only in firefox-13.0.1-cy/lib/firefox: libfreebl3.chk
Only in firefox-13.0.1-cy/lib/firefox: libfreebl3.so
Only in firefox-13.0.1-cy/lib/firefox: libnss3.so
Only in firefox-13.0.1-cy/lib/firefox: libnssckbi.so
Only in firefox-13.0.1-cy/lib/firefox: libnssdbm3.chk
Only in firefox-13.0.1-cy/lib/firefox: libnssdbm3.so
Only in firefox-13.0.1-cy/lib/firefox: libnssutil3.so
Only in firefox-13.0.1-cy/lib/firefox: libsmime3.so
Only in firefox-13.0.1-cy/lib/firefox: libsoftokn3.chk
Only in firefox-13.0.1-cy/lib/firefox: libsoftokn3.so
Only in firefox-13.0.1-cy/lib/firefox: libssl3.so

These files are all associated with nss in one way or another. The libraries all link to a library from nss and the *.chk files I assume are data which goes with the libraries.

Then I did:

LD_LIBRARY_PATH=/usr/local/lib/firefox firefox

and... magic!

I mean, I assume there is some underlying issue which creates the need to do this and that it shouldn't really be necessary to rig things this way. But it is a fantastic work around. smile I thought I was doomed to the US English GUI forever... sad (I was considering installing the UK language pack in the hope that would work better than the Welsh one and at least be something of an improvement...)


CLI Paste | How To Ask Questions

Arch Linux | x86_64 | GPT | EFI boot | refind | stub loader | systemd | LVM2 on LUKS
Lenovo x270 | Intel(R) Core(TM) i5-7200U CPU @ 2.50GHz | Intel Wireless 8265/8275 | US keyboard w/ Euro | 512G NVMe INTEL SSDPEKKF512G7L

Offline

#13 2012-07-09 01:12:47

Zancarius
Member
From: NM, USA
Registered: 2012-05-06
Posts: 207

Re: [workaround] linker issues: firefox suddenly fails to find shared libs

That's good to hear! The manner in which you resolved it is interesting. One thing I'm not sure I understand is this: Are you linking to the Arch nss libs within the Firefox directory or to a copy you have elsewhere? I apologize that I don't completely follow, and clarifying it for me may help someone else with similar issues. And no, you shouldn't have to do it this way so there's obviously something wrong. But if it works it works (and you can always revisit it when you have more time and/or patience)...

cfr wrote:

I mean, I assume there is some underlying issue which creates the need to do this and that it shouldn't really be necessary to rig things this way. But it is a fantastic work around. smile I thought I was doomed to the US English GUI forever... sad (I was considering installing the UK language pack in the hope that would work better than the Welsh one and at least be something of an improvement...)

I admit you solicited a good chuckle with this. I'm American (that means I spell funny; sorry for that), but I will invoke the defense that I have roots in the UK and Australia. smile


He who has no .plan has small finger.
~Confucius on UNIX.

Offline

#14 2012-07-09 01:34:09

cfr
Member
From: Cymru
Registered: 2011-11-27
Posts: 7,130

Re: [workaround] linker issues: firefox suddenly fails to find shared libs

Zancarius wrote:

That's good to hear! The manner in which you resolved it is interesting. One thing I'm not sure I understand is this: Are you linking to the Arch nss libs within the Firefox directory or to a copy you have elsewhere? I apologize that I don't completely follow, and clarifying it for me may help someone else with similar issues.

Sorry. I'm not linking them at all. All I did was delete them.

So what I did was:

cd /usr/local/stow/firefox-13.0.1-cy-profi/lib/firefox
rm libfreebl3.chk libfreebl3.so libnss3.so libnssckbi.so libnssdbm3.chk libnssdbm3.so libnssutil3.so libsmime3.so libsoftokn3.chk libsoftokn3.so libssl3.so
cd /usr/local/stow
stow firefox-13.0.1-cy-profi
LD_LIBRARY_PATH=/usr/local/lib/firefox /usr/local/bin/firefox

If you don't use stow, just do:

cd /usr/local/lib/firefox
mkdir ~/firefox-libs
mv libfreebl3.chk libfreebl3.so libnss3.so libnssckbi.so libnssdbm3.chk libnssdbm3.so libnssutil3.so libsmime3.so libsoftokn3.chk libsoftokn3.so libssl3.so ~/firefox-libs
LD_LIBRARY_PATH=/usr/local/lib/firefox /usr/local/bin/firefox

EDIT: This amounts to the same thing but it backs up the libraries you're removing to a directory in ~/ rather than relying on the existence of an original copy of the firefox bundle under /usr/local/stow/firefox-13.0.1-cy.

This means that firefox is now using the nss libraries from Arch. The libraries which remain in the directory are preferred, though (i.e. libmozalloc.so  libmozsqlite3.so  libnspr4.so  libplc4.so  libplds4.so  libxpcom.so  libxul.so) i.e. LD_LIBRARY_PATH ensures that Mozilla's versions of these libraries are used rather than any installed in the system. There's no particular rationale behind this. I just started with the nss ones as you/that other bug suggested and figured I'd think about removing others if that didn't work.

I hope that makes a bit more sense. Please say if not.

Zancarius wrote:

I admit you solicited a good chuckle with this. I'm American (that means I spell funny; sorry for that), but I will invoke the defense that I have roots in the UK and Australia. smile

To be honest, as far as I'm concerned *all* English is spelt funny and, yes, it is my first language. When I lived in the States I spent a year trying to switch to US spelling. By the end, I didn't know how to spell anything whatsoever in either system, so I abandoned the attempt and set my US computer to use a British spell check. I can't spell for toffee - never have been able to - and two systems was just too much! Welsh, however, is very nearly phonetic. There are very, very few exceptions. It is beautiful! I'm not even fluent in Welsh and I can make a reasonable attempt at an unknown word. I could never do that in English. (Of course, my Welsh is still spelt worse because there are a lot more unknown words...)

Last edited by cfr (2012-07-09 01:42:27)


CLI Paste | How To Ask Questions

Arch Linux | x86_64 | GPT | EFI boot | refind | stub loader | systemd | LVM2 on LUKS
Lenovo x270 | Intel(R) Core(TM) i5-7200U CPU @ 2.50GHz | Intel Wireless 8265/8275 | US keyboard w/ Euro | 512G NVMe INTEL SSDPEKKF512G7L

Offline

#15 2012-07-09 02:04:10

Zancarius
Member
From: NM, USA
Registered: 2012-05-06
Posts: 207

Re: [workaround] linker issues: firefox suddenly fails to find shared libs

cfr wrote:

Sorry. I'm not linking them at all. All I did was delete them.
So what I did was:

*snip*

I hope that makes a bit more sense. Please say if not.

That makes perfect sense now, actually. I thought that's what you meant, but I think I read "link" earlier and misinterpreted it to mean symlink for some silly reason--inappropriate brain-related munging and all that. This'll be a huge help should anyone else stumble across the same problem! Thanks tons for clarifying that!

cfr wrote:

By the end, I didn't know how to spell anything whatsoever in either system, so I abandoned the attempt and set my US computer to use a British spell check.

I have no idea how you manage--that'd drive me insane. I have enough trouble on occasion with en_US! smile

Cheers, cfr. Glad you got that worked out and with your language pack to boot!


He who has no .plan has small finger.
~Confucius on UNIX.

Offline

#16 2012-07-09 02:42:03

cfr
Member
From: Cymru
Registered: 2011-11-27
Posts: 7,130

Re: [workaround] linker issues: firefox suddenly fails to find shared libs

It drove me insane, too - that's why I stopped! (I'm hooked on US keyboards, though - can't find anything now on UK keyboards.)

Actually, the trick is not to use a language pack at all. Mozilla's language pack doesn't work for Welsh - it's not an Arch bug. The only thing that works is to download the Welsh language build itself. (Or, presumably, the source and compile it.) I don't really understand why it doesn't work but there it is.

Last edited by cfr (2012-07-09 02:43:27)


CLI Paste | How To Ask Questions

Arch Linux | x86_64 | GPT | EFI boot | refind | stub loader | systemd | LVM2 on LUKS
Lenovo x270 | Intel(R) Core(TM) i5-7200U CPU @ 2.50GHz | Intel Wireless 8265/8275 | US keyboard w/ Euro | 512G NVMe INTEL SSDPEKKF512G7L

Offline

#17 2012-07-09 08:45:57

a4591
Member
Registered: 2012-07-08
Posts: 7

Re: [workaround] linker issues: firefox suddenly fails to find shared libs

@cfr:
I certainly wasn't suggesting downgrading glibc as a permanent solution. I simply didn't have a browser and needed a quick fix. Then, when I found the package that was seemingly responsible, I wanted to share it to help out.

And you seem to be confusing the dependencies when it comes to downgrading glibc. The 478 dependencies that you mentioned are packages that need glibc to be installed, they don't necessarily need it to be the latest version. In my case, I think there were only 3 packages that needed it to be the latest version, so downgrading it wasn't a big problem.

I don't fully understand your workaround, I find it a bit confusing, but it seems you've deleted some files from the Firefox directory. That's not a permanent solution either. It sounds like it will break with the next Firefox update.

Based on my previous experience with Thunderbird, I'd expect to see the real solution in the Mozilla bug that you linked to in the original post.

Offline

#18 2012-07-09 19:26:31

Zancarius
Member
From: NM, USA
Registered: 2012-05-06
Posts: 207

Re: [workaround] linker issues: firefox suddenly fails to find shared libs

a4591 wrote:

And you seem to be confusing the dependencies when it comes to downgrading glibc. The 478 dependencies that you mentioned are packages that need glibc to be installed, they don't necessarily need it to be the latest version.

To be fair, I believe the reason for cfr's nervousness is due to the critical nature of glibc. Perhaps it's misplaced nervousness, but given that it's a critical component, I can understand the reluctance. smile

a4591 wrote:

I don't fully understand your workaround, I find it a bit confusing, but it seems you've deleted some files from the Firefox directory. That's not a permanent solution either. It sounds like it will break with the next Firefox update.

It's surprisingly simple, but it does require some familiarity with cfr's ongoing troubles with Firefox. Due to issues cfr was having related to the Arch build, he's relying on the Mozilla distribution (hence why an upgrade via pacman will not break--it's a manual update). That broke presumably due to an update of system libraries and the Mozilla distro loads the ones it's distributed with. Removing those libraries forces Firefox to load the system ones.

Although it's splitting hairs, it's actually somewhat safer to do this than to muck with glibc; the Mozilla distribution of Firefox may ship with older libraries than Arch uses, and these may not play nicely with the ones it pulls in from the system. Further, if you download the Firefox sources, you can instruct it via configure to pull in the system NSS; essentially, cfr forced it to do the same. Also, you won't find the libraries cfr deleted in /usr/lib/firefox because the Arch build is configured to rely predominantly on the system's libs.

Hope that clears things up.


He who has no .plan has small finger.
~Confucius on UNIX.

Offline

#19 2012-07-09 21:44:46

cfr
Member
From: Cymru
Registered: 2011-11-27
Posts: 7,130

Re: [workaround] linker issues: firefox suddenly fails to find shared libs

Just to clarify, I definitely appreciated a4591's information about down grading glibc. I was just explaining why I hadn't tried that work around since I would normally try reasonable-sounding solutions - especially ones reported to work by others. However, this information was also indirectly useful in helping me to figure out the work around I am using. I realise that I wouldn't need to downgrade 478 packages. It is just that screwing up glibc is the kind of thing which might stop me booting, updating, fixing the problem... whereas screwing up Mozilla's install of Firefox cannot do anything much except rendering Firefox useless and given the fact that it crashed immediately on launch anyway, that seemed a more manageable prospect. I also wasn't quite as desperate for a solution because I had Arch's install of Firefox to fall back on and that worked fine (albeit in English).

As Zancarius says, my work around will only break when I manually download and install a new version of Firefox from Mozilla. Since I am unlikely to do this inadvertently, I can pick my time and make sure I'm able to repeat the same hack if necessary.

The solution is not really complicated, you just remove the following files from the directory provided by Mozilla:

libfreebl3.chk libfreebl3.so libnss3.so libnssckbi.so libnssdbm3.chk libnssdbm3.so libnssutil3.so libsmime3.so libsoftokn3.chk libsoftokn3.so libssl3.so

You do need to have Arch's versions of these libraries installed but that just means making sure that nss is installed. The only other step is to start firefox with:

# assumes firefox is installed under /usr/local - adjust as appropriate
LD_LIBRARY_PATH=/usr/local/lib/firefox firefox

Basically, this makes sure firefox finds the libraries from Mozilla which it needs (i.e. the ones not deleted) but forces it to use the system's nss libraries rather than the bundled ones.

Yes, it is a work around but I feel happier with this than downgrading glibc and I don't have to worry about something breaking unexpectedly due to a partial upgrade. At worst, my preferred version of firefox will break again but I can live with that possibility smile. I do hope it gets fixed by Mozilla. I hope that people experiencing the bug will vote for or comment on it as there are some suggestions there that there are not too many duplicate reports (so it can't be affecting that many people, I think is the idea). Here's the reference: https://bugzilla.mozilla.org/show_bug.cgi?id=723487.

Last edited by cfr (2012-07-09 21:47:00)


CLI Paste | How To Ask Questions

Arch Linux | x86_64 | GPT | EFI boot | refind | stub loader | systemd | LVM2 on LUKS
Lenovo x270 | Intel(R) Core(TM) i5-7200U CPU @ 2.50GHz | Intel Wireless 8265/8275 | US keyboard w/ Euro | 512G NVMe INTEL SSDPEKKF512G7L

Offline

#20 2012-07-10 19:13:59

a4591
Member
Registered: 2012-07-08
Posts: 7

Re: [workaround] linker issues: firefox suddenly fails to find shared libs

Deleting files out of Firefox's directory feels very wrong to me. Also, I'm on the beta channel, where I get updates every few days, so I would definitely not do that.

I'm just a little disappointed that, by not even trying to downgrade glibc, we missed the opportunity for you to potentially confirm that it was indeed the package that broke Firefox. Because, who knows, maybe it's actually not a Mozilla bug. But I'm the only one who suggested it and there is no one remaining in the thread who could confirm it.

But that's OK. We'll just have to wait for some new developments (hopefully a fix by Mozilla).

Offline

#21 2012-07-10 20:02:13

Zancarius
Member
From: NM, USA
Registered: 2012-05-06
Posts: 207

Re: [workaround] linker issues: firefox suddenly fails to find shared libs

The files cfr deleted are not installed by the Arch version of Firefox (it's configured to use the system version of those libs); instead, they're part of the distribution directly from Mozilla.

That said, I believe the problem cfr encountered with regards to the Arch build of Firefox was the inability to get the Welsh language pack working.


He who has no .plan has small finger.
~Confucius on UNIX.

Offline

#22 2012-07-11 02:15:30

cfr
Member
From: Cymru
Registered: 2011-11-27
Posts: 7,130

Re: [workaround] linker issues: firefox suddenly fails to find shared libs

Zancarius wrote:

That said, I believe the problem cfr encountered with regards to the Arch build of Firefox was the inability to get the Welsh language pack working.

And even this isn't an Arch bug. It is a Mozilla bug which there seems little hope of being fixed any time soon. (If you download the Mozilla build of firefox plus the language pack, you get US English just as you do if you install Arch's versions.)

I'm sure the problems are due to the upgrade of glibc but I don't think it is an Arch bug and my downgrading glibc would not establish this one way or the other.

I can't afford to break my system. Especially not at the moment. Sorry, but that has to take priority right now and would do so even if it meant not using Firefox in Welsh for a while.

Last edited by cfr (2012-07-11 02:21:00)


CLI Paste | How To Ask Questions

Arch Linux | x86_64 | GPT | EFI boot | refind | stub loader | systemd | LVM2 on LUKS
Lenovo x270 | Intel(R) Core(TM) i5-7200U CPU @ 2.50GHz | Intel Wireless 8265/8275 | US keyboard w/ Euro | 512G NVMe INTEL SSDPEKKF512G7L

Offline

#23 2012-07-11 04:41:22

Zancarius
Member
From: NM, USA
Registered: 2012-05-06
Posts: 207

Re: [workaround] linker issues: firefox suddenly fails to find shared libs

cfr wrote:

And even this isn't an Arch bug. It is a Mozilla bug which there seems little hope of being fixed any time soon. (If you download the Mozilla build of firefox plus the language pack, you get US English just as you do if you install Arch's versions.)

Yeah, this is true. I don't remember if it was one of your findings or if it was a link I stumbled over randomly, but it certainly seems that you're not alone with regards to language packs.

That's one bit of advice I (almost) learned the hard way. Never update your Arch install unless you've set aside at least 1-2 hours to fix any potential problem--nor do anything that could be potentially breaking if you don't have the time to invest in a solution. I had an update that, for some reason unknown to me, failed to run mkinitcpio rendering my system unbootable. The solution was easy, of course, and easily remedied by chrooting from within a neglected Ubuntu partition I have on a disk still plugged into my system, but if I hadn't already had a fair amount of experience with chroots (thank you, Gentoo), that's a mysterious problem which could have been rendered far worse.

Yet, in spite of the regular updates my Arch install has been FAR more stable and forgiving than others. Though, that's possibly unfair since I'm looking back on passed problems with more experience under my belt.


He who has no .plan has small finger.
~Confucius on UNIX.

Offline

#24 2012-07-13 03:50:26

ConnorBehan
Package Maintainer (PM)
From: Long Island NY
Registered: 2007-07-05
Posts: 1,359
Website

Re: [workaround] linker issues: firefox suddenly fails to find shared libs

a4591 wrote:

I'm just a little disappointed that, by not even trying to downgrade glibc, we missed the opportunity for you to potentially confirm that it was indeed the package that broke Firefox. Because, who knows, maybe it's actually not a Mozilla bug. But I'm the only one who suggested it and there is no one remaining in the thread who could confirm it.

You have a point so I tried this. I have the Arch firefox package installed and with glibc-2.15 and glibc-2.16 I was able to run the mozilla binary from /usr/local and browse with it. The linker failed to find those three dependencies of the plugin-container with glibc-2.15 and glibc-2.16 so you could say it made no difference for me. But then again, my system is 32 bit.

Note that the three dependencies ARE detected if I install the Arch xulrunner package.


6EA3 F3F3 B908 2632 A9CB E931 D53A 0445 B47A 0DAB
Great things come in tar.xz packages.

Offline

#25 2012-07-13 12:19:09

a4591
Member
Registered: 2012-07-08
Posts: 7

Re: [workaround] linker issues: firefox suddenly fails to find shared libs

A couple of days ago, I tried upgrading my glibc, downgrading it again, then upgrading it again, just to convince myself that it really was the problematic package, at least on my system. And it was. I'm running 64-bit Arch with the official Mozilla binaries of Firefox, and I don't have the Arch Firefox package installed at all. I'm on the beta channel, where the current version is Firefox 14 beta 12. I get no error messages. I only see the Mozilla Crash Reporter. But if I run it with LD_DEBUG=libs or LD_DEBUG=files I can see it has trouble finding some things.

Then I downloaded the en-US version (I had been using en-GB), and it worked. So I thought it might be some kind of localisation issue, and I used that version for the past 2 days.

But today, after your post, I tried downloading 4 different localisations (all 14b12), downgrading glibc and upgrading it again, and running all 4 localisations under both versions of glibc, and they worked every time. The only thing that didn't work was a copy I had saved from a few days ago (it might be beta 11, I'm not sure), that only works under the old version of glibc. So I'm totally confused now.

The only thing I can add is what I remember from my previous experience with Thunderbird from a few weeks ago. When it stopped working all of a sudden, my first assumption was that it somehow got corrupted through the update process, and I downloaded a fresh copy and it worked. Then it stopped working again after a short while. So I downloaded a new copy, I would run it once and it would work, but when I would try to run it a second time it would not work. The only permanent solution came with the fix in the Mozilla bug that I linked to in my first post.

But for now, my fresh copy of Firefox works without any problems.

Offline

Board footer

Powered by FluxBB