Container for Solaris 10 applications

Hi
In my Lab, I am consolidating all the sparc servers into a T2000. All these machines are running Solaris 8, so it is very easy get a Solaris flar archive and create a new container with this flar archive into solaris 10 zone.
By the way, have two new servers with applications running in solaris 10.
Is there any easy way to migrate these new solaris 10 servers into the T2000 as I have done with the solaris 8 servers?
Is it the only way reinstall the solaris 10 application into a zone?
Thanks a million
Gui

Don't go back any farther though.
I've heard reports that prior to Solaris 9, the included in.tftpd lacks certain extensions that are required for PXEGRUB in Solaris 10 to work properly.
Darren

Similar Messages

  • How could you install 10g R2 Db EE using containers for Solaris?

    Do you know if there is a particular procedure in order to have my installation using Solaris' containers?
    First of all, what is a container for Solaris?
    Please could you give a reference to read about it?
    Thank you.
    Paola
    : (

    Hello Madrid!:
    My Oracle´s hero!, your are always a leader for us, the dbas who have just one passion talking about databases: Oracle.
    Well It is going to be hard, because I am not only installing Oracle inside a Solaris container but also migrating from Sybase to Oracle!
    But again I am acting as a leader, and being woman it is more difficult. I hope that I can see you later, in a course again, but it could be, at the end of this year, because I am not going to be in Mexico City, I am now studying Sybase in order to convert all the dbs to Oracle. I have already installed successfully with your recommendations. You are perfect.
    c u later my favorite OCM. I insist, what a beautiful last name you have.
    Paola.
    8 ) (wearing glasses)

  • What are strengths and weaknesses of the sap.m.Shell and sap.m.App as container for an application wrapper?

    My question today: What are strengths and weaknesses of the
    sap.m.Shell
    and
    sap.m.App
    as container for an application wrapper?
    I currently use non of them, but I see the advantages.
    SAP best practise is to use one of them or nest them as shell > app. What are strengths and weaknesses of the approaches?

    We prefer to say, the tender mercies of the Fetch block.
    You'll notice the "wfm info" cluster as an output of the Fetch
    VI.  This cluster has gain and offset members- use these to scale
    your binary data to floating point voltage representation.
    As you point out, the numbers won't be exactly what you expect given
    the vertical range and the device resolution.  There are a few
    reasons for this.  First, we don't use the absolute full scale of
    the ADC for the maximum input voltage.  There are a couple of
    codes of headroom at the top and bottom.  This allows your input
    signal to slightly exceed the specified vertical range without clipping
    (you'll get a warning from the driver).  Second, these gain and
    offset numbers take into account calibration information for your
    device.  Using these numbers will correct for small deviations
    from the ideal offset and gain.
    So if you use the gain and offset numbers from the driver, your
    measurements will be more accurate than if you assume 0 offset and
    perfect gain.  They will be most accurate if you make sure to
    perform a self-calibration once the device is in your system and at the
    temperature that your tests will be run.

  • OWB Real Application Cluster R2 for solaris

    Hi all,
    Can u give me the link from where i can download the software for OWB Real Appication Cluster for 10g R2 for solaris.
    Regards,
    Ram

    If you are going to use windows. I recommend you to use Oracle9i Rel.2 and use OCFS instead of Raw devices.
    Real Application Clusters Administration Contents / Search / Index / PDF
    Real Application Clusters Concepts Contents / Search / Index / PDF
    Real Application Clusters Deployment and Performance Contents / Search / Index / PDF
    Real Application Clusters Documentation Online Roadmap Contents / Search / /
    Real Application Clusters Real Application Clusters Guard I - Concepts and Administration Contents / Search / Index / PDF
    Real Application Clusters Real Applications Clusters Guard I Configuration Guide Release 2 (9.2.0.1.0) for UNIX Systems: AIX-Based Systems, Compaq Tru64 UNIX, HP 9000 Series HP-UX, and Sun Solaris Contents / Search / Index / PDF
    Real Application Clusters Setup and Configuration Contents / Search / Index / PDF
    http://otn.oracle.com/pls/db92/db92.docindex?remark=homepage
    Joel Pérez
    http://otn.oracle.com/experts

  • Memory Leak in 8.1.6.0.1 JDBC/OCI for Solaris

    Hello,
    there is a memory leak in the 8.1.6.0.1 JDBC-OCI driver for solaris.
    The leak causes your jvm to eat up all memory
    if you reuse callable statements
    (calling one statement multiple times with
    different values).
    The thin driver has no such problem. Is
    there any fix available ?

    Ok. The code spans multiple classes and
    most of it comes from a customized version
    of the Enhydra Java Application server.
    I have a class called "StandardDBConnection"
    which caches CallableStatements and is a
    wrapperclass for java.sql.DBConnection. The
    interesting method here is "prepareCall":
    * Get a callable statement given an SQL string. If the statement is
    * cached, return that statement, otherwise prepare and save in the
    * cache.
    * @param sql The SQL statement to be called.
    * @return a new CallableStatement object containing the
    * pre-compiled SQL statement.
    * @exception java.sql.SQLException If a database access error occurs
    * statement.
    public synchronized CallableStatement prepareCall(String sql)
    throws SQLException {
    PreparedStatement preparedStmt;
    logDebug ("Prepare call: " + sql);
    validate();
    preparedStmt = (PreparedStatement)preparedStmtCache.get(sql);
    // Check if the object returned by the cache really is a
    // callable statement. if it is not, someone did call first
    // prepareStatement() and now prepareCall() with the same
    // sql. Silently replace the existing cache entry by a
    // callable statement in this case.
    if (preparedStmt instanceof CallableStatement) {
    preparedStmt.clearParameters();
    else {
    // Need to close the old PreparedStatement in case we have to
    // replace it with a CallableStatement
    if (preparedStmt != null) {
    preparedStmt.close();
    else if (preparedStmtCache.size() >= maxPreparedStmts) {
    String key = (String)preparedStmtCache.keys().nextElement();
    ((PreparedStatement) preparedStmtCache.remove(key)).close();
    preparedStmt = connection.prepareCall(sql);
    preparedStmtCache.put(sql, preparedStmt);
    return (CallableStatement)preparedStmt;
    The statements get closed when I close the
    connection:
    boolean closeStmts = true;
    // Close the prepared statements.
    Enumeration e = preparedStmtCache.keys();
    while (e.hasMoreElements() && closeStmts) {
    String key = (String)e.nextElement();
    try {
    ((PreparedStatement)
    preparedStmtCache.remove(key)).close();
    } catch (SQLException except) {
    // Ignore errors, we maybe handling one.
    closeStmts = false;
    log.write(Logger.NOTICE,
    "DBConnection[" + id + "]: " + url +
    "\nUnable to close statements. Continuing....\n");
    In my classes using database queries I just
    use the prepareCall method of DBConnection
    and do not have to care about anything.
    Works perfectly with the thin driver, but
    as soon as I switch to oci... :-|
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by JDBC Dev Team:
    Soda, Rupper,
    Do you mind posting some code that shows us what your code was doing when you notice this leak?
    Thanks.<HR></BLOCKQUOTE>
    null

  • XML Publisher 5.6 Standalone for Solaris

    When will this version be ready? I see the Windows and Linux versions are already t here.
    Message was edited by:
    naveeny

    Hi Naveeny,
    You can download any of these installs. It contains manual installation instructions that explain how to install on any platform. We currently do not plan to have an installer for Solaris, but I install most of the time manually myself. The installer installs its own oc4j instance and jdk.
    If you want to deploy on any existing application server you need to deploy manually anyway. Just download the cd unzip and read the install.htm or install.pdf.
    Hope that is acceptable to you.
    Klaus

  • Weblogic 8.1 for solaris x86 download

    hi, i'm looking for weblogic 8.1 for solaris x86, where i can download the files?
    thanks

    hey thanks for the reply, sorry for my late response, well last time i was found the archive of all BEA Release Product with metalink account, i was downloaded the weblogic 8.1 SP4 for solaris x86.. the installation seems fine, until i try to create the domain.. here is my step installation
    -bash-3.00$ ./config.sh
    Java Accessibility Bridge for GNOME loaded.
    Unable to instantiate GUI, defaulting to console mode.
    <--------------------- BEA WebLogic Configuration Wizard --------------------->
    Create or Extend a Configuration:
    Choose between creating and extending a configuration. Based on your selection, the Configuration Wizard guides you through the steps to generate a new or
    extend an existing configuration.
    ->1|Create a new WebLogic configuration
    | Start here to create a WebLogic configuration in your projects
    |directory.
    2|Extend an existing WebLogic configuration
    | Start here to extend an existing WebLogic configuration. Use this
    |option to add applications and services, including Database access (JDBC)
    |and Messaging (JMS). This option also enables you to extend functionality
    |by enabling WebLogic Workshop.
    Enter index number to select OR [Exit][Next]> 1
    <--------------------- BEA WebLogic Configuration Wizard --------------------->
    Select a Domain Template:
    Please select a template from the list or select another directory of templates.
    * [wildsoft/oracle/weblogic81/common/templates/domains]
    1|Basic WebLogic Workshop Domain 8.1.4.0
    | BEA Systems, Inc.
    | Create a basic WebLogic Workshop domain, without installing sample
    |applications. Domains created from this template will support the
    |WebLogic Server and WebLogic Workshop runtime functionality, including
    |support for J2EE applications, Web applications, Web Services and custom
    |controls. Use domains created from this template for development of
    |WebLogic Workshop applications.
    ->2|Basic WebLogic Server Domain 8.1.4.0
    | BEA Systems, Inc.
    | Create a basic WebLogic Server domain without installing sample
    |applications.
    3|WebLogic Server Examples Domain 8.1.4.0
    | BEA Systems, Inc.
    | Create the WebLogic Server Examples domain in a directory outside of the |installed kit. The Examples domain contains a collection of examples to
    |show best practices for coding individual J2EE APIs.
    4|Avitek Medical Records Sample Domain 8.1.4.0
    | BEA Systems, Inc.
    *Enter index number to select OR [Down][Exit][Previous][Next]> 2*
    <--------------------- BEA WebLogic Configuration Wizard --------------------->
    Choose Configuration Option:
    *Do you want to run the wizard in express mode?
    ->1|Yes
    2|No
    *Enter option number to select OR [Exit][Previous][Next]> 1*
    <--------------------- BEA WebLogic Configuration Wizard --------------------->
    Configure Administrative Username and Password:
    Create a user automatically assigned to the Administrative Role. This user is
    the default administrator used to start development mode servers.
    | Name | Value |
    _|_________________________|_________________________________|
    1| *User name:       |            weblogic             |
    2| *User password:     |                                 |
    3| *Confirm user password: |                                 |
    4| Description: | The default administration user |
    Select Option:
    1 - Modify "User name"
    2 - Modify "User password"
    3 - Modify "Confirm user password"
    4 - Modify "Description"
    *Enter option number to select OR [Exit][Previous][Next]> 2*
    <--------------------- BEA WebLogic Configuration Wizard --------------------->
    Configure Administrative Username and Password:
    Create a user automatically assigned to the Administrative Role. This user is
    the default administrator used to start development mode servers.
    "*User password:" = []
    Input new User password: OR [Exit][Reset][Accept]> weblogic1*
    <--------------------- BEA WebLogic Configuration Wizard --------------------->
    Configure Administrative Username and Password:
    Create a user automatically assigned to the Administrative Role. This user is
    the default administrator used to start development mode servers.
    | Name | Value |
    _|_________________________|_________________________________|
    1| *User name:       |            weblogic             |
    2| User password:     |            ******** |
    3| *Confirm user password: |                                 |
    4| Description: | The default administration user |
    Select Option:
    1 - Modify "User name"
    2 - Modify "User password"
    3 - Modify "Confirm user password"
    4 - Modify "Description"
    5 - Discard Changes
    *Enter option number to select OR [Exit][Previous][Next]> 3*
    <--------------------- BEA WebLogic Configuration Wizard --------------------->
    Configure Administrative Username and Password:
    Create a user automatically assigned to the Administrative Role. This user is
    the default administrator used to start development mode servers.
    "*Confirm user password:" = []
    Input new Confirm user password: OR [Exit][Reset][Accept]> weblogic1*
    <--------------------- BEA WebLogic Configuration Wizard --------------------->
    Configure Administrative Username and Password:
    Create a user automatically assigned to the Administrative Role. This user is
    the default administrator used to start development mode servers.
    | Name | Value |
    _|_________________________|_________________________________|
    1| *User name:       |            weblogic             |
    2| User password:     |            ******** |
    3| Confirm user password: |            ******** |
    4| Description: | The default administration user |
    Select Option:
    1 - Modify "User name"
    2 - Modify "User password"
    3 - Modify "Confirm user password"
    4 - Modify "Description"
    5 - Discard Changes
    *Enter option number to select OR [Exit][Previous][Next]>next*
    <--------------------- BEA WebLogic Configuration Wizard --------------------->
    Domain Mode Configuration:
    Enable Development or Production Mode for this domain.
    ->1|Development Mode
    2|Production Mode
    *Enter index number to select OR [Exit][Previous][Next]> 1*
    A fatal error has occured.  This application will terminate.

  • When will 11gR2 be available for Solaris?

    It's been three weeks since the release so I'm curious if anyone knows of a date for when 11gR2 for Solaris will be released?
    Thanks!

    Hans Forbrich wrote:
    Solaris 8 is supported officially until March 2012
    Solaris 9 is supported officially until October 2014
    Oracle's policy has been to ensure all supported versions of an OS are treated the same at the time of an Oracle s/w release - if they are available, all features for an Oracle release will have been tested and, as far as feasible, will work the same with the exception of performance.
    I admire Oracle's consistency.
    I am saddened by people who seem to not accept that Oracle customers may be at a wide variety of supported versions of an OS and should be supported by Oracle product.You certainly have a respectable viewpoint.
    I personally was (and am) most saddened at no 11g release at all on the Solaris x86_64 platform. I sometimes wonder if that was political reasons rather than technical or straightforward business decisions.
    I generally think that for most Solaris customers moving to 11gR2 the business case would be overwhelming to move to Solaris 10 at the same time (exception might be a client only install). 11gR1 and lower are available to customers wishing to remain below Solaris 10.
    What moving to solaris 10 would give is the ability to ensure concentration was made to intergrate well with the Solaris SMF facility rather than a dual SMF/legacy approach; and I'm not sure Oracle can really put in the resources to support both well.
    I really dont think are in the upgrade catch-22 that used to occur (but I may be wrong here) .... for instance when Sun ultrasparcs needed Solaris 2.5/2.51 and that Oracle 7.1.4 was not supported on that release (7.1.4 was only supported to Solaris 2.4) . However 7.1.6.2 (which ws the terminal 7.1 release) would not run Oracle Forms 2.3 correctly for existing applications (it finally would (and would do so excellently) with a few patches but 7.1.6.2 had burnt a development DBA badly by that point, nd 7.3 was not an option as that was not compatible with forms 2.3). The upgrade plans for the E-Business Suite on a Sparc 1000 containing dev/test/prod on same Solaris 2.3 server were even more of a nightmare in that era.
    Edited by: bigdelboy on 24-Sep-2009 00:40:
    Having said that the main pain would probably be that some Solaris 8 / Solaris 9 servers out there may be tight for space on partitions containing root, /usr and /var and an upgrade to solaris 10 might require some shunting and shuffling. If overall server space is an issue then IMHO going to 11gR2 needs to be thought carefully anyway.
    Hans - you've made me feel guilty :_| ... I :x all of Solaris 2.4/2.51/2.6/8/9/10u3+

  • Configuring the authentication scheme for a web application

    Hi all,
    We have a requirement to configure the authentication scheme for a web application where some set of users should access the application using basic LDAP (userid/password) authentication and some using digital certificate authentication.
    Since the deployment descriptor (web.xml) allows only one directive for auth-method in logic-config, we want to know if there is any other way to achieve this requirement. We are thinking of a custom login module approach. But we are not able to figure out how to configure the auth-method at runtime from the login servlet.
    Please let us know if there is any other approach to achieve this.
    I will be thankful if any body shares any specific solution to this issue.

    This forum is probably not the correct one to ask in. It's more related to the web container than Java Programming.
    Kaj

  • Urgent clearing data in container for free text

    I HAVE A CONTAINER FOR FREE TEXT.
    I HAVE A CREATE BUTTON IN MY SCREEN EWHEN I PRESS CREATE IT ASKD FOR ID AND FREE TEXT THEN I SAVE  AND IT GETS SAVED IN A ZTALE TABLE.
    WHEN AFTER SAVING IT I GO TO INITIAL SCREEN AND PRESS CREATE AGAIN THEN IT ASKS FOR ID AND IN THE CONTAINER I SEE THE FPREVIOUS TEXT.
    CAN YOU GUYS LET ME KNOW AS TO WHAT I NEED TO DO.
    I TREID CLEARING AND REFRESHING MYTABLE WHICH I HAVE USED IN THE FOLLOWING CODE.
    pbo
    if editor is initial.
    CREATE OBJECT TEXTEDIT_CUSTOM_CONTAINER
    EXPORTING
    CONTAINER_NAME = 'TEXTEDITOR1'
    EXCEPTIONS
    CNTL_ERROR = 1
    CNTL_SYSTEM_ERROR = 2
    CREATE_ERROR = 3
    LIFETIME_ERROR = 4
    LIFETIME_DYNPRO_DYNPRO_LINK = 5.
    IF SY-SUBRC NE 0.
    add your handling
    ENDIF.
    CREATE OBJECT EDITOR
    EXPORTING
    PARENT = TEXTEDIT_CUSTOM_CONTAINER
    WORDWRAP_MODE = CL_GUI_TEXTEDIT=>WORDWRAP_AT_FIXED_POSITION
    WORDWRAP_TO_LINEBREAK_MODE = CL_GUI_TEXTEDIT=>FALSE
    EXCEPTIONS
    OTHERS = 1.
    refresh mytable.
    call METHOD editor->SET_TOOLBAR_MODE
    EXPORTING TOOLBAR_MODE = 0.
    *call METHOD editor->SET_ENABLE
    *EXPORTING ENABLE = ' '.
    CALL METHOD editor->set_readonly_mode
    EXPORTING
    readonly_mode = 1.
    ENDIF.
    CLEAR MYTABLE.
    FREE MYTABLE.
    endif.
    IF SY-SUBRC NE 0.
    CALL FUNCTION 'POPUP_TO_INFORM'
    EXPORTING
    TITEL = V_REPID "--> program name
    TXT2 = SPACE
    TXT1 = 'Error in flush'.
    ENDIF.
    tHANKS
    let me know
    swathi

    For example, this program works really well with saving long text using the SAVE_TEXT function.  Here you need to create the object/id in SE75.  For this program you enter the id on the right like 999999 and enter the text on the left, execute and the text is saved, now change the id to 999998 and hit enter, notice the text is blank, now enter 999999 again, notice the text for this id has come back,  this is because the program uses READ_TEXT to retrieve the text.
    report zrich_0001.
    data:
          dockingleft  type ref to cl_gui_docking_container,
          text_editor    type ref to cl_gui_textedit,
          repid type syrepid.
    data: begin of header.
            include structure thead.
    data: end of header.
    data: begin of lines occurs 0.
            include structure tline.
    data: end of lines.
    data: textlines type table of tline-tdline,
          wa_text type tline-tdline.
    data: xthead type thead.
    parameters: p_id(10) type c.
    at selection-screen.
      if p_id is initial.
        message e001(00) with 'Enter an ID'.
      endif.
    at selection-screen output.
      repid = sy-repid.
      if dockingleft is initial.
        create object dockingleft
                    exporting repid     = repid
                              dynnr     = sy-dynnr
                              side      = dockingleft->dock_at_left
                              extension = 300.
        create object text_editor
                    exporting
                         parent     = dockingleft.
      endif.
      if p_id <> space.
        xthead-tdobject = 'ZPT_DET'.
        xthead-tdid     = 'Z001'.
        xthead-tdname = p_id.
        clear lines. refresh lines.
        call function 'READ_TEXT'
          exporting
            id                            = xthead-tdid
            language                      = sy-langu
            name                          = xthead-tdname
            object                        = xthead-tdobject
          tables
            lines                         = lines
         exceptions
           id                            = 1
           language                      = 2
           name                          = 3
           not_found                     = 4
           object                        = 5
           reference_check               = 6
           wrong_access_to_archive       = 7
           others                        = 8.
        clear textlines.
        loop at lines.
          wa_text = lines-tdline.
          append wa_text to textlines.
        endloop.
      endif.
      call method text_editor->set_text_as_r3table
         exporting
               table              = textlines
         exceptions
               others             = 1.
    start-of-selection.
      call method text_editor->get_text_as_r3table
         importing
               table              = textlines
         exceptions
               others             = 1.
    * Set SAPscript Header
      clear header.
      header-tdname =  p_id .         "Name
      header-tdobject = 'ZPT_DET'.       "Object
      header-tdid = 'Z001'.              "Id
      header-tdspras = sy-langu.
    * Move text from container to function module table
      clear  lines.  refresh lines.
      loop at textlines into wa_text .
        lines-tdline = wa_text.
        append lines .
      endloop.
      call function 'SAVE_TEXT'
           exporting
                client   = sy-mandt
                header   = header
           tables
                lines    = lines
           exceptions
                id       = 1
                language = 2
                name     = 3
                object   = 4
                others   = 5.
    Yes, this is implemented using a selection screen, but the same principals apply and this can  be easily converted to a dynpro application.
    Regards,
    Rich Heilman

  • The deployment process seems to die or get stuck, iAS 6 SP3 for Solaris 8?

    When I deploy my application in iAS 6 SP3 for Solaris 8 the deployment process seems to die or get stuck. In the shell window i get the messages
    iasdeploy for iPlanet Application Server 6.0 SP3
    Connected to LDAP server on sstu15.auto.com port 389
    iPlanet Application Server is running in international mode
    sstu15:null
    sstu15:10 kas> deployment action ''J2EEInstallEar'' (/u02/home/iplanet/JAR/SSS.ear) running.
    sstu15:10 kas> deployment action ''J2EEInstallEar'' (/u02/home/iplanet/JAR/SSS.ear) running.
    After this nothing happens for a really long time.
    When starting the deployment I get in the beginning of kas.log two entries
    ADMIN-168: kas> deployment get log ''J2EEInstallEar''
    GDS-007: finished a registry load
    but suddenly the second line disappears and the only message I get is the first entry. I need to break the deployment process and kill the processes manually.
    When starting the application server I get two error messages:
    Connected to LDAP server on sstu15.auto.com port 389
    iPlanet Application Server is running in international mode
    Connected to LDAP server on sstu15.auto.com port 389
    iPlanet Application Server is running in international mode
    iPlanet Administrative Server
    Version 6.0 SP3, Build 20010704
    Copyright (c) 1996-1997 KIVA Software Corporation.
    Copyright (c) 1998-1999 Netscape Communications Corporation.
    Copyright (c) 2000-2001 Sun Microsystems, Inc. Some preexisting portions Copyright (c) 2000 Netscape Communications Corp
    . All rights reserved.
    Use of this software is governed by the terms of the executed license agreement between you and iPlanet E-Commerce Solutions.
    [14/Feb/2002 11:02:12:7] error: ADMIN-071: kas> error: failed to either start up or connect to engine ''0'' (CCS0)
    [14/Feb/2002 11:03:08:8] error: ADMIN-071: kas> error: failed to either start up or connect to engine ''1'' (CCS0)
    I think all processes starts OK, I get one for .kas and one for kas, one for .kxs and one for kxs and finally one for .kjs and one for kjs.
    Is someone familiar with this/these problem(s)?

    It seems you are deploying a very big application. Try to deploy this application with following command
    j2eeappreg <filename>
    It should work fine. It was a bug with iasdeploy command in iAS SP3 which had been fixed in iAS SP4.

  • No Disk meet the criteria for Solaris installation

    Hi all, I have a problem when trying to install Solaris 8 (Intel) on my PC. There are some funny things happened while installing the OS.
    1.) My motherboard does not support booting from CD-ROM, so I downloaded a Device Assistant Boot Disk to boot it up. Then I use dd.exe to make the boot disk from the image, I have tried many times that after creating the boot disk, this boot disk will contain 512 bytes of bad sector. So why?
    2.) After using this boot disk to boot up and install the OS, before entering to the detection of the bus type stuff (still on the white screen), at the bottom of the screen, it says "ata_command select failed ... ...", what does this mean?
    3.) When the system go back to the white screen with language selection, I choose English (which is 1), and the system try to find my hard disk, but it failed and says "No Disk meet the criteria for Solaris installation" with a new line saying "installation documenation found.". So what is happening?
    Appreciate for any help.
    Wallace

    Did you check that your adaptec scsi controller is
    supported by solaris and/or has a working driver
    (from sun or adaptec) ?
    Here's the HCL for solaris 8 x86:
    http://soldc.sun.com/support/drivers/hcl/8/401/BOOK.htm

  • PDF as a container for PDF files

    I have seen some PDF files that appear to be acting as a container for other PDF files. For example, the PDF Reference and Related Documentation ("pdf_reference.pdf") contains "pdf_reference.pdf", "pdf_reference_addendum_redaction.pdf" and a couple of other pdf files. I am new to the PDF specification and cannot find the section of the format specification that explains how this is done. Are these just embedded files? It seems like they are being handled differently as they are shown in an index when the parent PDF is displayed.

    b About Collections (PDF packages).
    Beginning with PDF 1.7, PDF documents can specify how a viewer applications user interface presents collections of file attachments, where the attachments are related in structure or content. Such a presentation is called a portable collection. The intent of portable collections is to present, sort, and search collections of related documents, such as email archives, photo collections, and engineering bid sets. There is no requirement that files in a collection have an implicit relationship or even a similarity; however, showing differentiating characteristics of related documents can be helpful for document navigation.
    Attachment annotations typically represent files that are embedded in the PDF document.
    For more information, see section 3.10.5 "Collection Items" on page 189 and section 8.2.4, "Collections" on page 588 in the PDF Reference, version 1.7. This reference is available from
    www.adobe.com/go/acrobatsdk_pdf_reference

  • Build for solaris 8 on solaris 10 - possible?

    I want to build/compile an application for solaris 8, but I only have access to a machine running solaris 10. Can I compile for solaris 8 on a solaris 10 machine, and if so, what do I have to do to make it work?

    The short answer is generally no.
    The long answer is that it can be done but you will need to make sure that on the Solaris 10 machine you only use functions/headers/libraries that are available on Solaris 8 otherwise they will not be found and the software won't work.
    alan

  • Maximum Core File Size for Solaris 8

    I believe that RLM_INFINITY for Solaris for core file sizes comes to 2GB.
    Is there any mechanism ( patch ) etc. by which this can be increasd ?

    if your application is 32-bit, then the core file size would be limited to 4GB (by default) and if your application is
    64-bit, then the core file size would be limited to usigned long max (by default).
    -Saurabh

Maybe you are looking for

  • Unable to install SQL Server Management Studio 2012

    Hi , I was trying to install MS SQL Server Manager on Server 2012 R2 and I was facing an issue while doing so. Please find the attached screenshot for the same. Need help ASAP. Thanks

  • Commercial Use multiple users on Ipad

    What is the best way to configure our iPads so that we can change users each week, or daily if we have to. These devices are being use for tracking of incident information. and each person has a unique email address. We use adobe extensively on these

  • Error while syndicating-----Immediate req

    I am getting problem executing workflow. I have created workfIow, am getting problem executing workflow. Which has steps start-- validate__-if OK  syndicate---stop                  |___ if Errornotify-----stop   1.when outbound map at console is put

  • Reader X: Printing button disabled in secured file even though printing is enabled in security optio

    Hi, I have a document created in Adobe Acrobat 7.0, secured by a third party component, everything except printing is disabled in the security restrictions, but Reader X still disables the print button and the entry in the file menu. The document wor

  • Problems to download music on iTunes

    i have problems to download music on iTunes, it said error 408, and i have good connection to intenret.