Launch SunOs 5.10 Binary on SunOS 5.6

I compiled a my source on SunOS 5.10 with f95
and now I try to launch it on SunOS 5.6.
First some libraries wasn't there, after I copied this libraries on my SunOS 5.6
I get the following error message:
ld.so.1: ./sdat: fatal: relocation error: file /usr/lib/libthread.so.1: symbol
libcthreads_interface: referenced symbol not found
ld.so.1: ./sdat: fatal: relocation error: file /usr/lib/libthread.so.1: symbol
libcthreads_interface: referenced symbol not found
Killed
Pls, can you help me, what can I do to launch my program on the older SunOS 5.6?
Thanx and bye
Jochen

Sorry, it is hardly possible. Generally the procedure to run binary on a range of SunOS'es is to compile it on the oldest one.
We provide this kind of binary compatibility, but not backward.
Compiling on newer OS (10) you make your binary dependant on a newer interfaces which are not available in previous OS versions.
Thus if you intend to run on Solaris 8, 9 and 10 you should compile on Solaris 8.
In your case a newer interface you have stumbled upon is a private part of libc threads.
Solaris 10 is waaay different from previous versions (threading part in particular), you might be lucky with going from Solaris 8 down to 6, but not from Solaris 10.
Anyway, this questions might be better answered on Solaris forum. They might know some hacks around. Compilers itself cant solve this problem.
regards,
__Fedor.

