Japanese locale on Solaris 8

I have a Solaris 8 machine, on which I have a web application that takes up data stored in UTF-8 from Oracle and shows that on a web page in SHIFTJIS encoding.
This application displays the data correctly when run on windows machine but gives problem on Solaris 8.
Any ideas?

you only need libumem if the program that generated the core file had
loaded libumem.
libumem is available from Solaris 9 and is an alternative malloc library that works like the kernel memory allocator allowing good debugging and memory leak checking amongst its benefits. If you need libumem features to be able to debug the program then you will need some
new core files with libumem loaded ( solaris 9 and later).
to see what libraries were loaded in your program before the core files use "pldd core"
to see the stack traces run "gcore core"
to debug the cores use "mdb program core"
tim

Similar Messages

  • In Japanese locale setVisible(true) consumes large memory

    In JAPANESE locale - Swap space/memory usage grows enormously when setVisible(true) method is called.
    Problem :
    We are developing / converting a product in JAVA built with AWT components in JAPANESE locale. While testing our product, we observed that memory usage (Total VSS column in EnglishResult.txt & JapaneseResult.txt) and Swap space used growing continuously using ?GLANCE? tool, and it was found that setVisible(true) (For any component like Frame, Dialog etc.,) method consumes large amount of memory.
    To ensure this problem, the following ?Operation Memory? test was carried out with a sample application in the below mentioned combination of configuration and platforms.
    Java Language : JRE 1.3.1 (Hotspot Client) , JRE 1.2.2 , JRE 1.1.8
    Locale : Japanese (ja , ja_JP.PCK , ja_JP.UTF-8 , ja_JP.EUCJP , Japanese)
    OS          : Solaris 8 ? 256 MB RAM , Swap Space 1 GB
    Operation Memory:
    1.     Execute the application
    2.     Press the ?Show? button
    3.     After a dialog is appeared , press the ?Hide? button
    4.     Repeat the steps 2 & 3 for 3 times.
    5.     Repeat step 4 for 3 times.
    The data is collected at the following points using GLANCE tool and the result is shown in EnglishResult.txt (Data of English Locale), JapaneseResult.txt (Data of Japanese locale).
    1.     After Step 1
    2.     After Step 4 ( 3 times)
    In the attached result it is found that for every 3 times of opening and closing the dialog , there is an increase of 1 MB of swap space used & Total VSS , where as in the original product that we have developed , for every opening and closing of dialog there is an increase of 7MB ,
    We observed the ?memory growing? behavior in all JRE versions and all Japanese locales .How ever we attaching data collected only in JRE 1.3.1, ja_JP.EUCJP, Solaris 8.
    using GLANCE tool.
    1)ResultJapanese.Txt ? Data collected in Japanese locale
    2)ResultEnglish.Txt - Data collected in English Locale
    This behavior is NOT observed if the locale is set to English.
    Kindly suggest us to overcome the above said problem in JAPANESE locale.
    Sample Java Code (Mem.java)
    import java.awt.*;
    import java.awt.event.*;
    public class mem
         public static void main(String arg[])
              showframe sf = new showframe();
              sf.setSize(300,300);
              sf.show();
    class showframe extends Frame implements ActionListener
         Button b1,b2;
         tpframe tpf ;
         showframe()
              tpf = new tpframe();
              b1 = new Button("show");
              b2 = new Button("hide");
              setLayout(new FlowLayout());
              add(b1);     add(b2);
              b1.addActionListener(this);
              b2.addActionListener(this);
         public void actionPerformed(ActionEvent ae)
              if(ae.getSource()==b1)
                   tpf = new tpframe();
                   tpf.setVisible(true);
              if(ae.getSource()==b2)
                   tpf.setVisible(false);
    class tpframe extends Frame
         TextField tx1,tx2,tx3,tx4 ;
         tpframe()
              Panel p1 = new Panel();
              Label lb1 = new Label("first tab panel");
              tx1 = new TextField("ONEONE");
              tx2 = new TextField("ONEONE");
              tx3 = new TextField("ONEONE");
              tx4 = new TextField("ONEONE");
              p1.setLayout(new FlowLayout());
              p1.add(lb1);
    p1.add(tx1);p1.add(tx2);
    p1.add(tx3);p1.add(tx4);
              add(p1,BorderLayout.CENTER);
              setSize(300,300);
    JapaneseResult.txt (Data collected using GLANCE tool in Japanese locale)
    ========================================================================
    B3694A GlancePlus C.03.10.00 04:17:58 nucleus sun4m Current Avg High
    CPU Util S SUU | 16% 22% 60%
    Disk Util | 0% 1% 3%
    Mem Util SSU U | 42% 42% 42%
    Swap Util U URR | 12% 11% 12%
    Memory Regions PID: 6521, java PPID: 6485 User: root
    Type RefCnt VSS VirtAddress File Name
    TEXT /S 4 24kb 0x00010000 <reg,ufs,i...xf67c61e8>
    BSS /S 4 4kb 0x00025000 <reg,ufs,i...xf67c61e8>
    SHMEM /S 1 2.8mb 0x00026000 <shmem>
    SHMEM /S 1 2.1mb 0xe4000000 <shmem>
    SHMEM /S 1 4.9mb 0xe4220000 <shmem>
    SHMEM /S 1 1.4mb 0xe4710000 <shmem>
    SHMEM /S 1 55.6mb 0xe4870000 <shmem>
    SHMEM /S 1 2.5mb 0xe8000000 <shmem>
    Text VSS: 24kb Data VSS: 4kb Stack VSS: 512kb
    Shmem VSS: 144mb Other VSS: 27mb Total VSS: 37mb
    B3694A GlancePlus C.03.10.00 04:17:58 nucleus sun4m Current Avg High
    CPU Util S SUU | 16% 22% 60%
    Disk Util | 0% 1% 3%
    Mem Util SSU U | 42% 42% 42%
    Swap Util U URR | 12% 11% 12%
    SWAP SPACE Users= 6
    Swap Device Type Avail (mb) Used (mb)
    /dev/dsk/c0t3d0s1 device 514mb 0mb
    pseudo-swap memory 224mb 64mb
    Swap Avail: 738mb Swap Used: 64mb Resvd Util (%): 12 Swap Reserved: 85mb
    *********** after the dialog is shown for the first time ***********
    B3694A GlancePlus C.03.10.00 04:19:22 nucleus sun4m Current Avg High
    CPU Util SSUU | 6% 20% 85%
    Disk Util | 0% 0% 3%
    Mem Util SSU U | 43% 42% 43%
    Swap Util U URR | 12% 11% 12%
    Memory Regions PID: 6521, java PPID: 6485 User: root
    Type RefCnt VSS VirtAddress File Name
    TEXT /S 4 24kb 0x00010000 <reg,ufs,i...xf67c61e8>
    BSS /S 4 4kb 0x00025000 <reg,ufs,i...xf67c61e8>
    SHMEM /S 1 4.0mb 0x00026000 <shmem>
    SHMEM /S 1 2.1mb 0xe4000000 <shmem>
    SHMEM /S 1 4.9mb 0xe4220000 <shmem>
    SHMEM /S 1 1.4mb 0xe4710000 <shmem>
    SHMEM /S 1 55.6mb 0xe4870000 <shmem>
    SHMEM /S 1 2.5mb 0xe8000000 <shmem>
    Text VSS: 24kb Data VSS: 4kb Stack VSS: 512kb
    Shmem VSS: 145mb Other VSS: 27mb Total VSS: 38mb
    Swap Device Type Avail (mb) Used (mb)
    /dev/dsk/c0t3d0s1 device 514mb 0mb
    pseudo-swap memory 224mb 66mb
    Swap Avail: 738mb Swap Used: 66mb Resvd Util (%): 12 Swap Reserved: 88mb
    *********** after opening and closing the dialog 3 times ********
    B3694A GlancePlus C.03.10.00 04:20:25 nucleus sun4m Current Avg High
    CPU Util S SU U | 18% 20% 85%
    Disk Util | 0% 0% 3%
    Mem Util SSU U | 43% 42% 43%
    Swap Util U URR | 12% 11% 12%
    Memory Regions PID: 6521, java PPID: 6485 User: root
    Type RefCnt VSS VirtAddress File Name
    TEXT /S 4 24kb 0x00010000 <reg,ufs,i...xf67c61e8>
    BSS /S 4 4kb 0x00025000 <reg,ufs,i...xf67c61e8>
    SHMEM /S 1 4.9mb 0x00026000 <shmem>
    SHMEM /S 1 2.1mb 0xe4000000 <shmem>
    SHMEM /S 1 4.9mb 0xe4220000 <shmem>
    SHMEM /S 1 1.4mb 0xe4710000 <shmem>
    SHMEM /S 1 55.6mb 0xe4870000 <shmem>
    SHMEM /S 1 2.5mb 0xe8000000 <shmem>
    Text VSS: 24kb Data VSS: 4kb Stack VSS: 512kb
    Shmem VSS: 146mb Other VSS: 27mb Total VSS: 39mb
    Swap Device Type Avail (mb) Used (mb)
    /dev/dsk/c0t3d0s1 device 514mb 0mb
    pseudo-swap memory 224mb 67mb
    Swap Avail: 738mb Swap Used: 67mb Resvd Util (%): 12 Swap Reserved: 89mb
    **************** opening and closing for next 3 times ( total 6 times ) **********
    B3694A GlancePlus C.03.10.00 04:21:26 nucleus sun4m Current Avg High
    CPU Util S SUU | 9% 20% 85%
    Disk Util | 0% 0% 3%
    Mem Util SSU U | 43% 43% 43%
    Swap Util U URR | 12% 11% 12%
    Memory Regions PID: 6521, java PPID: 6485 User: root
    Type RefCnt VSS VirtAddress File Name
    TEXT /S 4 24kb 0x00010000 <reg,ufs,i...xf67c61e8>
    BSS /S 4 4kb 0x00025000 <reg,ufs,i...xf67c61e8>
    SHMEM /S 1 5.8mb 0x00026000 <shmem>
    SHMEM /S 1 2.1mb 0xe4000000 <shmem>
    SHMEM /S 1 4.9mb 0xe4220000 <shmem>
    SHMEM /S 1 1.4mb 0xe4710000 <shmem>
    SHMEM /S 1 55.6mb 0xe4870000 <shmem>
    SHMEM /S 1 2.5mb 0xe8000000 <shmem>
    Text VSS: 24kb Data VSS: 4kb Stack VSS: 512kb
    Shmem VSS: 147mb Other VSS: 27mb Total VSS: 40mb
    Swap Device Type Avail (mb) Used (mb)
    /dev/dsk/c0t3d0s1 device 514mb 0mb
    pseudo-swap memory 224mb 67mb
    Swap Avail: 738mb Swap Used: 67mb Resvd Util (%): 12 Swap Reserved: 89mb
    *********** after opening and closing the dialog 3 more times ( total 9 times )********
    EnglishResult.Txt (Data collected using GLANCE Tool in English locale)
    B3694A GlancePlus C.03.10.00 04:01:33 nucleus sun4m Current Avg High
    CPU Util S SUU | 17% 36% 100%
    Disk Util DD | 3% 1% 3%
    Mem Util SSU U | 35% 34% 35%
    Swap Util U URR | 9% 8% 9%
    Memory Regions PID: 6310, java PPID: 6264 User: root
    Type RefCnt VSS VirtAddress File Name
    TEXT /S 4 24kb 0x00010000 <reg,ufs,i...xf67c61e8>
    BSS /S 4 4kb 0x00025000 <reg,ufs,i...xf67c61e8>
    SHMEM /S 1 2.3mb 0x00026000 <shmem>
    SHMEM /S 1 2.1mb 0xe4000000 <shmem>
    SHMEM /S 1 4.9mb 0xe4220000 <shmem>
    SHMEM /S 1 1.4mb 0xe4710000 <shmem>
    SHMEM /S 1 55.6mb 0xe4870000 <shmem>
    SHMEM /S 1 2.0mb 0xe8000000 <shmem>
    SHMEM /S 1 30.0mb 0xe8200000 <shmem>
    SHMEM /S 1 516kb 0xeab40000 <shmem>
    SHMEM /S 1 516kb 0xeac00000 <shmem>
    Text VSS: 24kb Data VSS: 4kb Stack VSS: 512kb
    Shmem VSS: 143mb Other VSS: 26mb Total VSS: 35mb
    Swap Device Type Avail (mb) Used (mb)
    /dev/dsk/c0t3d0s1 device 514mb 0mb
    pseudo-swap memory 224mb 46mb
    Swap Avail: 738mb Swap Used: 46mb Resvd Util (%): 9 Swap Reserved: 67mb
    ************* after the dialog was opened for the first time **********
    B3694A GlancePlus C.03.10.00 04:03:39 nucleus sun4m Current Avg High
    CPU Util SSUU | 7% 19% 100%
    Disk Util | 0% 0% 3%
    Mem Util SSU U | 35% 35% 35%
    Swap Util U URR | 9% 8% 9%
    Memory Regions PID: 6310, java PPID: 6264 User: root
    Type RefCnt VSS VirtAddress File Name
    TEXT /S 4 24kb 0x00010000 <reg,ufs,i...xf67c61e8>
    BSS /S 4 4kb 0x00025000 <reg,ufs,i...xf67c61e8>
    SHMEM /S 1 2.3mb 0x00026000 <shmem>
    SHMEM /S 1 2.1mb 0xe4000000 <shmem>
    SHMEM /S 1 4.9mb 0xe4220000 <shmem>
    SHMEM /S 1 1.4mb 0xe4710000 <shmem>
    SHMEM /S 1 55.6mb 0xe4870000 <shmem>
    SHMEM /S 1 2.2mb 0xe8000000 <shmem>
    SHMEM /S 1 29.7mb 0xe8240000 <shmem>
    SHMEM /S 1 516kb 0xeab40000 <shmem>
    SHMEM /S 1 516kb 0xeac00000 <shmem>
    Text VSS: 24kb Data VSS: 4kb Stack VSS: 512kb
    Shmem VSS: 143mb Other VSS: 26mb Total VSS: 36mb
    Swap Device Type Avail (mb) Used (mb)
    /dev/dsk/c0t3d0s1 device 514mb 0mb
    pseudo-swap memory 224mb 46mb
    Swap Avail: 738mb Swap Used: 46mb Resvd Util (%): 9 Swap Reserved: 67mb
    ************ after open and close of dialog for 3 times **********
    B3694A GlancePlus C.03.10.00 04:05:38 nucleus sun4m Current Avg High
    CPU Util S SU U | 38% 15% 100%
    Disk Util | 0% 0% 3%
    Mem Util SSU U | 35% 35% 35%
    Swap Util U URR | 9% 8% 9%
    Memory Regions PID: 6310, java PPID: 6264 User: root
    Type RefCnt VSS VirtAddress File Name
    TEXT /S 4 24kb 0x00010000 <reg,ufs,i...xf67c61e8>
    BSS /S 4 4kb 0x00025000 <reg,ufs,i...xf67c61e8>
    SHMEM /S 1 2.3mb 0x00026000 <shmem>
    SHMEM /S 1 2.1mb 0xe4000000 <shmem>
    SHMEM /S 1 4.9mb 0xe4220000 <shmem>
    SHMEM /S 1 1.4mb 0xe4710000 <shmem>
    SHMEM /S 1 55.6mb 0xe4870000 <shmem>
    SHMEM /S 1 2.2mb 0xe8000000 <shmem>
    SHMEM /S 1 29.7mb 0xe8240000 <shmem>
    SHMEM /S 1 516kb 0xeab40000 <shmem>
    SHMEM /S 1 516kb 0xeac00000 <shmem>
    Text VSS: 24kb Data VSS: 4kb Stack VSS: 512kb
    Shmem VSS: 143mb Other VSS: 26mb Total VSS: 36mb
    Swap Device Type Avail (mb) Used (mb)
    /dev/dsk/c0t3d0s1 device 514mb 0mb
    pseudo-swap memory 224mb 46mb
    Swap Avail: 738mb Swap Used: 46mb Resvd Util (%): 9 Swap Reserved: 67mb
    *********** after opening and closing the dialog for next 3 times ( total-6 times) **********
    B3694A GlancePlus C.03.10.00 04:07:46 nucleus sun4m Current Avg High
    CPU Util SSU | 5% 13% 100%
    Disk Util | 0% 0% 3%
    Mem Util SSU U | 35% 35% 35%
    Swap Util U URR | 9% 8% 9%
    Memory Regions PID: 6310, java PPID: 6264 User: root
    Type RefCnt VSS VirtAddress File Name
    TEXT /S 4 24kb 0x00010000 <reg,ufs,i...xf67c61e8>
    BSS /S 4 4kb 0x00025000 <reg,ufs,i...xf67c61e8>
    SHMEM /S 1 2.3mb 0x00026000 <shmem>
    SHMEM /S 1 2.1mb 0xe4000000 <shmem>
    SHMEM /S 1 4.9mb 0xe4220000 <shmem>
    SHMEM /S 1 1.4mb 0xe4710000 <shmem>
    SHMEM /S 1 55.6mb 0xe4870000 <shmem>
    SHMEM /S 1 2.2mb 0xe8000000 <shmem>
    SHMEM /S 1 29.7mb 0xe8240000 <shmem>
    SHMEM /S 1 516kb 0xeab40000 <shmem>
    SHMEM /S 1 516kb 0xeac00000 <shmem>
    Text VSS: 24kb Data VSS: 4kb Stack VSS: 512kb
    Shmem VSS: 143mb Other VSS: 26mb Total VSS: 36mb
    Swap Device Type Avail (mb) Used (mb)
    /dev/dsk/c0t3d0s1 device 514mb 0mb
    pseudo-swap memory 224mb 46mb
    Swap Avail: 738mb Swap Used: 46mb Resvd Util (%): 9 Swap Reserved: 67mb
    *********** after open and close of dialog for the next 3 times ( total-9 times ) *********

    I have the same problem!
    Our program chews up memory like there is no tomorrow when opening and closing frames....
    I will try to start a new thread in this forum explaining our problems a bit more in depth. I have a strange feeling that the garbage collector doesn't do it's job as supposed to.

  • Differences between regular and Japanese localized

    What are the differences between regular JDeveloper 2.0 and
    Japanese localized versions ?
    I received regular JDeveloper 2.0 (Build 343) from the U.S.
    Is there any issue or limitation to use it in order to use
    Oracld RDBMS 8.0.5 & 8.1.5 created with character set JA16EUC
    running on Solaris ?
    I think there is no issue or limitation if we use it with
    NLS-zip.
    Or do we have to use Japanese localized versions ?
    Then what's the benefit of using it ?
    Any information about this would be much appreciated.
    Best regards,
    null

    The US JDeveloper version if used with Japanese fonts , or
    better with a Japanese NT will allow for display and input of
    Japanese text including when interacting with Oracle databases.
    This is the internationalization support and JDeveloper is
    internationalized for Japanese
    The only difference between the versions (other than a couple OS
    dependent bugs in the readme file) is that the Japanese version
    has a UI and documentation in Japanese as opposed to English.
    Hope this helps.
    Yoshikazu Ichitsuka (guest) wrote:
    : What are the differences between regular JDeveloper 2.0 and
    : Japanese localized versions ?
    : I received regular JDeveloper 2.0 (Build 343) from the U.S.
    : Is there any issue or limitation to use it in order to use
    : Oracld RDBMS 8.0.5 & 8.1.5 created with character set JA16EUC
    : running on Solaris ?
    : I think there is no issue or limitation if we use it with
    : NLS-zip.
    : Or do we have to use Japanese localized versions ?
    : Then what's the benefit of using it ?
    : Any information about this would be much appreciated.
    : Best regards,
    null

  • Installing japanese fonts on solaris 8 system

    Hi All
    I have installed the japanese locale on my sparc solaris system.
    If i type locale -a ,it gives all the available locale..
    But i dont know how to set up the japanese font on that system..
    if any body knows about this issue
    Thanks

    Hi.
    I carrier is AT&T but I downloaded EastAsian Language pack from Hong Kong CSL.
    When you complete the download, Go to "Start" - "My Computer" - "C:" - "Program Files" - "Common Files" - "Research In Motion" - "AppLoader" - delete "Vender.xml".Then, open the "Loader.exe" and connect Bold to PC.
    When you reach to "Device application selection" page, you will see "Japanese Romaji Input Method" Check "Japanese Romaji Input Method" under the "East Asian Language and Input Support" section.
    Please let me know if the above works for you.

  • Displaying English characters on a Japanese locale

    The application I am working is localized for Enlish and Japanese. I need to bring up the application in English on a Japanese locale ( OS ). I tried to use the command line parameters -DLocale.language en -DLocale.country US. Even then, I am not able to bring the application up in English, I comes up in Japanese.Is there some way to bring the app in English on a Japanese locale(OS)?
    I have also read about editing the font.properties file, Does somebody what needs to be added to render the app in English?
    Thanks,

    If you are using a Windows box, try the command
    CHCP 437
    which will change your OS locale to USA, and the command
    CHCP 932
    will revert the OS locale to Japan. It must be better first entering the simple command
    CHCP
    and confirm the current codepage of the OS.
    (Note that this reply is concerned with the OS property, not about Java.)

  • Setting up LOCALE in solaris sparc 10

    HI,
    Please let me know how to set the locale in solaris 10, whether it need to be set at a session level or OS level to install BO XI 3.1 SP3?
    What is the language (LANG) to set if LC_ALL is en_US.UTF-8.
    Thanks in Advance,
    Mani

    You have same post in another forum. I answered this question in the other post. Please refere it there:
    http://forum.java.sun.com/thread.jspa?threadID=5265020&tstart=0

  • Can I use "\" to input "¥" symbol under Japanese locale?

    Hi, I'm a Mac developer and I want to know the standard behavior for Mac when press "\" key under Japanese locale. Should Mac display "\" or "¥" symbol? I notice that Windows will show "¥", but many Mac applications just show "\", so I want to make clear is this is Mac's standard behavior.
    Another question is, how can I input "¥" under Japanese locale? Is "Opt+Y" the only choice I can choose?

    do you mean that binding a key to which character is just defined by the keyboard layout/input method? For example, if I input "\" through Kotoeri Hiragana input, it's that input's thing to decide what should output?
    Yes. The result of pressing a key with a particular symbol printed on it is determined by the .keylayout file or input method which is active at the time. Using the US physical keyboard with the input set to Kotoeri Hiragana, pressing the key marked \ produces へ in direct Kana mode or \ in the normal mode.

  • No Japanese locale on a machine with Japanese OS

    I am running a small test application on a Windows box with a Japanese version of XP running on it. The default locale correctly displays as Japanese (Locale.getDefault()). However, when I say Locale.getAvailableLocales() and display the results in a combo box, Japanese is not one of the available locales.
    In addition, when I try to format a date, with something like:
    Calendar c.setTime(new Date(System.currentTimeMillis()));
    DateFormat df = DateFormat.getDateTimeInstance(DateFormat.DEFAULT, DateFormat.DEFAULT, Locale.getDefault());
    String str += df.format(c.getTime());
    the date is still in English.
    How is it possible to be running on a Japanese OS and not have Japanese be one of the available locales in Java?
    Thanks very much.

    From Sun's locale support page (http://java.sun.com/j2se/1.5.0/docs/guide/intl/locale.doc.html):
    "Sun's J2SE Runtime Environment 5.0 for Windows may be installed as a complete international version or as a European languages version. The JRE installer by default installs a European languages version if it recognizes that the host operating system only supports European languages. If the installer recognizes that any other language is needed, or if the user requests support for non-European languages in a customized installation, a complete international version is installed. "
    and
    "The European languages version of the J2SE Runtime Environment 5.0 supports all locales for the following languages: Albanian, Belorussian, Bulgarian, Catalan, Croatian, Czech, Danish, Dutch, English, Estonian, Finnish, French, German, Greek, Hungarian, Icelandic, Italian, Latvian, Lithuanian, Macedonian, Norwegian, Polish, Portuguese, Romanian, Russian, Slovak, Slovenian, Spanish, Swedish, Turkish, Ukrainian."
    You might have the European languages version if you didn't use a default method of installing it on that Japanese system (which should have given you the full international version).

  • How do I add Chinese local after Solaris OS has been installed

    How do I add Chinese local after Solaris OS has been installed. right now on my
    /usr/lib/localedef/src I only have iso_8859_1
    Thank you

    Welcome to the Apple Support Communities
    1. To boot into Mac OS X, press X key while your computer is starting.
    2. Install Boot Camp drivers

  • Set Locale problem (Solaris)

    Hello all,
    I'm having problems to use the "pt_BR" locale at solaris. every time i try to start my weblogic with the locale set to pt_BR (LANG=pt_BR) i get an error message saying "could not set locale correctly".
    Anyone here can help me ??? (PLZ!!)
    Thank you

    every time i try to start my weblogic with
    the locale set to pt_BR (LANG=pt_BR) i get an error
    message saying "could not set locale correctly".Check if the variables listed by "locale" are set to a value listed by "locale -a" otherwise you might get the error message you mentioned.
    HTH Jochim

  • JFileChooser unable to show japanese files on solaris

    Hi,
    In our application we are using JFileChooser to choose a file. JFileChosser unable to show file that has names in japanese characters on solaris japanese os. Where as on windows it works fine.Plese help me about the above
    Thanks,
    Praveen

    Which JDK version you are using .. When i tried the example with default JDK(1.5) of my solaris box JFileChooser works fine .But we user JDK1.6 in our application. Hope there is some problem with the JDK.

  • Required locales on Solaris 10

    Hi,
    how can I know required locales for Solaris 10 for my SAP R/3 system 4.6C ASCII
    with :
    zcsa/installed_languages                    NEFDIS
    install/codepage/appl_server                1100 
    Regards.

    Start using SE38 the program RSCPINST, press on "Simulate" and check the button "check locales on operating system level".
    The check will tell you if you need to add something.
    All your languages use "ISO8859-1" (or ISO8859-15).
    Markus

  • Can't create a directory local in solaris

    In solaris 10 intel version, i tried to create folder name "local" under "usr" as I want to install mysql under "usr\local".
    But when i created, the error message is showing like this:
    :/usr>mkdir local
    mkdir: Failed to make directory "local"; Read-only file system
    any idea?
    How to fix and please help me.
    Thanks.

    As Robert said, the /usr file system is mounted as a loopback in the non-global zone, so any subdirectories to /usr will be mounted via loopback in the zone, and thus read-only. Check man zonecfg, Sun also has a long document online concerning containers and zones. Just google "zfs administration guide" and "zfs containers". Your other option is create the zone as a whole root zone, rather than a sparse root zone, which is what you have now.

  • Changing the locale in Solaris 10

    Hi All ,
    I have a system for current locale settings as :
    # locale -a
    C
    POSIX
    iso_8859_1
    The application requirement for a specific "locale" package (en_US.ISO8859-1)
    The system details are :
    more /etc/release
    Solaris 10 11/06 s10s_u3wos_10 SPARC
    Copyright 2006 Sun Microsystems, Inc. All Rights Reserved.
    Use is subject to license terms.
    Assembled 14 November 2006
    # pkginfo -l SUNWladm
    PKGINST: SUNWladm
    NAME: Locale Administrator
    CATEGORY: system
    ARCH: sparc
    VERSION: 11.10.0,REV=2004.12.21.13.47
    BASEDIR: /
    VENDOR: Sun Microsystems, Inc.
    DESC: Locale Administrator
    PSTAMP: ocelot920508173207
    INSTDATE: Jan 29 2008 08:21
    HOTLINE: Please contact your local service provider
    STATUS: completely installed
    FILES: 12 installed pathnames
    4 shared pathnames
    5 directories
    4 executables
    298 blocks used (approx)
    # pkginfo -l SUNWlccom
    PKGINST: SUNWlccom
    NAME: Localization common files
    CATEGORY: system
    ARCH: sparc
    VERSION: 10.0,REV=2004.12.08.17.24
    BASEDIR: /
    VENDOR: Sun Microsystems, Inc.
    DESC: localization common files
    INSTDATE: Feb 24 2007 13:53
    HOTLINE: Please contact your local service provider
    STATUS: completely installed
    FILES: 11 installed pathnames
    6 shared pathnames
    6 directories
    44 blocks used (approx)
    IF I do localeadm -l
    Checking for North America region (nam)
    (c_solaris packages)
    |..|
    Its exists stating the package is not available .
    Can someone help me with the Step by step procedure to resolve this requirement .
    Please let me know ..
    Thanks in advance ,
    Asad

    You need to install packages for Northern America (nam) or find out which package contains en_US.ISO8859-1 and install that.
    You can reference this post:
    [http://forums.sun.com/thread.jspa?threadID=5308427&tstart=90|http://forums.sun.com/thread.jspa?threadID=5308427&tstart=90]

  • Sun Live Upgrade with local zones Solaris 10

    I have M800 server running global root (/) fs on local disk and running 6 local zones on another local disk. I am running solaris 5.10 8/07.
    I used live upgrade to patch the system and created new BE (lucreate). Both root fs are mirror as RAID-1.
    When I ran lucreate, it copies all 6 local zones root fs to the global root fs and failed no enogh space.
    What is the best procedure to use lu with local zones.
    Note: I used lu with global zone only, and worked without any problem.
    regards,

    I have been trying to use luupgrade for Solaris10 on Sparc, 05/09 -> 10/09.
    lucreate is successful, but luactivate directs me to install 'the rest of the packages' in order to make the BE stable enough to activate. I try to find the packages indicated , but find only "virtual packages" which contain only pkgmap.
    I installed upgrade 6 on a spare disk to make sure my u7 installation was not defective, but got similar results.
    I got beyond luactivate on x86 a while ago, but had other snags which I left unattended.

Maybe you are looking for

  • Has a life on his own

    My iPad has a problem that comeback and goes, it has a life on his own. Think that you use your finger, and click like a maniac on the screen, fast as lightning, opening programs, edit settings, surf internet, writing etc etc.... I just let it have a

  • Mac Mini defaults to 640 by 480 and can't be reset?

    Hello fellow macfolks... I have a Mac Mini that I use only on an occasional basis. Tonight I connected it to my trusty, known-good NEC 20 inch monitor, and lo and behold, the mini boots up at 640 by 480 resolution with NO other choices in teh display

  • ICloud DST Issues With Outlook

    When I sync my Outlook Calendar into my iCloud Calendar all recurring events that existed before DST are off by 1 hour in iCloud but correct in Outlook. Any ideas? So for example I have a recurring event for a daily meeting. This meeting was created

  • Content Caching with NM-CE

    Hi Folks, My CE is currently running in our network for few days but we encouter some unusual symtoms like; 1) The web broswer will hang with a blank page without displaying any item. After a while, everything will come out instantaneously. For big w

  • Cuando le ingreso mi cuenta ID se cae la red

    tengo problemas con la señal de red, anteriormente mi iphone funcionaba bastante bien pero le instale el whatapp y dejo de funcionar, no puedo recibir ni realizar llamada, tengo datos.   intente restaurar el sistema, y llego la señal pero cuando ingr