Solaris 10 firefox 3.6.14 firefox-bin Invalid argument

I have downloaded the latest firefox-3.6.14, however when I try and run it from the command line I get:
/home/cb202208/Install/firefox/run-mozilla.sh: line 421: /home/cb202208/Install/firefox/depend/bin/pango-querymodules: Invalid argument
/home/cb202208/Install/firefox/run-mozilla.sh: line 422: /home/cb202208/Install/firefox/depend/bin/gtk-query-immodules-2.0: Invalid argument
/home/cb202208/Install/firefox/run-mozilla.sh: line 423: /home/cb202208/Install/firefox/depend/bin/gdk-pixbuf-query-loaders: Invalid argument
/home/cb202208/Install/firefox/run-mozilla.sh: line 143: /home/cb202208/Install/firefox/firefox-bin: Invalid argument

Oops, seems that I'm running on a Solaris x86 zone now.
Downloaded the x86 versions of firefox (and thunderbird) and it's all good.
If you're on Solaris - run "uname -a", if you get:
SunOS hostname 5.10 Generic_144489-05 i86pc i386 i86pc
Then you're on a x86 environment. :-)
Cheers

Similar Messages

  • Portal920_solaris32.bin: Invalid argument

    I am trying to install on Solaris 10 X86 0606.
    Any ideas?
    bash-3.00# chmod a+x ./portal920_solaris32.bin
    bash-3.00# ./portal920_solaris32.bin
    bash: ./portal920_solaris32.bin: Invalid argument
    bash-3.00#
    bash-3.00# sh
    # ./portal920_solaris32.bin
    ./portal920_solaris32.bin: cannot execute
    # ls -lt ./portal920_solaris32.bin
    -rwxrwxrwx 1 root other 722048346 Jul 31 17:42 ./portal920_solaris32.bin
    #

    You're trying to execute a sparc binary on x86 platform.
    As near as I can tell, there are no Weblogic Platform 9.2 products yet available for Solaris x86.

  • Firefox-bin fatal relocation error libthebes.so symbol round referenced symbol not found

    I compiled Firefox 3.6.23 on Solaris 9. When I try to start firefox it exits with the following error.
    ld.so.1 firefox-bin: fatal: relocation error: file /usr/local/lib/firefox-3.6.23/components/../libthebes.so: symbol round: referenced symbol not found killed

    It is not in the java documentation because it is not a java problem.
    When you write JNI code (or any other code for that matter) you probably should look at the documentation for the compilers and other tools that you are using for recommendations for how to use these third party tools.
    What would have been surprizing to me, is if your C++ compiler manual did not recommend linking with the standard C++ library when you use code contained in the library. Which was the problem here.

  • SOLVED: installing firefox-3.6.28 on 64-bit debian multiarch - "firefox-bin: not found"

    summary: I must run a firefox-3.x to telework, and I run debian at home. I previously had firefox-3.6.28 installed and running on an up-to-date debian, but mistakenly destroyed that install. I have reinstalled the OS, and reinstalled firefox-3.6.28, but it will not run:
    <pre>
    $ /usr/local/share/firefox-3.6.28/firefox -no-remote -ProfileManager &
    > [1] 8297
    > $ /usr/local/share/firefox-3.6.28/run-mozilla.sh: 143: exec: /usr/local/share/firefox-3.6.28/firefox-bin: not found
    </pre>
    details:
    As detailed in a previous question
    https://support.mozilla.org/en-US/questions/931873
    my workplace forces me to run a firefox-3.x in order to install a plugin (F5NAP) that provides remote access. (While the question above suggests that a firefox-8.x would also be an option, the latter is not in fact compatible with my workplace's servers' configuration.) I previously was able to do this first ~2 years ago, as indicated in the question above, on a 64-bit PC with debian=wheezy/sid (distro=LMDE==Linux Mint Debian Edition).
    About a month ago, that older PC developed severe problems, so I began to setup a newer PC, which must also run the VPN, and therefore firefox-3.6.28+F5NAP. The new box is running
    <pre>
    $ uname -a
    Linux box 3.11-2-amd64 #1 SMP Debian 3.11.8-1 (2013-11-13) x86_64 GNU/Linux
    $ lsb_release -a
    No LSB modules are available.
    Distributor ID: LinuxMint
    Description: LMDE Cinnamon Edition
    Release: 1
    Codename: debian
    $ cat /etc/debian_version
    jessie/sid
    </pre>
    Note that the new box is also 64-bit, but (unlike the old box) is running the latest debian with multiarch support
    https://wiki.debian.org/Multiarch
    (whereas the old box used package=ia32-libs). I was able to install firefox-3.6.28+F5NAP on the new box as detailed here
    http://forums.linuxmint.com/viewtopic.php?f=190&t=164522
    Unfortunately I later misconfigured LVM, forcing me to reinstall everything :-( I have LMDE and most applications installed (from APT, with packages currently up-to-date) and everything appears to work (particularly the firefox-28.0 which I am using to ask this question). However this time I'm getting a very different error when I run firefox-3.6.28.
    I'm installing and running firefox-3.6.28 with the following bash scriptlet (which is how I installed it previously):
    <pre>
    FF_VERSION='3.6.28'
    LINUX_VERSION='i686' # since there is no 64-bit build of this version of firefox
    EXEC_FN='firefox'
    LANG='en-US'
    FF_WITH_VERSION="firefox-${FF_VERSION}"
    URI="https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/${FF_VERSION}/linux-${LINUX_VERSION}/${LANG}/${FF_WITH_VERSION}.tar.bz2"
    BUILD_DIR="/tmp/${FF_WITH_VERSION}"
    UNZIP_DIR="${BUILD_DIR}/firefox"
    INSTALL_ROOT='/usr/local/share'
    INSTALL_OWN='root:staff' # like peers on new LMDE, not 'root:root'
    INSTALL_DIR="${INSTALL_ROOT}/${FF_WITH_VERSION}"
    EXEC_FP="${INSTALL_DIR}/${EXEC_FN}"
    EXEC_ARGS='-no-remote -ProfileManager'
    # `tar j` == bzip2
    for CMD in \
    "mkdir -p ${BUILD_DIR}" \
    "sudo mkdir -p ${INSTALL_ROOT}" \
    "pushd ${BUILD_DIR}" \
    "wget -O - ${URI} | tar xfj -" \
    "find | wc -l" \
    "popd" \
    "sudo mv ${UNZIP_DIR} ${INSTALL_DIR}" \
    "sudo chown -R ${INSTALL_OWN} ${INSTALL_DIR}/" \
    "du -hs ${INSTALL_DIR}/" \
    "ls -alh ${EXEC_FP}" \
    "${EXEC_FP} ${EXEC_ARGS} &" \
    ; do
    echo -e "$ ${CMD}"
    eval "${CMD}"
    done
    </pre>
    firefox-3.6.28 appears to install correctly:
    <pre>
    $ lsalh /usr/local/share/firefox-3.6.28/
    total 20M
    drwxr-xr-x 13 root staff 4.0K May 1 18:30 .
    drwxrwsr-x 9 root staff 4.0K May 1 18:04 ..
    -rw-r--r-- 1 root staff 2.1K Mar 6 2012 application.ini
    -rw-r--r-- 1 root staff 0 Mar 6 2012 .autoreg
    -rw-r--r-- 1 root staff 5.1K Mar 6 2012 blocklist.xml
    -rw-r--r-- 1 root staff 232 Mar 6 2012 browserconfig.properties
    drwxr-xr-x 3 root staff 4.0K Mar 6 2012 chrome
    drwxr-xr-x 2 root staff 4.0K Mar 6 2012 components
    -rwxr-xr-x 1 root staff 51K Mar 6 2012 crashreporter
    -rw-r--r-- 1 root staff 3.8K Mar 6 2012 crashreporter.ini
    -rw-r--r-- 1 root staff 583 Mar 6 2012 crashreporter-override.ini
    drwxr-xr-x 5 root staff 4.0K Mar 6 2012 defaults
    -rw-r--r-- 1 root staff 136 Mar 6 2012 dependentlibs.list
    drwxr-xr-x 2 root staff 4.0K Mar 6 2012 dictionaries
    drwxr-xr-x 3 root staff 4.0K Mar 6 2012 extensions
    -rwxr-xr-x 1 root staff 3.9K Mar 6 2012 firefox
    -rwxr-xr-x 1 root staff 44K Mar 6 2012 firefox-bin
    drwxr-xr-x 2 root staff 4.0K Mar 6 2012 greprefs
    drwxr-xr-x 2 root staff 4.0K Mar 6 2012 icons
    -rw-r--r-- 1 root staff 478 Mar 6 2012 libfreebl3.chk
    -rwxr-xr-x 1 root staff 326K Mar 6 2012 libfreebl3.so
    -rwxr-xr-x 1 root staff 1.1M Mar 6 2012 libmozjs.so
    -rwxr-xr-x 1 root staff 201K Mar 6 2012 libnspr4.so
    -rwxr-xr-x 1 root staff 853K Mar 6 2012 libnss3.so
    -rwxr-xr-x 1 root staff 390K Mar 6 2012 libnssckbi.so
    -rw-r--r-- 1 root staff 478 Mar 6 2012 libnssdbm3.chk
    -rwxr-xr-x 1 root staff 121K Mar 6 2012 libnssdbm3.so
    -rwxr-xr-x 1 root staff 81K Mar 6 2012 libnssutil3.so
    -rwxr-xr-x 1 root staff 14K Mar 6 2012 libplc4.so
    -rwxr-xr-x 1 root staff 8.8K Mar 6 2012 libplds4.so
    -rwxr-xr-x 1 root staff 123K Mar 6 2012 libsmime3.so
    -rw-r--r-- 1 root staff 478 Mar 6 2012 libsoftokn3.chk
    -rwxr-xr-x 1 root staff 194K Mar 6 2012 libsoftokn3.so
    -rwxr-xr-x 1 root staff 501K Mar 6 2012 libsqlite3.so
    -rwxr-xr-x 1 root staff 169K Mar 6 2012 libssl3.so
    -rwxr-xr-x 1 root staff 12K Mar 6 2012 libxpcom.so
    -rwxr-xr-x 1 root staff 16M Mar 6 2012 libxul.so
    -rw-r--r-- 1 root staff 31K Mar 6 2012 LICENSE
    drwxr-xr-x 2 root staff 4.0K Mar 6 2012 modules
    -rwxr-xr-x 1 root staff 11K Mar 6 2012 mozilla-xremote-client
    -rw-r--r-- 1 root staff 137 Mar 6 2012 platform.ini
    -rwxr-xr-x 1 root staff 3.7K Mar 6 2012 plugin-container
    drwxr-xr-x 2 root staff 4.0K Mar 6 2012 plugins
    -rw-r--r-- 1 root staff 177 Mar 6 2012 README.txt
    -rw-r--r-- 1 root staff 16K Mar 6 2012 removed-files
    drwxr-xr-x 6 root staff 4.0K Mar 6 2012 res
    -rwxr-xr-x 1 root staff 9.8K Mar 6 2012 run-mozilla.sh
    drwxr-xr-x 2 root staff 4.0K Mar 6 2012 searchplugins
    -rw-r--r-- 1 root staff 825 Mar 6 2012 Throbber-small.gif
    -rw-r--r-- 1 root staff 6 Mar 6 2012 update.locale
    -rwxr-xr-x 1 root staff 71K Mar 6 2012 updater
    -rw-r--r-- 1 root staff 143 Mar 6 2012 updater.ini
    </pre>
    but it does not run:
    <pre>
    $ /usr/local/share/firefox-3.6.28/firefox -no-remote -ProfileManager &
    > [1] 8297
    > $ /usr/local/share/firefox-3.6.28/run-mozilla.sh: 143: exec: /usr/local/share/firefox-3.6.28/firefox-bin: not found
    </pre>
    But as noted above, /usr/local/share/firefox-3.6.28/firefox-bin clearly exists, and is in the same directory as /usr/local/share/firefox-3.6.28/run-mozilla.sh , and both have the same permissions. Am I missing something?
    If not: how to fix, or further debug, this problem?
    Your prompt assistance is appreciated, since I can't telework until I get this fixed :-(

    For the solution's full description, see this post to debian-user
    https://lists.debian.org/debian-user/2014/05/msg00243.html
    (in a quite illuminating thread starting here
    https://lists.debian.org/debian-user/2014/05/msg00126.html
    ) But the solution was mostly
    <pre>
    me@it ~ $ ldd /usr/local/share/firefox-3.6.28/firefox-bin
    not a dynamic executable
    # libc6:i386, dependencies, and recommended from `aptitude -s`
    me@it ~ $ sudo aptitude install libc6:i386 gcc-4.8-base:i386 libc6-i686:i386 libgcc1:i386
    The following NEW packages will be installed:
    gcc-4.8-base:i386 libc6:i386 libc6-i686:i386 libgcc1:i386
    0 packages upgraded, 4 newly installed, 0 to remove and 0 not upgraded.
    Setting up gcc-4.8-base:i386 (4.8.2-1) ...
    Setting up libc6:i386 (2.17-97) ...
    Setting up libgcc1:i386 (1:4.8.2-1) ...
    Setting up libc6-i686:i386 (2.17-97) ...
    Processing triggers for libc-bin ...
    me@it ~ $ ldd /usr/local/share/firefox-3.6.28/firefox-bin
    linux-gate.so.1 (0xf7775000)
    libpthread.so.0 => /lib/i386-linux-gnu/i686/cmov/libpthread.so.0 (0xf7740000)
    libxul.so => not found
    libmozjs.so => not found
    libxpcom.so => not found
    libplds4.so => not found
    libplc4.so => not found
    libnspr4.so => not found
    libdl.so.2 => /lib/i386-linux-gnu/i686/cmov/libdl.so.2 (0xf7739000)
    libgtk-x11-2.0.so.0 => not found
    libatk-1.0.so.0 => not found
    libgdk-x11-2.0.so.0 => not found
    libgdk_pixbuf-2.0.so.0 => not found
    libpangocairo-1.0.so.0 => not found
    libpango-1.0.so.0 => not found
    libcairo.so.2 => not found
    libgobject-2.0.so.0 => not found
    libgmodule-2.0.so.0 => not found
    libglib-2.0.so.0 => not found
    libX11.so.6 => not found
    libasound.so.2 => not found
    libm.so.6 => /lib/i386-linux-gnu/i686/cmov/libm.so.6 (0xf76f4000)
    libstdc++.so.6 => not found
    libgcc_s.so.1 => /lib/i386-linux-gnu/libgcc_s.so.1 (0xf76d7000)
    libc.so.6 => /lib/i386-linux-gnu/i686/cmov/libc.so.6 (0xf7527000)
    /lib/ld-linux.so.2 (0xf7776000)
    </pre>

  • I need to migrate an XPI developed for Firefox 2.x on Solaris to Firefox 3.6 for Windows

    I need to migrate an XPI developed for Firefox 2.x on Sun Solaris to Firefox 3.6 on Windows. The XPI archive contains a XUL file which gives many error messages when I use the XPI addon:
    C:\>firefox.exe -trmail-view
    What would be the best approach? Try to modify existing files XUL/JS files or start with the new JS files from Firefox 3.6 Windows?
    Existing XPI contains files:
    Directory of C:\Documents and Settings\BogdanS\My Documents\solaristrmail_2008_03-all
    03/10/2011 05:13 PM <DIR> chrome
    02/05/2008 11:21 AM 31 chrome.manifest
    03/10/2011 05:14 PM <DIR> components
    03/10/2011 12:38 PM 942 install.rdf
    Directory of C:\Documents and Settings\BogdanS\My Documents\solaristrmail_2008_03-all\chrome\content
    03/06/2008 03:42 PM 274 cfg.js
    03/06/2008 03:39 PM 15,164 dispatcher.js
    03/05/2008 01:44 PM 19,923 errorManager.js
    03/05/2008 02:45 PM 32,339 folders.js
    03/05/2008 03:07 PM 36,291 messages.js
    03/05/2008 03:07 PM 12,869 search.js
    02/20/2008 03:30 PM 5,587 settings.js
    03/05/2008 01:46 PM 11,442 trUtils.js
    03/10/2011 05:40 PM 80,398 trwin.xul
    03/06/2008 03:43 PM 13,115 utils.js
    Directory of C:\Documents and Settings\BogdanS\My Documents\solaristrmail_2008_03-all\components
    02/12/2008 03:28 PM 5,527 .#trProtocol.js.1.2
    02/12/2008 12:46 PM 5,924 trcommandline.js
    02/22/2008 09:41 AM 5,719 trProtocol.js

    Credit Tony E
    To downgrade to Firefox 3.6 first uninstall Firefox 4, but do not select the option to "Remove my Firefox personal data". If you select that option it will delete your bookmarks, passwords and other user data. See https://support.mozilla.com/kb/Uninstalling+Firefox
    You can then install the latest version of Firefox 3.6 available from http://www.mozilla.com/en-US/firefox/all-older.html - it will automatically use your current bookmarks, passwords etc.
    To avoid possible problems with downgrading, I recommend going to your profile folder and deleting the following files if they exist - extensions.cache, extensions.rdf, extensions.ini, extensions.sqlite and localstore.rdf. Deleting these files will force Firefox to rebuild the list of installed extensions, checking their compatibility, and reset toolbar customizations.
    For details of how to find your profile folder see https://support.mozilla.com/kb/Profiles

  • Firefox application quits unexpectedly on various websites with no pattern: firefox-bin [770]

    Firefox application quits unexpectedly on various websites with no pattern. Part of the error message details reads "firefox-bin [770]"
    It started happening this AM after I visited facebook and got an invite from someone I don't know. I didn't reply. Ever since, I can only browse Safari but for a few pages until it quits.
    Please help.
    Thank you.

    Run /Utilities/Console and click 'All Messages' top left - look for the entries around the quit times and see if they give any pointers why the apps are quitting ? If you're not sure what the lines mean copy and post (just those not the whole log) here.
    There may also be some clues in /Library/Logs/Crash Reporter nameofapplication_date

  • Cant change profiles as code /Applications/Firefox.app/Contents/MacOS/firefox-bin -ProfileManager says its not recognized and ive restarted it twice to make sure its closed

    Cant change my profiles and the code /Applications/Firefox.app/Contents/MacOS/firefox-bin -ProfileManager as stated on the page doesnt work..It says -bash: /Applications/Firefox.app/Contents/MacOS/firefox-bin: No such file or directory...I cant create a new one or manage them cause of not allowing in the profile area..
    == This happened ==
    Every time Firefox opened
    == i typed it in and it stated it was not recognized

    An update.
    I almost never use TFF24 so I haven't really been testing this.  However, I did have an issue with TFF17 where it crashed or something.  When I restarted TFF17 it had somehow decided to start using my TFF24 profile.  No real harm there other than puzzlement, and I was missing all my plugins and extensions.  Fortunately I keep the profile switcher extension in both profiles so I used it to switch back to my TFF17 profile.  A few days later I needed to use TFF24.  When I tried starting it with TFF17 still running it did not start up but gave me the old warning about not being able to run two versions of Firefox.  I quit TFF17, started TFF24 and it started up using my TFF17 profile.  Of course then it ran an extension compatibility check, found the "outdated" ones and removed them from the profile!  They were still gone when I restarted in TFF17.   An add-on check said one of them (Classic Compact) only had a Firefox20+ version available until I did some real web searching and finally found a page with the older version.  By the way, simply copying the extensions folder from a profile backup does not seem to install a full suite of extensions, you have to do the full profile.
    Observations:
    - If you do this, keep a profile switcher add-on in both copies of TFF.  Select it to always display at startup which is annoying but not a huge amount of labor to click through.  That way you can make sure each version is starting with the correct profile.  I also installed an add-on which stops TFF from doing an add-on compatibility check when starting, just in case.  It is easy to toggle on and off if you really want one done.
    - Of course right now I don't have capability to keep both versions running at the same time unless I go back and set it all up again, but at least I can have two different versions for when I need to run the newer one.

  • Why do I get this error message /opt/firefox/run-mozilla.sh: 399: /opt/firefox/firefox-bin: not found

    kubuntu 10.04
    firefox 10.0.2
    I downloaded and installed firefox 10.0.2 but when I...
    1. click the desktop icon nothing happens.
    2. use terminal mode and type firefox I get the following error message:
    /opt/firefox/run-mozilla.sh: 399: /opt/firefox/firefox-bin: not found
    How do I fix this?

    In short, I used kpackagekit to uninstall firefox. Then used synaptic to uninstall firefox. After that I manually scanned the computer for residual DIRs. In the end, I noticed that I still had 3 DIRs containing firefox: /opt/firefox, /usr/lib/firefox-10.0.1, /usr/lib64/firefox-10.0.1
    So removing firefox didn't work as expected.
    As it turns out, the copy of firefox residing in /opt/firefox is v3.5.3, but I have a current version in /usr/lib and /usrlib64. For some reason the, new install didn't replace the copy in /opt/firefox and the /usr/bin scripts firefox and run-mozilla.sh point to /opt/firefox.
    So when I use terminal mode and type firefox I get the cited error message. When I use my desktop icon it hangs.
    My remedy for this was to due the following:
    1. track down the location of the desktop icon: /usr/share/applications/firefox.desktop
    2. edit the file: sudo pico /usr/share/applications/firefox.desktop
    3. modify entry to: EXEC=/usr/lib/firefox-10.0.1 /firefox.sh u% ( save and exit)
    4. modify terminal command: firefox
    5. track down the location of the firefox command: /usr/bin/firefox and /usr/bin/
    firefox.ubuntu
    6. remove symbolic link: rm /usr/bin/firefox
    7. remove symbolic link: rm /usr/bin/firefox
    8. create new symbolic link: ln -sT /usr/lib/firefox-10.0.1/firefox.sh firefox
    9. create new symbolic link: ln -sT /usr/lib/firefox-10.0.1/firefox.sh firefox.ubuntu
    Everything works now as it should.
    I believe the cause of this problem was related to the fact that the mozilla-team made a change to the location of their upgrade/update libraries which affected the entries in the file: /etc/apt/sources.list. When the ppa library location changed, my kubuntu version 10.04 didn't make this change and residual copies of firefox were left behind and DIRs /usr/bin and /opt/firefox were not modified.
    Perhaps my experience will help others that tread this path.
    Maybe somebody can explain to me why we need 3 DIRs for firefox: /opt/fire ; /usr/lib ; /usr/lib64

  • Mac osx: Firefox crashes everytime I open it, and then asks if i want to open "firefox-bin"?

    everytime i open it, it crashes, then askes if i want to open "firefox-bin"? do i open it so my firefox will work? or is something else wrong?
    here is the crash report
    Process: firefox-bin [53637]
    Path: /Applications/Firefox.app/Contents/MacOS/firefox-bin
    Identifier: org.mozilla.firefox
    Version: 12.0 (12.0)
    Code Type: X86 (Native)
    Parent Process: launchd [151]
    Interval Since Last Report: 14515969 sec
    Crashes Since Last Report: 37
    Per-App Interval Since Last Report: 3482691 sec
    Per-App Crashes Since Last Report: 5
    Date/Time: 2014-05-21 18:06:31.348 -0400
    OS Version: Mac OS X 10.5.8 (9L31a)
    Report Version: 6
    Anonymous UUID: F7D47A75-B7CD-4A9C-BB1D-8724A36421FA
    Exception Type: EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000005
    Crashed Thread: 0
    Thread 0 Crashed:
    0 XUL 0x02dbdc03 jpeg_simd_cpu_support + 63315
    1 ??? 0xbfff9900 0 + 3221199104
    Thread 1:
    0 libSystem.B.dylib 0x9087a166 mach_msg_trap + 10
    1 libSystem.B.dylib 0x9088195c mach_msg + 72
    2 XUL 0x01c9c0fd catch_exception_raise + 2829
    3 libSystem.B.dylib 0x908aaf12 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x908aa8c6 kevent + 10
    Thread 3:
    0 libSystem.B.dylib 0x9088134e __semwait_signal + 10
    1 libSystem.B.dylib 0x908abccd pthread_cond_wait$UNIX2003 + 73
    2 libnspr4.dylib 0x00052d71 PR_WaitCondVar + 241
    3 XUL 0x02cbb72f NS_CycleCollectorSuspect_P + 12447
    Thread 4:
    0 libSystem.B.dylib 0x908c960a select$DARWIN_EXTSN + 10
    1 libnspr4.dylib 0x00054939 PR_Poll + 441
    2 XUL 0x01cd58df catch_exception_raise + 238319
    Thread 5:
    0 libSystem.B.dylib 0x9088134e __semwait_signal + 10
    1 libSystem.B.dylib 0x908abccd pthread_cond_wait$UNIX2003 + 73
    2 libnspr4.dylib 0x00052d71 PR_WaitCondVar + 241
    Thread 6:
    0 libSystem.B.dylib 0x9088134e __semwait_signal + 10
    1 libSystem.B.dylib 0x908abccd pthread_cond_wait$UNIX2003 + 73
    2 libnspr4.dylib 0x00052d71 PR_WaitCondVar + 241
    3 XUL 0x03049b27 js::StopPCCountProfiling(JSContext*) + 8855
    4 libnspr4.dylib 0x00058822 PR_JoinThread + 338
    5 libSystem.B.dylib 0x908ab055 _pthread_start + 321
    6 libSystem.B.dylib 0x908aaf12 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x9088134e __semwait_signal + 10
    1 libSystem.B.dylib 0x908d1908 pthread_cond_timedwait$UNIX2003 + 72
    2 libnspr4.dylib 0x00051f37 PRP_NakedNotify + 183
    3 libnspr4.dylib 0x00052cd7 PR_WaitCondVar + 87
    4 XUL 0x0277e414 DumpJSValue + 125700
    5 libSystem.B.dylib 0x908ab055 _pthread_start + 321
    6 libSystem.B.dylib 0x908aaf12 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x9088134e __semwait_signal + 10
    1 libSystem.B.dylib 0x908d1908 pthread_cond_timedwait$UNIX2003 + 72
    2 libnspr4.dylib 0x00051f37 PRP_NakedNotify + 183
    3 libnspr4.dylib 0x00052cd7 PR_WaitCondVar + 87
    4 XUL 0x02caf2b3 XRE_AddStaticComponent + 38755
    Thread 9:
    0 libSystem.B.dylib 0x9088134e __semwait_signal + 10
    1 libSystem.B.dylib 0x908abccd pthread_cond_wait$UNIX2003 + 73
    2 libnspr4.dylib 0x00052d71 PR_WaitCondVar + 241
    3 libnspr4.dylib 0x00052dc9 PR_Wait + 57
    4 XUL 0x02ca8fbc XRE_AddStaticComponent + 13420
    Thread 10:
    0 libSystem.B.dylib 0x9088134e __semwait_signal + 10
    1 libSystem.B.dylib 0x908abccd pthread_cond_wait$UNIX2003 + 73
    2 libnspr4.dylib 0x00052d71 PR_WaitCondVar + 241
    3 libnspr4.dylib 0x00052dc9 PR_Wait + 57
    4 XUL 0x02ca8fbc XRE_AddStaticComponent + 13420
    Thread 11:
    0 libSystem.B.dylib 0x9088134e __semwait_signal + 10
    1 libSystem.B.dylib 0x908abccd pthread_cond_wait$UNIX2003 + 73
    2 libnspr4.dylib 0x00052d71 PR_WaitCondVar + 241
    3 libnspr4.dylib 0x00052dc9 PR_Wait + 57
    4 XUL 0x02ca8fbc XRE_AddStaticComponent + 13420
    Thread 12:
    0 libSystem.B.dylib 0x9088134e __semwait_signal + 10
    1 libSystem.B.dylib 0x908abccd pthread_cond_wait$UNIX2003 + 73
    2 libnspr4.dylib 0x00052d71 PR_WaitCondVar + 241
    3 XUL 0x0292e0e0 js::SecurityWrapper<js::Wrapper>::~SecurityWrapper() + 848704
    4 ??? 0x0010e570 0 + 1107312
    Thread 13:
    0 libSystem.B.dylib 0x9088134e __semwait_signal + 10
    1 libSystem.B.dylib 0x908abccd pthread_cond_wait$UNIX2003 + 73
    2 libnspr4.dylib 0x00052d71 PR_WaitCondVar + 241
    3 libnspr4.dylib 0x00052dc9 PR_Wait + 57
    4 XUL 0x02ca8fbc XRE_AddStaticComponent + 13420
    Thread 14:
    0 libSystem.B.dylib 0x9088134e __semwait_signal + 10
    1 libSystem.B.dylib 0x908abccd pthread_cond_wait$UNIX2003 + 73
    2 libnspr4.dylib 0x00052d71 PR_WaitCondVar + 241
    3 libnspr4.dylib 0x00052dc9 PR_Wait + 57
    4 XUL 0x02ca8fbc XRE_AddStaticComponent + 13420
    Thread 15:
    0 libSystem.B.dylib 0x9088134e __semwait_signal + 10
    1 libSystem.B.dylib 0x908d1908 pthread_cond_timedwait$UNIX2003 + 72
    2 libnspr4.dylib 0x00051f37 PRP_NakedNotify + 183
    3 libnspr4.dylib 0x00052cd7 PR_WaitCondVar + 87
    Thread 16:
    0 libSystem.B.dylib 0x9088134e __semwait_signal + 10
    1 libSystem.B.dylib 0x908d1908 pthread_cond_timedwait$UNIX2003 + 72
    2 libnspr4.dylib 0x00051f37 PRP_NakedNotify + 183
    3 libnspr4.dylib 0x00052cd7 PR_WaitCondVar + 87

    Hello,
    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information. <br>
    '''Note''': ''This will cause you to lose any Extensions and some Preferences.''
    *Open websites will not be saved in Firefox versions lower than 25.
    To Reset Firefox do the following:
    '''For Firefox versions previous to 29.0:'''
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox"[[Image:Button reset]] button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    '''For Firefox 29.0 and above:'''
    #Click the menu button [[Image:New Fx Menu]], click help [[Image:Help-29]] and select ''Troubleshooting Information''.
    Now, a new tab containing your troubleshooting information should open.
    #At the top right corner of the page, you should see a button that says "Reset Firefox"[[Image:Button reset]]. Click on it.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!
    Thank you.

  • Firefox-bin font rendering

    If I use any of the firefox-bin packages in aur, or mozilla's official tar the font rendering is just terrible and doesn't folow my system at all. Is there anyway to make these versions of firefox render fonts properly?

    The Firefox aurora and beta AUR packages use binary packages so Firefox is compiled differently than the default Arch packages. iirc, XULRunner is responsible for the font rendering. You would want to compile it to use the system's cairo library.

  • Installing 3.6.8 get error (firefox-bin:15570): Gtk-WARNING **: Whoever translated default:LTR did so wrongly.

    Get info to install fromfirefox 2.0. to3.6.8
    Down ok, delete folders "firefox"
    command tar ok
    script firefox goes wrong
    (firefox-bin:15570): Gtk-WARNING **: Whoever translated default:LTR did so wrongly.
    What isproblem?

    Does your Linux distro meet Firefox 3.6 system requirements?
    http://www.mozilla.com/en-US/firefox/system-requirements.html
    Most Linux distros from 2008 and earlier have an older GTK+ package than what Firefox 3+ versions require. It is usually easiest to install a newer version of Linux than it is to merely update the GTK+ package.
    ''Any chance you are running Asus Xandros on a EeePC?''

  • Console is showing: firefox bins 448 &793, unknown error code: invalid pixel format. MAC OS X 10.6.8, Firefox 5.1

    I started up in safe mode to try to figure out what was raising hell on my computer. the bin 793 error is new. I have been experiencing occasional flashing from space to space; I'm set up with 6 spaces with multiple tabs active in each.
    Generally, I end up having to force quit Firefox to resolve the issue. Right now I'm logging the same error (793) several times a second.

    Hmmm, not sure how “&#160” got into the title of my Question.
    I realize the title is very general but didn’t know specifically what the trouble was.
    More information may lead to some replies.
    Today I turned off Time Machine (TM) automatic backups.  So far no problems all day & when I checked the Console logs I saw no “LaunchServices: bad alias ...” entries. Many instances of these yesterday at the time of the problems.
    Do I need to:
    Rebuild the Launch Services database?
    Reset Launch Services?
    Trash the Launch Services plist file under preferences?
    Have 2:
    com.apple.LaunchServices.plist (4KB)
    com.apple.LaunchServices.QuarantineEvents (303KB)
    I cleared the Cache & History in both Safari & Firefox just in case.
    I checked Console Crash Reports & see both a Dock & a Finder crash report from one of the times I had the problems. That can’t be good.
    I  installed AppleJack & may use it to clear all my Caches depending on what replies I get here.
    Hopefully, this is now enough information for some suggestions on how to proceed.
    I’m going to restart & then w/o opening any other programs, re-enable TM automatic backup & see if the trouble reoccurs.
    Thanks for any help.

  • After installing updates, Firefox won't work. I got the message /Applications/Firefox.app/Contents/MacOS/firefox-bin -ProfileManager Error: Platform version '1.9.2.4' is not compatible with minVersion = 1.9.2.6 maxVersion /Applications/Firefox.app/Conten

    I cannot access download.mozilla.org. I need to do a fresh install after something went wrong with my updates and now Firefox won't even open so I am using Safari. I don't know why I can't get download.mozilla.org: is it because I am in China and it's now been blocked or is there a problem with the website?
    == I downloaded the updates. ==
    == User Agent ==
    Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_4; en-us) AppleWebKit/533.16 (KHTML, like Gecko) Version/5.0 Safari/533.16

    Do a clean reinstall and download a fresh Firefox copy from http://www.mozilla.com/firefox/all.html and save the file to the desktop.<br />
    Uninstall your current Firefox version and remove the Firefox program folder before installing that copy of the Firefox installer.<br />
    It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    You can skip the step to create a new profile, that is not necessary for this issue.
    See http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall

  • Get error box on Firefox startup: invalid username/password combination If you continue to get this error try entering your email address as your username

    Whenever I open a new session of Firefox, an error message with the above pops up. This happens since I've changed my email password. How do I fix this?
    Thanks

    Could this message be from your Yahoo! Mail Notifier extension? You may be able to clear or update its settings, or disable or remove it, on the Add-ons page. Either:
    * Ctrl+Shift+a
    * "3-bar" menu button (or Tools menu) > Add-ons
    In the left column, click Extensions. Then scroll down and check for an Options button for that extension.
    You also can remove saved logins that are obsolete if the problem occurs on your home page (or one of your home pages):
    * "3-bar" menu button (or Tools menu) > Options
    On the Security panel, click the "Saved Passwords" button.
    Any luck?

  • Solaris 10 x86 b72 "Cannot find boot.bin" booting from SCSI.

    Hello,
    After several gyrations of installation attempts and dealing with early BIOS PnP issues, I've finally managed to get Solaris 10 x86 installed on an old dual P2 333Mhz system. So far the system is running flawlessly, but I'm still not able to boot directly off the SCSI disk. The primary boot handler is erroring out that it cannot find boot.bin.
    I can boot fine off of the IDE CD drive and the floppy (currently pointed to autoboot into the SCSI disk as a workaround). But when I try to boot directly off the SCSI drive, I get the error from the Solaris boot manager that it "Cannot find boot.bin".
    I have booted off the CD & Floppy and compared the /boot files from both the CD & floppy, but I cannot find any difference that would prevent the primary boot loader from finding boot.bin. I've even compared files to make sure they were not corrupt, and even force re-installed the boot handlers, and manually partioning, always with the same results. I've also tried both enabling and disabling the DOS >1G translation of the Adaptec SCSI BIOS with no change. I can't find any reason that the boot loader is not seeing boot.bin, or that the file is corrupt in any way (even after several wipe and install attempts).
    My System is:
    Supermicro P6DLS dual Pentium II 333MHz & 512MB RAM, w/ Adaptec 7880 SCSI-UW and IDE (whopping UltraDMA 33) interfaces.
    CD/DVD reader is configured as the secondary master (moved from primary master in an attempt to fix boot problem)
    HD is a 16GB UW SCSI disk.
    (Other particulars ommited unless someone feels they are relevant to the boot process).
    The system came to me with Windows 2000 installed and functioning. I also had Fedora Core 3 installed, both with no boot problems of the SCSI disk. (Although FC3 would not see the second processor even with the canned SMP kernel).
    This system is intended to replace a Fedora Core 3 system to be a multi-purpose firewall gateway & proxy server and I'm really liking the performance I'm seeing with Solaris 10 on this system but would like it to be able to go through a normal boot process and not have to depend on a floppy as a boot device to get started.
    Anyone have any ideas why the Solaris x86 boot loaders think that they cannot find boot.bin when the full /boot partion is intact?
    TIA,
    -Troy

    I'm getting the same problem trying to install
    Solaris 10 in VMware from DVD.
    It brings up the Solaris Primary Boot Subsystem, so
    it appears to be reading fine, but the only thing
    that happens is I get the Cannot find boot.bin
    error.Hmm, the "Cannot find boot.bin." message comes from the
    CD/DVD's boot code, which is contained in the first 16 sectors
    of the media.
    The boot.bin file is supposed to be read from the Solaris UFS
    slice, which starts at 512 byte block #5151360 (or 2048 byte
    dvd sector #1287840). This a byte offset of ~2.6 GBytes.
    Maybe an issue with your system's bios not being able to read
    DVD media > 2GB, during DVD boot?
    Or a problem with burning the DVD media? Maybe some
    "smart" PC DVD burning software has decided only to record
    the 2.6 GB ISO filesystem, and the 100 MB Solaris UFS
    filesystem that follows the ISO filesystem is missing on the DVD?
    Or a 2GB filesize issue while burning the DVD?
    Do you have a pc / windows utility that can print some information
    about the S10 DVD media, especially the size of that DVD?
    Maybe your CD/DVD recording software?
    The original S10 GA x86 DVD image has a size of 2732195840
    bytes, or 1334080 2K DVD blocks.