Similar Messages

  • I3 freezes when launching ncmpcpp from dmenu

    It works great when I launch ncmpcpp from within a terminal (urxvt or xterm). But the whole system freezes when trying to launch it from dmenu. I'm forced to hit the power button on my desktop.
    When I power back on and inspect the i3 log file, there's nothing past the call to dmenu_run:
    08/13/2010 06:20:55 PM - Urgency flag changed to 0
    08/13/2010 06:21:01 PM - --- parsing command "exec /usr/bin/urxvt" ---
    08/13/2010 06:21:01 PM - starting "/usr/bin/urxvt"
    08/13/2010 06:21:02 PM - Managing window 0x00800007
    08/13/2010 06:21:02 PM - _NET_WM_NAME changed to "Terminal"
    08/13/2010 06:21:02 PM - WM_CLASS changed to urxvt (instance), URxvt (class)
    08/13/2010 06:21:02 PM - WM_CLASS changed to urxvt (instance), URxvt (class)
    08/13/2010 06:21:02 PM - _NET_WM_NAME changed to "Terminal"
    08/13/2010 06:21:12 PM - --- parsing command "exec /usr/bin/dmenu_run" ---
    08/13/2010 06:21:12 PM - starting "/usr/bin/dmenu_run"
    //... log ends here
    When I try and use dmenu, this time from openbox, ncmpcpp launches flawlessly.
    Let me know if you require more information
    Last edited by marfig (2010-08-13 19:05:21)

    marfig wrote:It's the freeze that bothers me though.
    IIRC, it will do that in any window manager when you try to run a[n] [N]CURSES program without a terminal.
    marfig wrote:[...] could you please at least have inserted a comment on AUR explaining the program?
    AUR description wrote:A simple Dmenu-based application launcher. Launches binaries and XDG shortcuts.
    AUR descriptions can only be so long and any comments there were wiped out by that database incident.  Sorry 'bout that.
    Anyway, it is a small shell script that uses Dmenu to launch applications either by binary name or XDG shortcut name (e.g., "writer" for OpenOffice Writer instead of $(soffice -writer)), and it can be told to launch applications in a terminal instead, which I figured would help you out.
    Last edited by Wintervenom (2010-08-14 02:39:57)

  • Debug button launched non-debug player

    Hi all!
    I just started working with flash builder 4 today, but for some reason i cant normally use the debug mode.
    i want to see all my traces and such so i kinda need it, i think the reason is that the "debug" button launches a non-debug version Flash Player, because on right-click i dont see any of the debug functions. Awhile after opening the window the error about cant connect to Player pops up
    When i manually open a debug player the debug function works how it should.
    But ofcourse i dont want to open a window each time i want to run it. So my question is, how can i let the debug button run a debug version of the Player? I've tried reinstalling and removing all flashplayers before reinstalling
    Thanks already,
    Thom

    Hi,
    I'm assuming you are having trouble launching the debugger standalone binary on Mac. Open Finder, select any SWF file, do a "Get Info" and say "Open with" and point to the debug version of standalone player and choose "Change All".
    You can get the debug version of standalone player here: http://www.adobe.com/support/flashplayer/downloads.html
    Thanks,
    Anirudh Sasikumar
    Flash Builder Engineering

  • Problem using Host command to call a batch file

    Hi all,
    I am trying to call a batch file with the Host command:
    host c:\test\u.bat
    where u.bat calls unix2dos.exe with a parameter of d_unix.txt.
    Bat file looks like this:
    C:\test\unix2dos.exe d_unix.txt
    PAUSE
    The bat file gets called fine, but the following error occurs (in the cmd prompt):
    T:\globals\ORACLE8\bin>C:\test\unix2dos.exe d_unix.txt
    d_unix.txt:
    Can't open file
    T:\globals\ORACLE8\bin>PAUSE
    Press any key to continue . . .
    Running the batch file directly in windows works fine. The batch file also runs fine from the Host command if I remove the d_unix.txt parameter.
    The file d_unix.txt file is in the same directory as the batch file and as unix2dos.exe.
    Running from Sql Plus in a windows environment.
    Any thoughts?
    Edited by: dgouin on Aug 19, 2009 11:41 AM
    Edited by: dgouin on Aug 19, 2009 11:42 AM
    Edited by: dgouin on Aug 19, 2009 11:42 AM

    I always understood that it worked with whatever directory you were in when you launched the SQL*Plus binary:
    D:\>SQLPLUS dbuser@testdb
    SQL*Plus: Release 10.2.0.4.0 - Production on Wed Aug 19 15:26:35 2009
    Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.
    Enter password:
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    dbuser@testdb > HOST ECHO %CD%
    D:\
    dbuser@testdb > exit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    D:\>H:
    H:\>SQLPLUS dbuser@testdb
    SQL*Plus: Release 10.2.0.4.0 - Production on Wed Aug 19 15:27:03 2009
    Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.
    Enter password:
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    dbuser@testdb > HOST ECHO %CD%
    H:\
    dbuser@testdb > exit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options

  • Having problems organizing my library

    For some reason, when I organize my library by albums, some of my songs are appearing underneath my videos, and I can't figure out how to move them above the videos.

    I tested to launch Aperture 3.6 from my Mavericks partition, but no go. It will not launch, not even the binary in the Application package. It is giving this error message.
    /My_HD/Applications/Aperture.app/Contents/MacOS/Aperture ; exit;
    application requires at least Mac OS X version 10.10.0 (10.10), but is being run on 10.9.5 ( 10.9.5/13F34), and so is exiting.Abort trap: 6
    logout
    You could try two things:
    Search for a boxed Aperture 3 upgrade installer at Ebay or Amazon. This will install an early Aperture 3 version, and you can update this early version using the Aperture 3 updaters from the Supports Download page to Aperture 3.4.5. Then try the update to Aperture 3.5.1.  Only, this will probably be much more expensive than buying from the AppStore.
    Try to buy Aperture 3 from the AppStore. It should not download Aperture 3.6 while you are running Mavericks, but offer to download Aperture 3.5.1, or refuse to download.

  • I'm confused on which OS is needed for Aperture 3

    I was going to purchase Aperture 3 for organizing and editing my photo library. As I am having some problems editing with Aperture 2 using OS X 10.9.5 (Maverick)
    I read the specifications for Aperture 3 from the Apple store and it stated that "Mac OS X 10.9" (or later). is what's need for the OS.
    But when I went to purchase it from the App store it states "Compatibility OS X 10.10" (or later).
    Thus the confusion.
    Will the Aperture 3 download form the app store work using Maverick 10.9.5. I don't really want to upgrade the OS to Yosemite?
    Thanks
    JS

    I tested to launch Aperture 3.6 from my Mavericks partition, but no go. It will not launch, not even the binary in the Application package. It is giving this error message.
    /My_HD/Applications/Aperture.app/Contents/MacOS/Aperture ; exit;
    application requires at least Mac OS X version 10.10.0 (10.10), but is being run on 10.9.5 ( 10.9.5/13F34), and so is exiting.Abort trap: 6
    logout
    You could try two things:
    Search for a boxed Aperture 3 upgrade installer at Ebay or Amazon. This will install an early Aperture 3 version, and you can update this early version using the Aperture 3 updaters from the Supports Download page to Aperture 3.4.5. Then try the update to Aperture 3.5.1.  Only, this will probably be much more expensive than buying from the AppStore.
    Try to buy Aperture 3 from the AppStore. It should not download Aperture 3.6 while you are running Mavericks, but offer to download Aperture 3.5.1, or refuse to download.

  • Lipo question

    Hi,
    I have a command line app which I have compiled x86_64, i386, ppc7400 on their respective systems and all works as expected. So I tried to lipo them together to make one universal binary and when launching the binary on i386 (10.5.8) I get this message:
    dyld: unknown required load command 0x80000022
    Trace/BPT trap
    logout
    Since the individual i386 binary works fine I assume it's something I'm doing wrong with lipo. However there's not so many options and I have also tried to use the -arch flag when making the binary universal but still to no avail. One thing I noticed, if I will also launch the individual x86_64 binary on 10.5.8 I will get the same error which I would expect. So it's as if the system doesn't know which part of the universal binary to use? Any ideas about this?
    Thanks,
    rc

    Yes, the charger stops charging when the battery is fully charged and turns on when the battery's charge level drops to 94%. And, yes, electricity can still get to the battery otherwise the charger would not be of much use nor would the AC adaptor which continues to power the computer. See the following:
    About Batteries in Modern Apple Laptops
    Apple - Batteries - Notebooks
    Extending the Life of Your Laptop Battery
    Apple - Batteries
    Determining Battery Cycle Count
    Calibrating your computer's battery for best performance
    MacBook and MacBook Pro- Mac reduces processor speed when battery is removed while operating from an A-C adaptor
    Battery University

  • Missing package: SUNWbcp (SunOS 4.x Binary Compatibility)

    I have downloaded the latest Free Solaris 10 8/07 for x86 and retrieve the following error message:
    Missing package: SUNWbcp (SunOS 4.x Binary Compatibility)
    when installing Business Objects Enterprise XI Release 2 Service Pack 2. I can't locate the package on neither the CDs nor the DVD I downloaded.
    Any advise would be highly appreciated.
    Many thanks.
    Jurgs
    Edited by: tzscl2 on Dec 12, 2007 12:52 AM

    I have downloaded the latest Free Solaris 10 8/07 for x86 and retrieve the following error message:
    Missing package: SUNWbcp (SunOS 4.x Binary Compatibility)
    when installing Business Objects Enterprise XI Release 2 Service Pack 2. I can't locate the package on neither the CDs nor the DVD I downloaded.
    Any advise would be highly appreciated.
    Many thanks.
    Jurgs
    Edited by: tzscl2 on Dec 12, 2007 12:52 AM

  • Binary PHP installer with OCI8 supprt for SunOS 5.10

    Hello!
    Does anybody know if we can get a binary PHP installer with OCI8 supprt for SunOS 5.10 somewhere?
    We're trying to configure and compile our own, but there's no end to resolving dependancies, errors, etc...
    Thank you so much for any help with this!

    Nope, just running:
    ./configure --with-apxs2=/usr/local/apache2/bin/apxs
    make
    make install
    Works just fine(with the libphp5.so file being deleted). Problem doesn't arise until I try to add in the --with-ci8=xxx.                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • WebLogic 10.3.4 crash on SunOS 5.10 Generic_142909-17sun4vSparcT5240

    Hi everyone,
    I have this error when trying to start Weblogic on SUN Solaris 64bit.
    Is there any known bug for this?
    Please take a look over the stackdump:
    # Java VM: Java HotSpot(TM) 64-Bit Server VM (17.0-b16 mixed mode solaris-sparc )
    # Problematic frame:
    # C [libmuxer.so+0x4e68]
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    --------------- T H R E A D ---------------
    Current thread (0x0000000104505800): JavaThread "[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'" daemon [_thread_in_native,
    id=58, stack(0xffffffff3c800000,0xffffffff3c900000)]
    siginfo:si_signo=SIGSEGV: si_errno=0, si_code=1 (SEGV_MAPERR), si_addr=0x0000000000000000
    Registers:
    O0=0x0000000000000000 O1=0x0000000000000004 O2=0x0000000000000082 O3=0xffffffff7ef4354c
    O4=0xffffffff7bc0ca00 O5=0x0000000000000082 O6=0xffffffff3c8fbd11 O7=0xffffffff3be04e44
    G1=0x000000003bf07c00 G2=0x0000000104505800 G3=0x0000000000000004 G4=0x0000000000000bc0
    G5=0x0000000081236c00 G6=0x0000000000000000 G7=0xffffffff7bc0ca00 Y=0x0000000000000000
    PC=0xffffffff3be04e68 nPC=0xffffffff3be04e6c
    Top of Stack: (sp=0xffffffff3c8fc510)
    0xffffffff3c8fc510: 0000000000000123 0000000000000000
    0xffffffff3c8fc520: 0000000000000122 0000000000000122
    0xffffffff3c8fc530: ffffffff3bf07c00 0000000000002000
    0xffffffff3c8fc540: 0000000000000001 ffffffff7ef4e080
    0xffffffff3c8fc550: 00000001045059c8 00000000000023b8
    0XFfffffff3c8fc560: 00000000001d9b58 ffffffff7ed62508
    0xffffffff3c8fc570: ffffffff7ef3c000 0000000000000002
    0xffffffff3c8fc580: ffffffff3c8fbde1 ffffffff3be04a1c
    0xffffffff3c8fc590: ffffffff3c8fc8b0 ffffffff7801824c
    0xffffffff3c8fc5a0: ffffffff78004f90 0000000200000000
    0xffffffff3c8fc5b0: 0000000000000000 0000000000000000
    0xffffffff3c8fc5c0: fffffffffffffffd 0000000000000122
    0xffffffff3c8fc5d0: 0000012378004f90 0000000200000000
    0xffffffff3c8fc5e0: fffffffffffffffd ffffffff3bf07fa8
    0xffffffff3c8fc5f0: 0000000100116600 0000000000000000
    0xffffffff3c8fc600: 0000000000000000 000000000000000e
    Instructions: (pc=0xffffffff3be04e68)
    0xffffffff3be04e58: a8 15 23 ff a9 2d 30 20 a8 15 00 01 e2 5d 23 a0
    0xffffffff3be04e68: e6 24 60 00 a0 10 20 41 e2 5d 23 a0 e0 34 60 04
    Stack: [0xffffffff3c800000,0xffffffff3c900000], sp=0xffffffff3c8fc510, free space=3f1ffffffff3be04e68k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [libmuxer.so+0x4e68]
    C [libmuxer.so+0x4a24]
    j weblogic.socket.PosixSocketMuxer.initNative()V+992690760
    j weblogic.socket.PosixSocketMuxer.initNative()V+0
    j weblogic.socket.PosixSocketMuxer.<init>()V+26
    v ~StubRoutines::call_stub
    V [libjvm.so+0x1a4ad4]
    V [libjvm.so+0x1af27c]
    V [libjvm.so+0x7af214]
    V [libjvm.so+0x205c50]
    V [libjvm.so+0x205ea4]
    C [libjava.so+0x1ce70]
    j sun.reflect.NativeConstructorAccessorImpl.newInstance0(Ljava/lang/reflect/Constructor;[Ljava/lang/Object;)Ljava/lang/Object;+2717
    j sun.reflect.NativeConstructorAccessorImpl.newInstance0(Ljava/lang/reflect/Constructor;[Ljava/lang/Object;)Ljava/lang/Object;+0
    j sun.reflect.NativeConstructorAccessorImpl.newInstance([Ljava/lang/Object;)Ljava/lang/Object;+72
    j sun.reflect.DelegatingConstructorAccessorImpl.newInstance([Ljava/lang/Object;)Ljava/lang/Object;+5
    J java.lang.reflect.Constructor.newInstance([Ljava/lang/Object;)Ljava/lang/Object;
    j java.lang.Class.newInstance0()Ljava/lang/Object;+118
    j java.lang.Class.newInstance()Ljava/lang/Object;+15
    j weblogic.socket.SocketMuxer.makeTheMuxer()Lweblogic/socket/SocketMuxer;+207
    j weblogic.socket.SocketMuxer.access$000()Lweblogic/socket/SocketMuxer;+0
    j weblogic.socket.SocketMuxer$SingletonMaker.<clinit>()V+0
    v ~StubRoutines::call_stub
    V [libjvm.so+0x1a4ad4]
    V [libjvm.so+0x1af27c]
    V [libjvm.so+0x1d5d68]
    V [libjvm.so+0x4e6ec4]
    V [libjvm.so+0x192450]
    V [libjvm.so+0x185be8]
    V [libjvm.so+0x6ba874]
    V [libjvm.so+0x6ba48c]
    V [libjvm.so+0x18a278]
    j weblogic.socket.SocketMuxer.initSocketMuxerOnServer()Lweblogic/socket/SocketMuxer;+28
    j weblogic.socket.SocketMuxerServerService.start()V+0
    j weblogic.t3.srvr.SubsystemRequest.run()V+64
    j weblogic.work.ExecuteThread.execute(Ljava/lang/Runnable;)V+34
    j weblogic.work.ExecuteThread.run()V+42
    v ~StubRoutines::call_stub
    V [libjvm.so+0x1a4ad4]
    V [libjvm.so+0x51f41c]
    V [libjvm.so+0x23c3d4]
    V [libjvm.so+0x24e010]
    V [libjvm.so+0x8410d4]
    V [libjvm.so+0x762bb0]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j weblogic.socket.PosixSocketMuxer.initNative()V+0
    j weblogic.socket.PosixSocketMuxer.<init>()V+26
    v ~StubRoutines::call_stub
    j sun.reflect.NativeConstructorAccessorImpl.newInstance0(Ljava/lang/reflect/Constructor;[Ljava/lang/Object;)Ljava/lang/Object;+0
    j sun.reflect.NativeConstructorAccessorImpl.newInstance([Ljava/lang/Object;)Ljava/lang/Object;+72
    j sun.reflect.DelegatingConstructorAccessorImpl.newInstance([Ljava/lang/Object;)Ljava/lang/Object;+5
    J java.lang.reflect.Constructor.newInstance([Ljava/lang/Object;)Ljava/lang/Object;
    j java.lang.Class.newInstance0()Ljava/lang/Object;+118
    j java.lang.Class.newInstance()Ljava/lang/Object;+15
    j weblogic.socket.SocketMuxer.makeTheMuxer()Lweblogic/socket/SocketMuxer;+207
    j weblogic.socket.SocketMuxer.access$000()Lweblogic/socket/SocketMuxer;+0
    j weblogic.socket.SocketMuxer$SingletonMaker.<clinit>()V+0
    v ~StubRoutines::call_stub
    j weblogic.socket.SocketMuxer.initSocketMuxerOnServer()Lweblogic/socket/SocketMuxer;+28
    j weblogic.socket.SocketMuxerServerService.start()V+0
    j weblogic.t3.srvr.SubsystemRequest.run()V+64
    j weblogic.work.ExecuteThread.execute(Ljava/lang/Runnable;)V+34
    j weblogic.work.ExecuteThread.run()V+42
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x0000000104bff800 JavaThread "ExecuteThread: '3' for queue: 'weblogic.socket.Muxer'" daemon [_thread_blocked, id=65, stack(0xffffffff3b600000,0xffffffff3b
    700000)]
    0x00000001047e0800 JavaThread "ExecuteThread: '2' for queue: 'weblogic.socket.Muxer'" daemon [_thread_blocked, id=64, stack(0xffffffff3b800000,0xffffffff3b
    900000)]
    0x0000000104abb000 JavaThread "ExecuteThread: '1' for queue: 'weblogic.socket.Muxer'" daemon [_thread_blocked, id=63, stack(0xffffffff3ba00000,0xffffffff3b
    b00000)]
    0x0000000104b25000 JavaThread "ExecuteThread: '0' for queue: 'weblogic.socket.Muxer'" daemon [_thread_blocked, id=62, stack(0xffffffff3bc00000,0xffffffff3b
    d00000)]
    0x0000000104be4000 JavaThread "[STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'" daemon [_thread_blocked, id=61, stack(0xfff
    fffff3c000000,0xffffffff3c100000)]
    0x000000010504a800 JavaThread "weblogic.timers.TimerThread" daemon [_thread_blocked, id=60, stack(0xffffffff3c200000,0xffffffff3c300000)]
    0x0000000105506800 JavaThread "weblogic.time.TimeEventGenerator" daemon [_thread_blocked, id=59, stack(0xffffffff3c400000,0xffffffff3c500000)]
    =>0x0000000104505800 JavaThread "[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'" daemon [_thread_in_native, id=58, stack(0xff
    ffffff3c800000,0xffffffff3c900000)]
    0x0000000105428800 JavaThread "Timer-1" daemon [_thread_blocked, id=57, stack(0xffffffff3ca00000,0xffffffff3cb00000)]
    0x0000000104510800 JavaThread "Timer-0" daemon [_thread_blocked, id=56, stack(0xffffffff3de00000,0xffffffff3df00000)]
    0x000000010304f800 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=54, stack(0xffffffff71900000,0xffffffff71a00000)]
    0x000000010304a800 JavaThread "CompilerThread1" daemon [_thread_blocked, id=53, stack(0xffffffff71b00000,0xffffffff71c00000)]
    0x0000000103047800 JavaThread "CompilerThread0" daemon [_thread_blocked, id=52, stack(0xffffffff71d00000,0xffffffff71e00000)]
    0x0000000103045800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=51, stack(0xffffffff71f00000,0xffffffff72000000)]
    0x0000000103023000 JavaThread "Finalizer" daemon [_thread_blocked, id=50, stack(0xffffffff72300000,0xffffffff72400000)]
    0x000000010301a000 JavaThread "Reference Handler" daemon [_thread_blocked, id=49, stack(0xffffffff72500000,0xffffffff72600000)]
    0x0000000100118000 JavaThread "main" [_thread_blocked, id=2, stack(0xffffffff7c400000,0xffffffff7c500000)]
    Other Threads:
    0x0000000103016000 VMThread [stack: 0xffffffff72700000,0xffffffff72800000] [id=48]
    0x0000000103063000 WatcherThread [stack: 0xffffffff71700000,0xffffffff71800000] [id=55]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    PSYoungGen total 146432K, used 27627K [0xffffffff65800000, 0xffffffff6f400000, 0xffffffff70400000)
    eden space 135168K, 12% used [0xffffffff65800000,0xffffffff667fff00,0xffffffff6dc00000)
    from space 11264K, 99% used [0xffffffff6e900000,0xffffffff6f3fb0b0,0xffffffff6f400000)
    to space 11264K, 0% used [0xffffffff6de00000,0xffffffff6de00000,0xffffffff6e900000)
    PSOldGen total 176128K, used 3366K [0xffffffff50000000, 0xffffffff5ac00000, 0xffffffff65800000)
    object space 176128K, 1% used [0xffffffff50000000,0xffffffff50349988,0xffffffff5ac00000)
    PSPermGen total 131072K, used 31029K [0xffffffff40000000, 0xffffffff48000000, 0xffffffff50000000)
    object space 131072K, 23% used [0xffffffff40000000,0xffffffff41e4d620,0xffffffff48000000)
    Dynamic libraries:
    0x0000000100000000 /usr/jdk/instances/jdk1.6.0/bin/sparcv9/java
    0xffffffff7f700000 /lib/64/libthread.so.1
    0xffffffff7f200000 /usr/jdk/instances/jdk1.6.0/bin/sparcv9/../../jre/lib/sparcv9/jli/libjli.so
    0xffffffff7f000000 /lib/64/libdl.so.1
    0xffffffff7ed00000 /lib/64/libc.so.1
    0xffffffff7ec00000 /platform/SUNW,T5240/lib/sparcv9/libc_psr.so.1
    0xffffffff7dc00000 /usr/jdk/instances/jdk1.6.0/jre/lib/sparcv9/server/libjvm.so
    0xffffffff7e900000 /lib/64/libsocket.so.1
    0xffffffff7eb00000 /usr/lib/64/libsched.so.1
    0xffffffff7da00000 /lib/64/libm.so.1
    0xffffffff7d800000 /usr/lib/64/libCrun.so.1
    0xffffffff7d600000 /lib/64/libdoor.so.1
    0xffffffff7d400000 /lib/64/libnsl.so.1
    0xffffffff7d200000 /lib/64/libm.so.2
    0xffffffff7d000000 /lib/64/libscf.so.1
    0xffffffff7ce00000 /lib/64/libuutil.so.1
    0xffffffff7cc00000 /lib/64/libgen.so.1
    0xffffffff7ca00000 /lib/64/libmd.so.1
    0xffffffff7c800000 /platform/SUNW,T5240/lib/sparcv9/libmd_psr.so.1
    0xffffffff7c600000 /lib/64/libmp.so.2
    0xffffffff7c200000 /usr/jdk/instances/jdk1.6.0/jre/lib/sparcv9/libverify.so
    0xffffffff7c000000 /usr/jdk/instances/jdk1.6.0/jre/lib/sparcv9/libjava.so
    0xffffffff7be00000 /usr/jdk/instances/jdk1.6.0/jre/lib/sparcv9/native_threads/libhpi.so
    0xffffffff7ba00000 /usr/jdk/instances/jdk1.6.0/jre/lib/sparcv9/libzip.so
    0xffffffff72100000 /usr/lib/locale/en_US.ISO8859-15/sparcv9/en_US.ISO8859-15.so.3
    0xffffffff3dc00000 /usr/jdk/instances/jdk1.6.0/jre/lib/sparcv9/libnet.so
    0xffffffff3da00000 /usr/jdk/instances/jdk1.6.0/jre/lib/sparcv9/libnio.so
    0xffffffff3d800000 /lib/64/librt.so.1
    0xffffffff3d600000 /lib/64/libaio.so.1
    0xffffffff3d400000 /usr/jdk/instances/jdk1.6.0/jre/lib/sparcv9/libj2pkcs11.so
    0xffffffff3d200000 /usr/lib/sparcv9/libpkcs11.so
    0xffffffff3d000000 /usr/lib/64/libcryptoutil.so.1
    0xffffffff3ce00000 /usr/lib/security/64/pkcs11_kernel.so
    0xffffffff3cc00000 /usr/lib/security/64/pkcs11_softtoken.so
    0xffffffff3c600000 /usr/jdk/instances/jdk1.6.0/jre/lib/sparcv9/libmanagement.so
    0xffffffff3be00000 /home/firul/Oracle/Middleware/wlserver_10.3/server/native/solaris/sparc64/libmuxer.so
    VM Arguments:
    jvm_args: -Xms256m -Xmx512m -XX:CompileThreshold=8000 -XX:PermSize=128m -XX:MaxPermSize=256m -Dweblogic.Name=AdminServer -Djava.security.policy=/home/firul/O
    racle/Middleware/wlserver_10.3/server/lib/weblogic.policy -Xverify:none -da -Dplatform.home=/home/firul/Oracle/Middleware/wlserver_10.3 -Dwls.home=/home/firu
    l/Oracle/Middleware/wlserver_10.3/server -Dweblogic.home=/home/firul/Oracle/Middleware/wlserver_10.3/server -Dweblogic.management.discover=true -Dwlw.iterati
    veDev= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=/home/firul/Oracle/Middleware/patch_wls1034/profiles/default/sysext_manifest_classpat
    h:/home/firul/Oracle/Middleware/patch_ocp360/profiles/default/sysext_manifest_classpath
    java_command: weblogic.Server
    Launcher Type: SUN_STANDARD
    Environment Variables:
    JAVA_HOME=/usr/jdk/jdk1.6.0_21
    CLASSPATH=/home/firul/Oracle/Middleware/patch_wls1034/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/home/firul/Oracle/Middleware/patch_ocp360/p
    rofiles/default/sys_manifest_classpath/weblogic_patch.jar:/usr/jdk/jdk1.6.0_21/lib/tools.jar:/home/firul/Oracle/Middleware/wlserver_10.3/server/lib/weblogic_
    sp.jar:/home/firul/Oracle/Middleware/wlserver_10.3/server/lib/weblogic.jar:/home/firul/Oracle/Middleware/modules/features/weblogic.server.modules_10.3.4.0.ja
    r:/home/firul/Oracle/Middleware/wlserver_10.3/server/lib/webservices.jar:/home/firul/Oracle/Middleware/modules/org.apache.ant_1.7.1/lib/ant-all.jar:/home/fir
    ul/Oracle/Middleware/modules/net.sf.antcontrib_1.1.0.0_1-0b2/lib/ant-contrib.jar:/home/firul/Oracle/Middleware/wlserver_10.3/common/derby/lib/derbyclient.jar
    :/home/firul/Oracle/Middleware/wlserver_10.3/server/lib/xqrl.jar
    PATH=/home/firul/Oracle/Middleware/wlserver_10.3/server/bin:/home/firul/Oracle/Middleware/modules/org.apache.ant_1.7.1/bin:/usr/jdk/jdk1.6.0_21/jre/bin:/usr/
    jdk/jdk1.6.0_21/bin:/usr/bin
    LD_LIBRARY_PATH=/usr/jdk/instances/jdk1.6.0/jre/lib/sparcv9/server:/usr/jdk/instances/jdk1.6.0/jre/lib/sparcv9:/usr/jdk/instances/jdk1.6.0/jre/../lib/sparcv9
    :/home/firul/Oracle/Middleware/patch_wls1034/profiles/default/native:/home/firul/Oracle/Middleware/patch_ocp360/profiles/default/native:/home/firul/Oracle/Mi
    ddleware/wlserver_10.3/server/native/solaris/sparc64:/home/firul/Oracle/Middleware/wlserver_10.3/server/native/solaris/sparc64/oci920_8
    SHELL=/usr/bin/ksh
    DISPLAY=localhost:12.0
    Signal Handlers:
    SIGSEGV: [libjvm.so+0x898598], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGBUS: [libjvm.so+0x898598], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGFPE: [libjvm.so+0x206420], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGPIPE: [libjvm.so+0x206420], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGXFSZ: [libjvm.so+0x206420], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGILL: [libjvm.so+0x206420], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGUSR1: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGUSR2: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGQUIT: [libjvm.so+0x7655b0], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIGHUP: [libjvm.so+0x7655b0], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIGINT: [libjvm.so+0x7655b0], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIGTERM: [libjvm.so+0x7655b0], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIG39: [libjvm.so+0x768978], sa_mask[0]=0x00000000, sa_flags=0x00000008
    SIG40: [libjvm.so+0x206420], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    --------------- S Y S T E M ---------------
    OS: Oracle Solaris 10 9/10 s10s_u9wos_14a SPARC
    Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
    Assembled 11 August 2010
    uname:SunOS 5.10 Generic_142909-17 sun4v (T2 libthread)
    rlimit: STACK 8192k, CORE infinity, NOFILE infinity, AS infinity
    load average:1.52 1.71 1.61
    CPU:total 128 has_v8, has_v9, popc, has_vis1, has_vis2, is_ultra3, is_sun4v, is_niagara1, is_niagara1_plus
    Memory: 8k page, physical 268206080k(73610288k free)
    vm_info: Java HotSpot(TM) 64-Bit Server VM (17.0-b16) for solaris-sparc JRE (1.6.0_21-b06), built on Jun 22 2010 01:23:25 by "" with Workshop 5.8
    time: Tue Mar 29 13:58:52 2011
    elapsed time: 15 seconds
    Edited by: AdrianPaleacu on Mar 30, 2011 3:49 PM

    a) First check your hard and soft 'ulimit' value, using commands "ulimit -H -n" and "ulimit -S -n"
    b) If it is unlimited, set it to a fixed value such as 65536. Example:
    ulimit -Sn 65536
    ulimit -Hn 65536
    (Check with your Solaris Administrator if you need further help with this step)
    c) Restart web server.
    d) Re-run command "ulimit -H -n" to verify setting was changed
    e) Then restart WebLogic PIA to validate that the issue is resolved.

  • Acroread 8.1.2 fontconfig/gtk+ errors Solaris 9 (SunOS 5.9)

    I have been trying to get Adobe Reader 8.1.2 to run on a 64-bit SPARC
    Solaris 9 (SunOS 5.9) system for the past week. I started trying to
    upgrade all necessary dependencies, including GTK+ 2.12.x, from
    sunfreeware.com and then using pkg-get.
    No matter how I set my permissions or system vars, I either get an error
    about a poorly configured fontconfig library (though I have tried
    'fc-cache -f -v <several_different_paths_with_font_directory_or_file_containing_.pcf.Z_files>', and 'fc-cache -f -v' a gazillion times),
    or I get the error "GTK+ UI Toolkit libraries, ver. 2.4.9 or greater were
    not found.".
    Below is my current $PATH and $LD_LIBRARY_PATH values as determined by my
    .bashrc file (note that I did change the name of the user and computer for
    security purposes):
    user@computer$ echo $PATH
    /SGE/bin/sol-sparc64:/opt/SUNWspro/bin:/usr/ccs/bin:/SGE/bin:/SGE/bin/sol-s
    parc64:/SGE/lib/sol-sparc64:/usr/local/teTeX/bin/sparc-sun-solaris2.9:/usr/
    ucb/:/usr/xpg4/bin/:/usr/local/bin/:/usr/jdk/jdk1.6.0_04/bin:/public/progra
    ms/simulations:/usr/sfw/bin:/opt/csw/bin:/home/user/Adobe/Reader8/bin:/usr/
    bin:/usr/bin::/usr/openwin/bin:/bin:/usr/ucb:/usr/dt/bin:/usr/openwin/bin
    user@computer$ echo $LD_LIBRARY_PATH
    /usr/csw/lib:/usr/local/lib:/home/user/Adobe/Reader8/Reader/sparcsolaris/li
    b/:/SGE/bin/sol-sparc64:/opt/SUNWspro/bin:/usr/ccs/bin:/SGE/bin:/SGE/bin/so
    l-sparc64:/SGE/lib/sol-sparc64:/usr/local/teTeX/bin/sparc-sun-solaris2.9:/u
    sr/ucb/:/usr/xpg4/bin/:/usr/local/bin/:/usr/jdk/jdk1.6.0_04/bin:/public/pro
    grams/simulations:/usr/sfw/bin:/opt/csw/bin:/home/user/Adobe/Reader8/bin:/u
    sr/bin:/usr/bin::/usr/openwin/bin:/bin:/usr/ucb:/usr/dt/bin:/usr/openwin/bi
    n:/SGE/lib/sol-sparc64
    If I try to run acroread as a user I get the errors shown below. If I try
    to run acroread as root, I either get the fontconfig error shown below, or
    the GTK+ UI Toolkit error mentioned above:
    user@computer$ /home/user/Adobe/Reader8/bin/acroread
    rm: /home/user/.adobe/Acrobat/8.0/Preferences/mozilla/prefs.js not removed: Permission denied
    rm: Unable to remove directory /home/user/.adobe/Acrobat/8.0/Preferences/mozilla: File exists
    cp: cannot create /home/user/.adobe/Acrobat/8.0/Preferences/mozilla/prefs.js: Permission denied
    No fonts found; this probably means that the fontconfig
    library is not correctly configured. You may need to
    edit the fonts.conf configuration file. More information
    about fontconfig can be found in the fontconfig(3) manual
    page and on http://fontconfig.org
    user@computer$
    Also, I have had to remove some file from ~/Adobe/Reader8/Reader/sparcsolaris/lib and link them to libs of the same
    name on my system (as suggested to someone, on these forums, trying to install Reader 8.1.1. The entry even says then problems have been fixed
    for Reader 8.1.2!):
    libgcc_s.so.1 -> /usr/local/lib/libgcc_s.so.1
    libpangoxft-1.0.so.0 -> /usr/local/lib/libpangoxft-1.0.so.0.1800.2
    What do i do?

    Thank you, Gauvrav! I can now launch acroread as a non-root user from a terminal. The user did not have write access to the .adobe directory. As for the GTK libraries, I realized I was using /usr/csw/lib instead of /opt/csw/lib...
    If I double click on the acroread sh script icon in nautilus, I still get errors about GTK libraries. I tried updating the files in /usr/lib/, /usr/lib/sparcv9/ and /usr/local/lib, by copying some of what is in the /opt/csw/lib folder and recreating the proper links, but that just made most of my account unusable.
    Any ideas on how to properly update nautilus?

  • Regarding ClearCase migration from SunOS 5.8 to SunOS 10

    Hi All,
    We are in need to migrate our current ClearCase 2002.05.00 from SunOS 5.8 to SunOS 10 (UNIX)
    Cam any one suggest me the best way to migrate …??
    Thanks in advance.

    Since you are jumping several compiler releases and two Solaris releases, you should migrate in two steps.
    1. Get your application working with Sun Studio 11 on Solaris 8.
    2. You can now run that application on Solaris 10, or you can rebuild it on Solaris 10 and then run it.
    An application built on Solaris 8 will run on Solaris 9 and 10.
    An application built on Solaris 10 cannot be run on Solaris 8 or 9.
    We promise upward binary compatibility, allowing an old binary to be used with a newer compiler or on a newer Solaris. But we can't promise source code compatibility because we don't want to have to duplicate old bugs in old compilers.
    C++ 5.8 in Sun Studio 11 detects errors that older compilers might have missed. The rules about where to use "typename" are one example.
    I would not expect the warning about typename to be generated by either of the source code lines that you show, but I can't really tell without seeing a compilable example.
    You need to use typename when you use a type that depends on a template parameter. Example:
    template <class T> class C1 {
    public:
        typedef T Type;
    template <class T> class C2 {
    public:
        typename T::Type a;
    C2< C1<int> > c2i;If in C2 you do not specify typename, the compiler does not know whether T::Type is intended to be the name of a type. If it is not a type, the code is always invalid. The C++ rule is that if an an identifier is not known to be a type, it is not a type. You use typename to tell the compiler that T::Type is supposed to be the name of a type.

  • JDK1.5.0_06 Installation problem on SunOS 5.8 with sparc9

    I've downloaded jdk-1_5_0_06-solaris-sparcv9.sh (for 64-bit). Then made it executable. Run it. Some licence text was shown, but then:
    ...bla-bla-bla...
    Agreement. "Programs" mean Java applets and applications intended to
    run on the Java 2 Platform Standard Edition (J2SE platform) platform
    on Java-enabled general purpose desktop computers and servers.
    Do you agree to the above license terms? [yes or no]
    yes
    Unpacking...
    Checksumming...
    1
    The download file appears to be corrupted. Please refer
    to the Troubleshooting section of the Installation
    Instructions on the download page for more information.
    Please do not attempt to install this archive file.
    Please, tell me, what should I do?
    I copy flashget downloader & explorer's one to my windows machine and then via WinSCP to Unix SunOS.
    May be that is not downloading problem?

    never mind...
    I created a new project and instead of picking regular java app, I selected web.
    That seem to set up jars from Tomcat....
    it's working now.
    I need to drill this down a bit further. Still a bit lost.

  • Slow System Performance on SunOS 5.10

    Dear all,
    Our system experienced very slow response time a few days ago. After checking the wp trace file, we found the oracle is out of memory and there were some malloc failed(not enough space). Our system is ECC6 SR3 SP 16 and Oracle 10g dbase with RAM 4GB and swap 16 GB on container of SunOS 5.10.
    My assumption when the process running out of memory, it should retrieve from virtual memory. At command vmstat -s the output of swap in/out and pages swapped in/out is zero. Guess problem with vm of container. Anyone can help? Thanks.

    Hi,
    Please refer the following SAP Notes:
    [  Note 570375 - SAP on Sun Solaris: Swap Space and Paging|https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=570375]
    [Note 39412 - How many work processes to configure|https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=39412]
    [Note 425207 - SAP memory management, current parameter ranges|https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=425207]
    [Note 830576 - Parameter recommendations for Oracle 10g|https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=830576]
    [ Note 838240 - Oracle Database 10g: Operating Systems Requirements Solaris|https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=838240]
    [ Note 618868 - FAQ: Oracle performance|https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=618868]
    Regards,
    Bhavik G. shroff

  • Memory leak in Solaris - SunOS 5.7, jre1.3.1

    Hi,
    I hava a java application that spawns about 100 threads. Each thread sends a request to WebLogic server 6.1. We are using Oracle 8.1.7. They are all running in a Sun box, 2 CPUs and 6gig memory.
    JRE = 1.3.1
    SunOS = 5.7
    Weblogic = 6.1
    Oracle = 8.1.7
    (All running on the same box)
    When we start the client application, running top shows that ,
    the client JVM process - uses 40 MB of memory
    WebLogic - uses 250 MB of memory
    But the available memory comes down drastically (almost by 350 MB), and on bringing both the client and weblogic down, we are not able to get this 350 MB back
    Running JProbe, doen not show any memory leak in our application
    we are using the hotspot client version
    -Xms = 128m
    -Xmx = 128m
    Any help is appreciated

    It looks like i am also facing the same problem with my application . If by some chance you were able to solve this problem do send a mail to [email protected] I just posted the question. while searching the web i found your question which looks similar but not answered. Hope you could give me some input
    Thanks

Maybe you are looking for

  • How do I export an iMovie project on to my iPhone 5 so I can upload to YouTube ?

    I've been having issues on trying to easily export my iMovie project ,it's my first time using iMovie and I'm having trouble and I need help!

  • ISE 1.3 Guest Activity

    Hello, is in the ise version 1.3 a possiblity that I can display the Guest Activity and export it via FTP? What I'd like to see is: Which user opens which website/service. What kind of activity is the guest doing during he is using our guest wifi. Re

  • Actual Cost Adjustments

    Hi everybody I am not clear about the calculation in Actual Cost Adjustment function of Oracle. In detail, there are 3 types: Value Adjustment, Unit Cost Adjusment and Average Cost Adjustment, the diference here? If someone knew, please tell me or sh

  • Fract/Exp String to Numbe Display Format

    I have a Numeric String which has a large decimal value, with the Digits of precision ranging upto 16 digits. I want to convert this String to a Numeric value and I have used a 'Fract/Exp String to Number'. In my VI I hae set: Data Type: EXT (because

  • Register TANDBERG MXP 6000 over SIP

    Hi, i have MXP6000 with 9.1 software. Cant make it register with SIP. No single packet comes from MXP to server. Has anyone been able to make it register with SIP server? Config is quite simple: xConfiguration Conference SIP URI: "[email protected]"