[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 ) 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)

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/&

Similar Messages

  • SQL 2008 R2 cluster installation failure - Failed to find shared disks

    Hi,
    The validation tests in the SQL 2008R2 cluster installation (running Windows 2008 R2) fails with the following error. The cluster has one root mount point with multiple mount points :
    "The cluster on this computer does not have a shared disk available. To continue, at least one shared disk must be available'.
    The "Detail.txt" log has alot of "access is denied" errors and here is just a sample. Any ideas what might be causing this issue?
    2010-09-29 12:54:08 Slp: Initializing rule      : Cluster shared disk available check
    2010-09-29 12:54:08 Slp: Rule applied features  : ALL
    2010-09-29 12:54:08 Slp: Rule is will be executed  : True
    2010-09-29 12:54:08 Slp: Init rule target object: Microsoft.SqlServer.Configuration.Cluster.Rules.ClusterSharedDiskFacet
    2010-09-29 12:54:09 Slp: The disk resource 'QUORUM' cannot be used as a shared disk because it's a cluster quorum drive.
    2010-09-29 12:54:09 Slp: Mount point status for disk 'QUORUM' could not be determined.  Reason: 'The disk resource 'QUORUM' cannot be used because it is a cluster quorum drive.'
    2010-09-29 12:54:09 Slp: System Error: 5 trying to find mount points at path
    \\?\Volume{e1f5ca48-c798-11df-9401-0026b975df1a}\
    2010-09-29 12:54:09 Slp:     Access is denied.
    2010-09-29 12:54:09 Slp: Mount point status for disk 'SQL01_BAK01' could not be determined.  Reason: 'The search for mount points failed.  Error: Access is denied.'
    2010-09-29 12:54:10 Slp: System Error: 5 trying to find mount points at path
    \\?\Volume{e1f5ca4f-c798-11df-9401-0026b975df1a}\
    2010-09-29 12:54:10 Slp:     Access is denied.
    2010-09-29 12:54:10 Slp: Mount point status for disk 'SQL01_DAT01' could not be determined.  Reason: 'The search for mount points failed.  Error: Access is denied.'
    2010-09-29 12:54:10 Slp: System Error: 5 trying to find mount points at path
    \\?\Volume{e1f5ca56-c798-11df-9401-0026b975df1a}\
    2010-09-29 12:54:10 Slp:     Access is denied.
    Thanks,
    PK

    Hi,
    We were asked by the PSS engineer to give the following privileges the account used to install SQL Server - i am referring to the user domain account as apposed to the SQL service account. These privileges were already applied to the
    SQL service account prior to the SQL installation. Assigning these privileges to the user account resolved the issue.
      Act as Part of the Operating Sywstem = SeTcbPrivileg
      Bypass Traverse Checking = SeChangeNotify
      Lock Pages In Memory = SeLockMemory
      Log on as a Batch Job = SeBatchLogonRight
      Log on as a Service = SeServiceLogonRight
      Replace a Process Level Token = SeAssignPrimaryTokenPrivilege
    Thanks for everyones assistance.
    Cheers,
    PK

  • WEC7 Wave 2 - WEDU download fails to find shared source component, doesn't offer "download" option. Cancel is the only option.

    Deja vu, all over again.
    WEDU has spotted the arrival of Windows Embedded Compact 7 Wave 2; Unfortunately, I have installed shared source - and like when Wave 1 arrived, the shared source update doesn't seem to be available via WEDU; last time, this was fixed by a DVD ISO being
    made available on MSDN, so that the shared source MSI could be found by the layout manager from the DVD.
    I don't see any updated DVD ISO on MSDN, so am I stuck, unable to update WEC7 again.
    Does anyone know when the necessary update DVD is likely to tip up on MSDN?

    Same problem here. They need to just fix the download. As part of the update the Shared Source agreement is presented and accepted ... just can't download. I have a valid license from my original install but no longer have an MSDN subscription so a new
    ISO on MSDN would be no help for me.
    Dave

  • [svn] 4910: Implementing workaround for history manager rendering issue ( Firefox/Mac) caused by a long standing player bug.

    Revision: 4910
    Author: [email protected]
    Date: 2009-02-10 11:51:58 -0800 (Tue, 10 Feb 2009)
    Log Message:
    Implementing workaround for history manager rendering issue (Firefox/Mac) caused by a long standing player bug.
    Bugs: SDK-17020.
    QE Notes: None
    Doc Notes: None
    Reviewer: Alex
    Tests: DeepLinking
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-17020
    Modified Paths:
    flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/managers/BrowserManagerImpl.as
    flex/sdk/branches/3.x/templates/html-templates/client-side-detection-with-history/history /history.js
    flex/sdk/branches/3.x/templates/html-templates/express-installation-with-history/history/ history.js
    flex/sdk/branches/3.x/templates/html-templates/no-player-detection-with-history/history/h istory.js

  • Safari will no longer open.  I was using firefox until I could find a fix for safari.  I made the mistake of changing my default search to firebox later for convenience and now I can't open my system preference or many safari or apple linked files.

    Safari will no longer open. It just goes back to my desktop.  When I right click on the safari icon in my dashboard it says it is open.  I was using firefox until I could find a fix for safari.  I made the mistake of changing my default search to firebox later for convenience and now I can't open my system preference or many safari or apple linked files. Some of my emails from trusted sites won't open and does the same thing. 
    I upgraded my original system from 10.4.11 to I believe 10.6. something about a year or so ago.  I thought about re installing my safari app but when I go to open anything connected to safari my screen goes back to the desktop.  I cant open any files that I have on my desktop that I set up through safari, like my banking program. Prior to changing system preference to safari default I was able to open those files and now I can't get into change it back.  Can you guide me through this?
    Thanks,
    Betty

    Try running the 10.6.8 combo update.
    10.6.8 Combo Updater
    System Preferences or Safari Preferences?
    Do a backup.
    Quit the application.
    Go to Finder and select your user/home folder. Select Library. Then go to Preferences/com.apple.Safari.plist. Move the .plist to your desktop.
    Restart the computer, open the application and test. If it works okay, delete the plist from the desktop.
    If the application is the same, return the .plist to where you got it from, overwriting the newer one.

  • Secure Link to itunes store failed issue

    I cannot access the itunes store or even authorize my computer.  I have been working on this for months.  Done everything that Apple support emailed me and I am ready to go crazy.  My diagnostic shows secure link to itunes store failed.  Can anyone help?

    Many thanks.
    With those symptoms, I'd try the following document:
    Apple software on Windows: May see performance issues and blank iTunes Store
    (If there's a SpeedBit LSP showing up in Autoruns, it's usually best to just uninstall your SpeedBit Video Accelerator.)

  • Where can I find a reliable link for firefox 4 download?

    Every link I find for firefox 4 ends up being 8 or above , I need a dependable link for firefox 4

    The only Release Archived by FF are located here
    *[http://releases.mozilla.org/pub/mozilla.org/firefox/releases/ Version Archive]
    **But FF4 is not present
    OldApps.com is pretty reliable
    *[http://www.oldapps.com/firefox.php?old_firefox=112 Firefox 4.0]
    **But Its your change to take

  • Just installed Firefox 4 but when I try to search for add-ons every result fails to find anything or the loading gui just keeps spinning. What should I try to fix this problem?

    Just installed Firefox 4 but when I try to search for add-ons every result fails to find anything or the loading gui just keeps spinning. What should I try to fix this problem?

    Glad you seem to have sorted things out.
    The warning about the warranty is light hearted, I think at one stage it warned "here be dragons" but also intended to make us think as it warns that making changes may produce problems.

  • Why is Firefox 3.6 failing to find server ?

    Why is Firefox ,failing to find and connect to the server ,my fire wall settings are all set ,to allow firefox to function ,and this problem started yesterday ?

    See [[Updates reported when running newest version]].

  • HT1527 Whenever I try to redeem a card or access my account I get a message "connection manager invoke failed to find service connection url".  I reset my password, logged out and tried logging back in, same message.  How do I solve this issue?

    Whenever I try to log in to my account or redeem gift cards, I get a message saying "Connection Manager Invoke Failed to find a service connection url".  I changed my password, logged out and the same thing keeps happening.  Does anyone have a solution for this?

    Hello,
    Try to go to the settings on your phone... Settings > Store > Click your Apple ID: And sign out from your account, then sign in again .... This solved the problem for me on my iPhone 4s

  • Open a Telnet link with Firefox and bad things can happen

    I happened to come across a site with a number of links, and the one I chose happened to be a telnet link. Here was my experience, and I had to put myself into the shoes of the average user who knows nothing about programming.
    The link that caused Firefox trouble when Firefox was chosen to run it is this:
    telnet://dxc.nc7j.com:7300
    Click on the link and Firefox tells you that you need to select a program to open the Internet Shortcut Shell extension DLL. I have never heard of this, and I have no idea what to do here.
    Choose to open with Firefox.
    Now, if some error-handling routine had caught that Firefox, which is not capable of doing Telnet, was selected by the unknowing person behind the keyboard to go ahead and do Telnet, the error-handler would advise the user to the fact that this protocol is not supported and kill the process that is going to run out-of-control otherwise. Or cause to open the program that will run the Telnet session.
    Better yet, I clicked on the Telnet link and offer a better description of the choices.
    After all of what happened below, I installed Iron, a Chromium-based browser, and it opened a Telnet session window right away.
    So what did happen, I clicked on Firefox to do this chore and was greeted by a never-ending opening of empty tabs and upon closing the browser, it relaunched and was off to the races again. And again.
    OK so this ain't getting us anywhere.
    Firefox opens once again, this time hit the big red X to close it, and let the prompt to close however many tabs anyway prompt sitting there.
    I chose to run CCleaner, and I set that to blow away Firefox Cache and session. Run CCleaner, and tell it to force Firefox closed when it prompts that Firefox is open.
    If by chance Firefox launches again, timing was perfect that the file that was causing Firefox to open was not yet cleaned, so run the CCleaner again a few times. When Firefox is no longer opening, we are back to the world of sanity.
    Now, I could go in and reset the Tools Options Applications tab and look for Telnet, and replace the use of Firefox with "ask me."
    Fortunately, I know a little more than some about the computer, and I knew I had to use a utility to clear out the Firefox cache.
    You have a description of the issue in your knowledgebase, but it has Firefox opening endless empty tabs, but Firefox was closed and the situation is under control.. Restart Firefox manually, start a new session and then enter the Tools menu and fix the setting.
    There is a knowledge base article on this very topic, but it has the user close Firefox and then all is back to normal. One can open Firefox and get into the menu to fix the issue. There was a mention in there about malware as a possible cause of the constant reopening I experienced, but Malwarebytes scans were clean.
    "Well, this is embarrassing!" I have seen that nice touch to Firefox for many years, and may I compliment those who thought of that one.

    I agree, it can become a vicious circle.
    The default setting to try to restore all the windows and tabs automatically after a crash isn't the best setting. Personally I do change that so I get the "this is embarrassing" screen. So one option would be to file a bug report suggesting this be changed going forward.
    Another potential follow-up action would be to update the knowledge base article to better address how to recover in these situations. For example, a user could start up Firefox without restoring the previous session by:
    * Launching Firefox with a specific URL
    ** Using a desktop shortcut
    ** Using a link in an external application
    ** On the command line, typing firefox.exe "about:blank"
    ** (Possibly more ways to do it)
    * Renaming the sessionstore.js file in the profile folder
    ** On the plus side, preserves the option to restore that session later
    ** On the minus side, difficult for many users to find folders hidden by the OS, and the .js extension may be hidden by the OS
    Since the KB is a wiki, you can go in and make edits and improvements. The syntax is a bit funky, but not much worse than this forum.

  • Swiftdove won't open links in Firefox

    When I click the links they won't open in Firefox.
    Preferred Applications has
    /usr/lib/firefox-3.0.1/firefox %s
    as my custom browser
    Here is the "~/.swiftdove/e8ftools5.default/pres.js" of Swiftdove. You'll notice that I've attempted to route it to "/usr/lib/firefox-3.0.1/firefox %s", but with no success.
    # Mozilla User Preferences
    /* Do not edit this file.
    * If you make changes to this file while the application is running,
    * the changes will be overwritten when the application exits.
    * To make a manual change to preferences, you can visit the URL about:config
    * For more information, see http://www.mozilla.org/unix/customizing.html#prefs
    user_pref("app.update.lastUpdateTime.addon-background-update-timer", 1221142061);
    user_pref("app.update.lastUpdateTime.background-update-timer", 1221142061);
    user_pref("app.update.lastUpdateTime.blocklist-background-update-timer", 1221142061);
    user_pref("browser.throbber.url", "http://swiftweasel.tuxfamily.org/");
    user_pref("calendar.categories.names", "Anniversary,Birthday,Business,Calls,Clients,Competition,Customer,Favorites,Follow up,Gifts,Holidays,Ideas,Issues,Miscellaneous,Personal,Projects,Public Holiday,Status,Suppliers,Travel,Vacation");
    user_pref("calendar.timezone.local", "/mozilla.org/20071231_1/Australia/Adelaide");
    user_pref("extensions.lastAppVersion", "2.0.0.16");
    user_pref("intl.charsetmenu.mailview.cache", "UTF-8, ISO-8859-1");
    user_pref("ldap_2.prefs_migrated", true);
    user_pref("ldap_2.servers.default.filename", "default.mab");
    user_pref("ldap_2.servers.default.replication.lastChangeNumber", 0);
    user_pref("ldap_2.servers.default.uri", "moz-abldapdirectory://default.mab");
    user_pref("ldap_2.servers.history.replication.lastChangeNumber", 0);
    user_pref("ldap_2.servers.pab.replication.lastChangeNumber", 0);
    user_pref("mail.account.account1.server", "server1");
    user_pref("mail.account.account2.identities", "id1");
    user_pref("mail.account.account2.server", "server2");
    user_pref("mail.accountmanager.accounts", "account1,account2");
    user_pref("mail.accountmanager.defaultaccount", "account2");
    user_pref("mail.accountmanager.localfoldersserver", "server1");
    user_pref("mail.attachment.store.version", 1);
    user_pref("mail.biff.play_sound.type", 1);
    user_pref("mail.biff.play_sound.url", "file:///home/gary/Documents/Thunderbird%20New%20Mail%202.wav");
    user_pref("mail.folder.views.version", 1);
    user_pref("mail.identity.id1.draft_folder", "mailbox://nobody@Local%20Folders/Drafts");
    user_pref("mail.identity.id1.drafts_folder_picker_mode", "0");
    user_pref("mail.identity.id1.fcc_folder", "mailbox://nobody@Local%20Folders/Sent");
    user_pref("mail.identity.id1.fcc_folder_picker_mode", "0");
    user_pref("mail.identity.id1.fullName", "Gary Cai");
    user_pref("mail.identity.id1.smtpServer", "smtp1");
    user_pref("mail.identity.id1.stationery_folder", "mailbox://nobody@Local%20Folders/Templates");
    user_pref("mail.identity.id1.tmpl_folder_picker_mode", "0");
    user_pref("mail.identity.id1.useremail", "[email protected]");
    user_pref("mail.identity.id1.valid", true);
    user_pref("mail.preferences.advanced.selectedTabIndex", 0);
    user_pref("mail.preferences.display.selectedTabIndex", 1);
    user_pref("mail.root.none", "/home/gary/.swiftdove/e8ftool5.default/Mail");
    user_pref("mail.root.none-rel", "[ProfD]Mail");
    user_pref("mail.root.pop3", "/home/gary/.swiftdove/e8ftool5.default/Mail");
    user_pref("mail.root.pop3-rel", "[ProfD]Mail");
    user_pref("mail.server.server1.directory", "/home/gary/.swiftdove/e8ftool5.default/Mail/Local Folders");
    user_pref("mail.server.server1.directory-rel", "[ProfD]Mail/Local Folders");
    user_pref("mail.server.server1.hostname", "Local Folders");
    user_pref("mail.server.server1.name", "Local Folders");
    user_pref("mail.server.server1.type", "none");
    user_pref("mail.server.server1.userName", "nobody");
    user_pref("mail.server.server2.check_time", 1);
    user_pref("mail.server.server2.defer_get_new_mail", true);
    user_pref("mail.server.server2.deferred_to_account", "account1");
    user_pref("mail.server.server2.directory", "/home/gary/.swiftdove/e8ftool5.default/Mail/pop.gmail.com");
    user_pref("mail.server.server2.directory-rel", "[ProfD]Mail/pop.gmail.com");
    user_pref("mail.server.server2.download_on_biff", true);
    user_pref("mail.server.server2.hostname", "pop.gmail.com");
    user_pref("mail.server.server2.login_at_startup", true);
    user_pref("mail.server.server2.name", "[email protected]");
    user_pref("mail.server.server2.port", 995);
    user_pref("mail.server.server2.socketType", 3);
    user_pref("mail.server.server2.type", "pop3");
    user_pref("mail.server.server2.userName", "garycai997");
    user_pref("mail.smtp.defaultserver", "smtp1");
    user_pref("mail.smtpserver.smtp1.auth_method", 1);
    user_pref("mail.smtpserver.smtp1.hostname", "smtp.gmail.com");
    user_pref("mail.smtpserver.smtp1.port", 465);
    user_pref("mail.smtpserver.smtp1.try_ssl", 3);
    user_pref("mail.smtpserver.smtp1.username", "garycai997");
    user_pref("mail.smtpservers", "smtp1");
    user_pref("mail.spam.version", 1);
    user_pref("mail.startup.enabledMailCheckOnce", true);
    user_pref("mailnews.quotingPrefs.version", 1);
    user_pref("mailnews.start_page.enabled", false);
    user_pref("mailnews.start_page_override.mstone", "1.8.1.16");
    user_pref("mailnews.tags.$label1.color", "#FF0000");
    user_pref("mailnews.tags.$label1.tag", "Important");
    user_pref("mailnews.tags.$label2.color", "#FF9900");
    user_pref("mailnews.tags.$label2.tag", "Work");
    user_pref("mailnews.tags.$label3.color", "#009900");
    user_pref("mailnews.tags.$label3.tag", "Personal");
    user_pref("mailnews.tags.$label4.color", "#3333FF");
    user_pref("mailnews.tags.$label4.tag", "To Do");
    user_pref("mailnews.tags.$label5.color", "#993399");
    user_pref("mailnews.tags.$label5.tag", "Later");
    user_pref("mailnews.tags.version", 2);
    user_pref("mailnews.ui.junk.firstuse", false);
    user_pref("mailnews.ui.threadpane.version", 5);
    user_pref("network.protocol-handler.app.ftp", "/usr/lib/firefox-3.0.1/firefox %s");
    user_pref("network.protocol-handler.app.http", "/usr/lib/firefox-3.0.1/firefox %s");
    user_pref("network.protocol-handler.app.https", "/usr/lib/firefox-3.0.1/firefox %s");
    user_pref("wallet.caveat", true);

    I have found it is a problem with the Arch implementation of Firefox. At least that is what it looks like.
    I tried everything and could not get it to work (in my case: opening http links from Thunderbird in Firefox). I _could_ open the http links in any other app, e.g. kwrite, konqueror, Gimp (just for testing a non KDE app...).
    So: I checked the /usr/lib/firefox_3.0.3 folder and found out that the executable is invoked directly. In debian, or in the static binary from mozilla, there is a script in place that later calls the binary. So for some reason or other the call fails (dbus??), and teh app does not launch.
    I installed the static firefox binary from mozilla and that works a treat. Did the same for Thunderbird by the way, since Arch is at 2.00.16 whereas version 2.00.17 has been out for a while.

  • Compatible issues firefox v37.0.2 with att yahoo mail

    6:43 PM 4/24/2015
    Compatible issues firefox v37.0.2 with att yahoo mail
    Hello: this is my first post,hope I am doing it properly.
    I am using W7pro OS and ATT DSL 3.0Mbps dl
    I noticed this week that I was unable to save attachments from my ATT Yahoo mail I could view them but no choice as to ware to save them--only choice (save to my comp.)But no ware to be found.
    I reinstalled v 36.0.4-preventing auto upgrade-But still had same problem.
    At this point contacted ATT support supervisor-we spent about 4hr working on problem--He was using your v 31.5.0--and had no problem accessing and saving attachments using remolt access on my comp.
    We also found using my comp.FF v 36.0.4 & v 37.0.2 browser,that we could without any problems access an save attachments--AOL mail-- & mail2web.--& IE--Even when forwarding inaccessible mail to above sites.
    He informed me that (ATT mail Yahoo)only uses resources to make them compatible with--Google IE & Chrome &Apple? (basically he was saying,that they would NOT commit resources to FF--any version)BUT he was not allowed to commit.
    PS: The last time I know it worked ok was 3-18-15 I have 3 comp.2 wxp pro 1 w7 pro the same problem on all 3--so feel confident not OS related-but compatible problems with FF & yahoo mail.
    The ATT support supervisor-was unable to determined the date they may have made changes on their site.without extensive research-which we decided wasn't worth the effort as they wouldn't look in to it.
    I hope someone or FF will be able find a workaround-as I do not want to use the browsers they suggest. I LOVE FF.
    Thank You Gary

    I have no idea what you are asking me to do ??--can you explain at a dummy
    level--I wont be offended.
    gary

  • "failed to find profile ID" on Cellular Interface

    Hello World,
    I try to make a connection to a Wirelless 3G.
    I configure modem and I think that the modem is connected 
    show cellular 0/0/0 all
    Hardware Information
    ====================
    Modem Firmware Version = T1_0_3_2AP R361 CNSZ
    Modem Firmware built = 04/15/11
    Hardware Version = 1.0
    International Mobile Subscriber Identity (IMSI) = 546010100686679
    International Mobile Equipment Identity (IMEI) = 357115041341178
    Integrated Circuit Card ID (ICCID) = 8968701111106200287
    Mobile Subscriber International Subscriber
    IDentity Number (MSISDN) =
    Factory Serial Number (FSN) = CC3322315641011
    Modem Status = Online
    Current Modem Temperature = 29 deg C, State = Normal
    PRI SKU ID = 9900198, SKU Rev. = 1.2
    Profile Information
    ====================
    Profile 1 = INACTIVE* **
    PDP Type = IPv4
    Access Point Name (APN) = USB
    Authentication = None
    Username:
    Password:
      * - Default profile
    Data Connection Information
    ===========================
    Data Transmitted = 0 bytes, Received = 0 bytes
    Profile 1, Packet Session Status = INACTIVE
            Inactivity Reason = Normal inactivate state
    Profile 2, Packet Session Status = INACTIVE
            Inactivity Reason = Normal inactivate state
    Profile 3, Packet Session Status = INACTIVE
            Inactivity Reason = Normal inactivate state
    Profile 4, Packet Session Status = INACTIVE
            Inactivity Reason = Normal inactivate state
    Profile 5, Packet Session Status = INACTIVE
            Inactivity Reason = Normal inactivate state
    Profile 6, Packet Session Status = INACTIVE
            Inactivity Reason = Normal inactivate state
    Profile 7, Packet Session Status = INACTIVE
            Inactivity Reason = Normal inactivate state
    Profile 8, Packet Session Status = INACTIVE
            Inactivity Reason = Normal inactivate state
    Profile 9, Packet Session Status = INACTIVE
            Inactivity Reason = Normal inactivate state
    Profile 10, Packet Session Status = INACTIVE
            Inactivity Reason = Normal inactivate state
    Profile 11, Packet Session Status = INACTIVE
            Inactivity Reason = Normal inactivate state
    Profile 12, Packet Session Status = INACTIVE
            Inactivity Reason = Normal inactivate state
    Profile 13, Packet Session Status = INACTIVE
            Inactivity Reason = Normal inactivate state
    Profile 14, Packet Session Status = INACTIVE
            Inactivity Reason = Normal inactivate state
    Profile 15, Packet Session Status = INACTIVE
            Inactivity Reason = Normal inactivate state
    Profile 16, Packet Session Status = INACTIVE
            Inactivity Reason = Normal inactivate state
    Network Information
    ===================
    Current Service Status = Normal, Service Error = None
    Current Service = Combined
    Packet Service = UMTS/WCDMA (Attached)
    Packet Session Status = Inactive
    Current Roaming Status = Home
    Network Selection Mode = Automatic
    Country = NCL, Network = MOBNCL
    Mobile Country Code (MCC) = 546
    Mobile Network Code (MNC) = 1
    Location Area Code (LAC) = 10
    Routing Area Code (RAC) = 1
    Cell ID = 30521
    Primary Scrambling Code = 434
    PLMN Selection = Automatic
    Registered PLMN = NCL MOBILIS , Abbreviated = MOBNCL
    Service Provider =
    Radio Information
    =================
    Radio power mode = ON
    Current Band = WCDMA 2100, Channel Number = 10762
    Current RSSI(RSCP) = -63 dBm
    Band Selected = Auto
    Number of nearby cells = 1
    Cell 1
            Primary Scrambling Code = 0x1B2
            RSCP = -64 dBm, ECIO = -7 dBm
    Modem Security Information
    ==========================
    Card Holder Verification (CHV1) = Disabled
    SIM Status = OK
    SIM User Operation Required = None
    Number of CHV1 Retries remaining = 3
    GPS Information
    ==========================
    GPS Info
    GPS State: GPS disabled
    SMS Information
    ===============
    Incoming Message Information
    SMS stored in modem = 1
    SMS archived since booting up = 0
    Total SMS deleted since booting up = 0
    Storage records allocated = 60
    Storage records used = 1
    Number of callbacks triggered by SMS = 0
    Number of successful archive since booting up = 0
    Number of failed archive since booting up = 0
    Outgoing Message Information
    Total SMS sent successfully = 0
    Total SMS send failure = 0
    Number of outgoing SMS pending = 0
    Number of successful archive since booting up = 0
    Number of failed archive since booting up = 0
    Last Outgoing SMS Status = SUCCESS
    Copy-to-SIM Status =     0x0
    Send-to-Network Status = 0x0
    Report-Outgoing-Message-Number:
      Reference Number =     0
      Result Code =          0x0
      Diag Code =            0x0 0x0 0x0 0x0 0x0
    SMS Archive URL =
    Error Information
    =================
     Cached info is displayed
    at!err
    QDSP6                             ARM9 (not saved)
    00   08 uim              08480    00   01 hsu_conf_sel_nv  00572
    01   63 gsnvif           00245    01   01 hsu_conf_sel_nv  00616
    02   FF cmtask           01162    02   01 timer            03552
    03   1B mmglbl           00392
    04   1B gsnvif           00478
    05   1B rr_init          01597
    06   1B rr_init          01601
    07   1B rrcdata          08026
    08   01 gmmutil          01099
    09   01 gmmutil          01118
    10   01 gmmutil          01141
    11   01 gmmutil          01156
    12   01 gmmutil          01174
    13   01 gmmutil          01198
    14   14 rrcllcp          16550
    15   04 rrccspf          02198
    16   17 rrccsp           20686
    17   04 gsdi             09787
    18   01 gsdi_co          01538
    19   1B cnlbs            03307
    OK
    at!gcdump
    No crash data available
    OK
    Modem Crashdump Information
    ===========================
    Modem crashdump logging: off
    I have the following config
    chat-script OPT3G "" "ATDT*99***1#"
    interface Cellular0/0/0
     ip address negotiated
     ip virtual-reassembly in
     encapsulation slip
     no ip route-cache
     load-interval 60
     dialer in-band
     dialer string OPT3G
     dialer-group 1
     async mode interactive
    interface Cellular0/0/1
     no ip address
     encapsulation slip
    ip forward-protocol nd
    no ip http server
    no ip http secure-server
    ip route 0.0.0.0 0.0.0.0 Cellular0/0/0
    dialer-list 1 protocol ip permit
    access-list 1 permit any
    line 0/0/0
     exec-timeout 0 0
     script dialer OPT3G
     login
     modem InOut
     no exec
     transport input all
     transport output all
     autoselect during-login
     autoselect ppp
    line 0/0/1
     exec-timeout 0 0
     script dialer OPT3G
     login
     modem InOut
     no exec
     transport input all
    I make debug
    debug chat
    debug cellular 0/0/0 messages all
    I try to start the interface
    Sending 5, 100-byte ICMP Echos to 8.8.8.8, timeout is 2 seconds:
    *Jul 22 07:08:31.363: [Cellular0/0/0]:MGMT RX (RSCP_ECIO) (24 bytes):
     00 14 6B 96 70 0B 07 00 00 00 00 00 00 0A 00 01
     00 01 01 B2 00 3E 00 0D
    *Jul 22 07:08:32.283: CHAT0/0/0: Attempting async line dialer script
    *Jul 22 07:08:32.283: CHAT0/0/0: Dialing using Modem script: OPT3G & System script: none
    *Jul 22 07:08:32.283: CHAT0/0/0: process started
    *Jul 22 07:08:32.283: CHAT0/0/0: Asserting DTR
    *Jul 22 07:08:32.283: CHAT0/0/0: Chat script OPT3G started
    *Jul 22 07:08:32.283: CHAT0/0/0: Sending string: ATDT*99***1#
    *Jul 22 07:08:32.283: CHAT0/0/0: Chat script OPT3G finished, status = Success.
    *Jul 22 07:08:34.283: %LINK-3-UPDOWN: Interface Cellular0/0/0, changed state to up
    *Jul 22 07:08:34.283: cellular_dip_ip_address_negotiated: failed to find profile ID for Cellular0/0/0
    *Jul 22 07:08:34.363: [Cellular0/0/0]:MGMT RX (RSCP_ECIO) (24 bytes):
     00 14 6B 97 70 0B 07 00 00 00 00 00 00 0A 00 01
     00 01 01 B2 00 3F 00 0C
    *Jul 22 07:08:35.283: %LINEPROTO-5-UPDOWN: Line protocol on Interface Cellular0/0/0, changed state to up.
    *Jul 22 07:08:36.283: cellular_dip_cell_set_encap_whip: Invalid profile ID 255 for Cellular0/0/0
    *Jul 22 07:08:36.835: [Cellular0/0/0]:MGMT RX (HEARTBEAT) (14 bytes):
     00 0A 6B 98 00 00 07 00 00 00 00 00 00 00
    *Jul 22 07:08:37.363: [Cellular0/0/0]:MGMT RX (RSCP_ECIO) (24 bytes):
     00 14 6B 99 70 0B 07 00 00 00 00 00 00 0A 00 01
     00 01 01 B2 00 3E 00 0C
    *Jul 22 07:08:38.283: cellular_dip_cell_set_encap_whip: Invalid profile ID 255 for Cellular0/0/0.
    *Jul 22 07:08:40.283: cellular_dip_cell_set_encap_whip: Invalid profile ID 255 for Cellular0/0/0
    *Jul 22 07:08:40.367: [Cellular0/0/0]:MGMT RX (RSCP_ECIO) (24 bytes):
     00 14 6B 9A 70 0B 07 00 00 00 00 00 00 0A 00 01
     00 01 01 B2 00 40 00 0F
    Success rate is 0 percent (0/5)
    RTR-TEST98#
    *Jul 22 07:08:43.371: [Cellular0/0/0]:MGMT RX (RSCP_ECIO) (24 bytes):
     00 14 6B 9B 70 0B 07 00 00 00 00 00 00 0A 00 01
     00 01 01 B2 00 3C 00 11
    *Jul 22 07:08:43.835: [Cellular0/0/0]:MGMT RX (HEARTBEAT) (14 bytes):
     00 0A 6B 9C 00 00 07 00 00 00 00 00 00 00
    *Jul 22 07:08:46.375: [Cellular0/0/0]:MGMT RX (RSCP_ECIO) (24 bytes):
     00 14 6B 9D 70 0B 07 00 00 00 00 00 00 0A 00 01
     00 01 01 B2 00 3E 00 0D
    *Jul 22 07:08:49.379: [Cellular0/0/0]:MGMT RX (RSCP_ECIO) (24 bytes):
     00 14 6B 9E 70 0B 07 00 00 00 00 00 00 0A 00 01
     00 01 01 B2 00 3E 00 0C
    *Jul 22 07:08:50.835: [Cellular0/0/0]:MGMT RX (HEARTBEAT) (14 bytes):
     00 0A 6B 9F 00 00 07 00 00 00 00 00 00 00
    *Jul 22 07:08:52.383: [Cellular0/0/0]:MGMT RX (RSCP_ECIO) (24 bytes):
     00 14 6B A0 70 0B 07 00 00 00 00 00 00 0A 00 01
     00 01 01 B2 00 3E 00 0E

    hello everyone,
    I still have my issue and can't connect my 3G interface.
    I can complete my issue with this log 
    *Aug 12 08:35:34.023: cellular_dip_ip_address_negotiated: failed to find profile ID for Cellular0/0/0
    *Aug 12 08:35:38.019: cellular_dip_cell_set_encap_whip: Invalid profile ID 255 for Cellular0/0/0
    Thank's for your help.

  • HT203426 I keep getting the following when I am trying to download previously purchased apps "ConnectionManager::invoke::Failed to find service connection url."

    ConnectionManager::invoke::Failed to find service connection url. I keep getting this error line I have just got my macbook pro back from repairs and a drive upgrade could this be the problem...?

    Hey gasemp,
    If you see that error I would sign out then sign back in to see if that resolves the issue:
    Sign out
    Choose Store > Sign Out.
    Sign in using an Apple ID
    Choose Store > Sign In, or click Sign In in the Quick Links section.
    The Quick Links section is located in the right part of the window shown when you click Featured, Top Charts, or Categories in the toolbar.
    Enter your Apple ID and password, and then click Sign In.
    via:
    Mac App Store: Sign in and out
    http://support.apple.com/kb/PH11499
    Sincerely,
    David

Maybe you are looking for

  • Can you edit the text of a PDF that is placed in inDesign

    I have placed a PDF in inDesign and am curious if I can edit the text of that PDF while in inDesign.

  • EJB Model Builder: class is not available in the ejb module archive file.

    Hi, We are testing SAP NetWeaver Developer Studio and SAP NetWeaver Application Server, Java(TM) EE 5 Edition. We created a sample EJB project(EJB 2.1) with an ejb and an EAR project, we deploy it using SAP NetWeaver Developer Studio. But when we see

  • Safari Won't Open PDF's

    Hi, I'm having some trouble with Safari opening PDF's. For some reason, when I click on a link I get the following message: To view the full contents of this document, you need a later version of the PDF viewer. You can upgrade to the latest version

  • Production Order Costing

    Hi Team, I do not have routing for my finished goods. I have maintained in OPJG the default operation for  my order type. In Control key the check box "Cost" is not activated. In OPJH, i have assigned the settlement profile as PP01. With this conditi

  • Crystal Reports and salesforce integration question

    I have a question about Crystal Reports connectivity to salesforce.  We are running Crystal Reports version 14.0.4.738 RTM.  When you create a new report and use the Database Expert, you can select www.salesforce.com as the data source.  I would like