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]

Similar Messages

  • DMP-4400G How can I change the local time

    Hi,
    Recently I installed DMS 5.0.2 and DMP-4400G for Digital Signage. Now I am running a Flash application that is embedded into a HTML page, but sometimes the DMP does not show the content of the flash, the LCD shows a temporary error; this error never occurs when I use a standard PC with any Internet browser to display the same content. The webmaster says that DMP does not have an updated time and date. Do you know how to change the local time and date of the DMP-4400G.
    Thanks for your help.

    Jhon,
    There are couple of things...
    1. The DMP 4400G has a internal clock but at this time there is no way to change the date & time on the DMP 4400G.
    What does the date & time have to do with the Flash Content anyway?
    2. What version & type of Flash is being used for this embedded Flash content? Is the correct version selected & configured on the DMP?
    Cheers!
    T.

  • How to change the locale in Safari?

    My iMac has a US version of OS X Tiger and I need to change the locale that Safari uses to the UK. I've tried changing the international settings but it has no effect on Safari. I've changed Firefox but I can't change Safari.
    Has anyone else faced this problem?
    iMac Intel   Mac OS X (10.4.4)  

    Hi and welcome to Apple Discussions....
    You may have duplicate or corrupted fonts.
    Follow the instructions here for help.
    Font problems and management in OS X
    Carolyn

  • Changing the locale of airport card

    Hello,
    I have a 12 inch G4 800ghz bought in the US. I want to get the airport to receive channel 13 but it currently only goes up to 11 as i have discovered that 12 and 13 are not legal in the US. Is there an easy way to get access or change the locale of the built in airport card?
    thanks and regards
    Richard Katz

    Hi, I had a similar problem,my internal airport card locale is U.S.A (bought on line) I'm in Australia and it was not compatable with my airport express wireless network, channel 13 by default, so I had to change the channel it broadcast on (airport express) to one between one and eleven and it worked fine.I think the reason you can't change the locale is explained in this post http://docs.info.apple.com/article.html?artnum=58567. It would be nice to still be able to change it though. Hope it helps.

  • Change the Locale settings when scheduling the report with an Excel format?

    Hi,
    My reports have been scheduled with Excel format, however, when the report is viewed in Excel, the date fields are in the format "mm/dd/yyyy" i.e. English(United States) and they need to be in the format "dd/mm/yyyy" i.e. English (Ireland).
    I am wondering if there is any way to change the Locale settings within Business Objects?
    For the time being users have been advised to manually change the format within excel, however, this is not the preferred option.
    Any ideas?

    Hi,
    Thanks for the reply.
    The cell format is set as "Date dd/mm/yyyy" but it still runs as an Excel doc with the format mm/dd/yyyy.
    When I schedule the report to run as a Web Intelligence document and then manually export it to Excel, the Date format is correct i.e. dd/mm/yyyy.
    Any more ideas?
    Regards.

  • Wrt1900ac (I changed the local ip of the router after a power outage)

    I changed the local ip of the router after a power outage,which brings me a lot of trouble because I have everything set up based on a class C network (192.168.1.x) and I changed it to a ip Type A (10.xxx), someone happens the same there any solution ?

    Hi juanmanuelvazquez. Have you tried to do a hard reset to the unit and reinstall it from scratch?  I suggest that you do so as power interruption normally brings the router back to default settings thereby messing up the network. To do the proper reset, please press down the reset button at the back of the router for 30 seconds while the device is powered on. Release the button and unplug the device. Reinstall everything from scratch.
    Hope that helps.

  • Change the locale Date Format

    Hi,
    By default the date formats in web dynpro applications changes with the locale. For the locale US, the date format comes with the seperator '/ ' for German with '.'.
    But we need to have the seperator '.' for all locales. Where can this standard setting be changed?
    Thanks & Regards,
    Syam.

    Hi,
    Refer the following link:
    Java Webdynpro Date Format
    This might be helpful to you.
    Regards,
    Jithin

  • Refresh control hints lables after change the locale

    Hello,
    I'm building a web application using ADF ( JSP/BC4J/STRUTS ).
    I want to give the user the facility to change the display language, so i made an event on a Data Action that change both HTTP session locale and Application Module session locale
    the code is :
    public void onChangeLang(DataActionContext ctx)
    Locale userLocale = getLocale(ctx.getHttpServletRequest());
    String newLang = "en";
    if ("en".equals(userLocale.getLanguage()))
    newLang = "ar";
    Locale newUserLocale = new Locale(newLang,"") ;
    setLocale(ctx.getHttpServletRequest(),newUserLocale);
    ctx.getBindingContainer().getDataControl().setLocaleContext(new DefLocaleContext(newUserLocale));
    ctx.getBindingContainer().refreshControl();
    The locale change correctly after executing this action , but the control hint labels remain as it is !!
    So how i can refresh these labels, or how i correctly change the user language based on his event ?

    Hi,
    anybody can help in this problem !!

  • How to change the local decimal separator on windows xp OS ?

    Hi all,
    I would like to known how to change programmatically with LV8.5 the local decimal separator ? I want to force this parameter to the point separator, so to be sure that it's not the comma (if it's the comma when installing the executable, the ascii files are not read properly).
    Thanks.
    Wilfried.

    GerdW wrote:
    Hi Wilfried,
    you can use the format code "%.;" to get points as decimal separator in each string formatting function.
    This is the important one. Put it at the beginning of every format specifier!
    Some functions have a boolean control 'use local decimator' make sure this is 'F'
    Ton
    Free Code Capture Tool! Version 2.1.3 with comments, web-upload, back-save and snippets!
    Nederlandse LabVIEW user groep www.lvug.nl
    My LabVIEW Ideas
    LabVIEW, programming like it should be!

  • Changing the locale

    Hi.
    I've got Arch setup pretty nicely, just my timezone and so forth is set to US when i'm in the UK. I've done a little digging and can't really see how to change timezone/input locale. Any ideas?

    Timezone
    /etc/rc.conf
    LOCALE="en_US.utf8"
    TIMEZONE=America/New_York
    local:
    /etc/local.gen
    Just use a text editor to edit either of these.

  • Need to change the local change request to development class for Process Ch

    Hello ,
    I have created a Tranport request for Process chain but its saved as local change request .
    Please suggest how to change that .
    Thanks ,
    Rahul

    Hi
    1.First delete the request which you collected the process chain as local object becuase you will not able to collect the process chian again.
    2. Goto Tranport connector to collect the process chain again.
    3. Select grouping option as necessary objects.
    4. Drag and drop the process chain to the right hand side
    5. After collecting the process chain, click on the package icon and give the package created for development class.
    6. The system will ask for Transport request and save the PC in the Transport Request.
    Hope it helps.
    Regards
    Sadeesh

  • Changing the local address used by HttpURLConnection

    Hi,
    I would like to make an HTTP connection to a remote server but using a different local IP address than the default one.
    For example, I am running my application on a web server which has several IP addresses the code below will open a connection to a web page using the default address but how can I get the HttpURLConnection implementation to use an alternative address?
       URL url = new URL("http://www.somedomain.com/another/webpage.html");
       URLConnection conn = url.openConnection();
       InputStream in = conn.getInputStream();
       ...

    More than one interface/ip on one machine? Shouldn't matter, unless they're going up and down like yoyos. IP will route via whichever one is appropriate.
    I found this
    (but haven't tried out...)Nor has that poster apparently. The DIRECT example just throws an IllegalArgumentException, and the HTTP approach requires you to write a local proxy server, which just shifts the problem (if any) in there.
    like vm launch parametersNo.

  • How to changing the time in solaris .

    I am having sun fire v880 servers with suncluster 3.0, in this i want to change time bcz time is going wrongly...

    I don't know if Sun Cluster interacts with it in some way, but the normal way to set the clock is with 'date'. The man page has the format that you use to describe the current time.
    In addition, many admins set up NTP to read the current time from an NTP server on the internet or one that they maintain internally.
    Darren

  • Need a script to change value in the Local Hostname

    Help! Want to change the Local Hostname because DynamicDNS has mess up 250 machines. Any ideas???????
    I need a UNIX script to to change the Value of
    /library/preference/SystemConfiguration/preferences.plist
    <key>LocalHostName</key>
    <string>Value</string>
    in Apple Remote Desktop.
    I think you use the grep command
    G5 Mac OS X (10.4.6) Mac OS X 10.3.9

    Hi CIO,
       Perl will perform the moving of files for you for free but otherwise, awk is completely up to the task and to my thinking easier to use. This assumes that the property list is text which isn't a good assumption. If the property list is binary, you would need plutil to convert it. Anyway, here's my script:
    cat /Library/Preferences/SystemConfiguration/preferences.plist | awk '{ if ( $0 ~ /<key>LocalHostName<\/key>/ ) { print; getline; sub(/<string>[^>*<\/string>/,"<string>New Value</string>"); print } else { print } }' > temp.plist
    mv /Library/Preferences/SystemConfiguration/preferences.plist .
    mv temp.plist /Library/Preferences/SystemConfiguration/preferences.plist
    The "mv" lines above will doubtless require superuser privileges.
    Gary
    ~~~~
       teamwork, n.:
          Having someone to blame.

  • Change the language (locale) of the Portal

    Hi everybody,
    I have to implement internationalization in my Portal.
    I do it throws bundle resources in my iview and throws Portal Content Translation for workset name.
    But now, I need to implement a iview in which there are 3 flag (english, french and german for example) and when a user clicks on one of these, this changes the Portal language.
    Do someone know how I can do that?
    I think I have to change the locale of the session on the button clic but I don't find how to di that ..
    Thanks,
    Fabien

    > Hey i used "if(language.equals("EN"))" coz some times
    > there is the need to implement all the languages say
    > English, german, etc...
    Of course it is, this is the whole sense of a ResourceBundle...
    http://java.sun.com/j2se/1.4.2/docs/api/java/util/ResourceBundle.html
    In portal components it's even simpler, just declare the bundle in the portalapp.xml and read strings as described here:
    http://help.sap.com/saphelp_nw04/helpdata/en/97/cd1e400191f72ee10000000a1550b0/frameset.htm
    What Fabien needs, is a component placed on the framework page that changes the user's locale.
    This is an example coding to change the language to french:
    public void doContent(IPortalComponentRequest request, IPortalComponentResponse response)
    try {
    IUserMaint mutableUser = userFactory.getMutableUser(request.getUser().getUniqueID());
                mutableUser.setLocale(Locale.FRENCH);
                mutableUser.commit();
    } catch (UMException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
    Regards, Karsten

Maybe you are looking for

  • NEED HELP!!! with my Micro Photo

    i need help i was having problems with my computer recognizing my Micro Photo so i was in to recovery menu so then i accidentally hit the reload firmware option and now i cant get it to work it only goes onto the Recovery Menu and i cant get the firm

  • Business explorer in sap bw

    while viewing reports in Busineess Explorer (BEx) if I set filter on one characteristic and navigate it shows the values,if i want to continue for a a second filter then also it works,and when I want to continue with any navigation or to set a filter

  • Handling Mouse Event

    How to access x and y co-ordinates when a mouse's left butto is clicked upon a JPG file whichis placed on a stage, so that we can view the jpeg contents on the stage? Please can anyone please send code to my mail.

  • Nokia Series 40 Theme Studio 2.2 serial number??

    hey! i just want to activate Nokia Series 40 Theme Studio 2.2 but i don't have a key! can some body tell me how plz? c ya

  • Is cRIO-9073 compatible with LabVIEW 8.5.1?

    I just received a cRIO-9073 and a cRIO-9074. When I configure them, both of them appear properly in MAX. When I add them to a LabVIEW project, the cRIO-9073 does not show its FPGA target. The cRIO-9074 does show it. I am using LabVIEW 8.5.1, is it co