Maybe you are looking for

  • When starting InDesignCS2 received new error message -- InDesign is missing required system fonts or

    We are not able to start Indesign CS2 without getting the error message: <<InDesign is missing required system fonts or CMap files. Please reinstall InDesign.>> This is on WinXP.<br /><br />Recently I installed Creative Suite CS4. It took almost a da

  • Front Row Movie Playback Suggestions

    Intro.... I'm loving the new front row, especially since i can watch my Video_TS files. After using the software for a few weeks, I've realized a behavior. I want to watch movies at home similar to the movie theater. Specifically, I want to watch tra

  • 1% for 2 minutes

    Hello! I've recently bought Air. At the moment I'm using only safary, and i haven't used any apps yet. I just can't understand why it loses 1% of battery's charge in 2 minutes if it has to work for 7 hours? Is it broken? Or i did something wrong? loo

  • Dock fails to start at login/start

    Since yesterday when logging out/in or restarting my macBook Pro, OS X 10.6.4 the Dock fails tot start. I get an blue desktop and no Dock, everything else works. I can start the dock manualy from the Core Services folder, it runs correctly then and w

  • Why ctx.lookup(name) differenct bw sessionbean and  entityBean for DBconnec

    i want to get dbconnection other than entity bean, in entity bean, the connection is got from the datasource, which built under the clause as String dbName = "java:comp/env/jdbc/CustomerDB"; InitialContext ic = new InitialContext(); DataSource ds = (