Sun DS 6.3 download

hi,
i dont see download for Sun DS 6.3 for solaris 10 x86,can any one tell me where i can get it.

it says for both solaris 9/10 the same but when i download it and extract i dont see dsee_deploy under dsee_zip distribution directory..just see dsee_data only....when i tried the amd_64 download it says licence file is missing can any one which is good to download for DS 6.3 on solaris 10 32 bit

Similar Messages

  • Sun IDM 8.0 download

    Dear All,
    I cannot find the link to Sun IDM 8.0 download. If you can provide the link I would appreciate it very much.
    Thank you for your time and help.
    Kind regards
    Maria

    IDM 8.0 can be obtained here: https://cds-tst.sun.com/is-bin/INTERSHOP.enfinity/WFS/CDS-CDS_SMI-Site/en_us/-/USD/ViewProductDetail-Start?ProductRef=SJS-IDMGR-8.0-OTH-G-F@CDS-CDS_SMI
    Please note, this site requires proper authentication credentials and the acceptance of licensing terms/conditions.
    Hope this helps.

  • Sun IDM 8.1 download

    Dear All,
    I cannot find the link to Sun IDM 8.1 download. If you can provide the link I would appreciate it very much.
    Thank you for your time and help.
    Kind regards
    Maria

    Identity Manager 8.1 can be found on http://edelivery.oracle.com. The site requires a proper account/authentication.
    The # for IDM 8.1 on the site is: V19877-01
    It can be found by choosing:
    Select A Product Pack: Sun Products
    Platform: Oracle Solaris On Sparc (32-bit)
    Hit Go
    Select: Sun Products Media Pack for Oracle Solaris on SPARC (32-bit)
    Hit Continue
    Scroll down and you'll see this:
    Download      Sun Identity Manager 8.1      V19877-01      158M
    Hit the Download button.
    Hope this helps.

  • Sun ISW ; where is download media?

    AoA,
    Although it sounds absurd, But i am unable to find the installation media of Identity Synchronization for Windows 6.0
    Is it included in the JES 5 installer?
    The DSEE installation guide has a section where it says
    "This section explains how to download, unpack (or unzip), and run the Identity
    Synchronization for Windows installation program on the following platforms:"
    Unfortunately though, the section only explains running but not downloading.
    Please help anyone
    regards
    Kimi

    http://www.sun.com/software/products/directory_srvr_ee/get1.jsp
    Choose:
    - "Directory Server Enterprise Edition 6.x"
    - 6.1 or 6.0 (I think the ISW components are the same in both).
    - "Compressed Archive (ZIP)"

  • Sun ONE UDS 5.2.5 or EAI or IS or Sun One Studio 8 - Download

    Hi Experts,
    I am looking for *"Sun ONE UDS 5.2.5 for Windows 2003/XP/2000"* software to be downloaded as one the zip file in our existing project got corrupted. (UDS = Unified Development Server)
    This is also called IS = Integration Server, EAI = Enterprise Application Integration and Sun ONE Studio 8.
    Can anybody help me in this subject pls...?
    Thanks in Advance for your help.
    Warm Regards
    cmani

    Sun ONE Studio 8 was a program development suite for C, C++, and Fortran. It is no longer available. The current versions are Sun Studio 11 and Sun Studio 12. (The "ONE" has been dropped from the product name.)
    In any case, Sun Studio 8 was provided only on Solaris, never on Windows. Sun Studio 12 is also provided on Linux, but still not on Windows.
    Perhaps you are thinking of Java Studio. If so, you can ask in one of the Java forums at
    [http://forums.sun.com/index.jspa?tab=devtools]
    or
    [http://forums.sun.com/index.jspa?tab=java]

  • Sun System Handbook: firmware download links gone?

    I was trying to check the release notes and the latest firmware version for the Sun Fire X4200 this weekend and found that the link on the
    Sun System Handbook no longer works. The link points to www.sun.com/servers/entry/x4100/download.jsp but everything from servers on down just
    vectors me off to http://www.oracle.com/us/products/servers-storage/servers/sparc-enterprise/cmt-servers/030591.htm
    Is this an error or is it intentional? We have lots of older boxes that we need to be able to verify and download the latest firmware on occasion.

    Looks like they are moving the links. Does this help:
    [http://www.sun.com/bigadmin/patches/firmware/release_history.jsp#X4100]
    You will need a service contract to download anything, as otherwise get the error:
    You have selected premium content which requires a valid Sun Contract to access

  • Sun JSC2 - How to download files to client

    Hi, imagine a document management site.
    I want to have a list of files with links that users can click to download them.
    Users can upload files (with handy File Upload component), and they get saved as byte streams to a file or database or whatever.
    Now, I have a page with a list of files the user can download. The file name, a link to save the file, and a link to download the file.
    File1.pdf . . . DOWNLOAD IT! . . . SAVE IT!
    The DOWNLOAD IT! link tries to use mime stuff to get the browser to open the file.
    The SAVE IT! link tells the browser to not process the file and always bring up the save as dialog. In both cases, I don't want the browser to open a new page.
    Starting with a byte[], what's the best way to do this? I searched the web, and these forums, but couldn't come up with anything that gave me a place to start from inside JSC2.
    Any ideas on where to start? Thanks in advance!
    Mike

    Hey Winston, here is what I came up with... Very similar, but a little different.
    Java Server Faces File Download Tutorial by Michael Cole
    Java Server Faces, abstracts much of the monotonous detail of web programming, letting application developers develop applications, instead of programming servers.
    This tutorial explains how to dip just a little under the covers to serve files to a browser. The browser can then interpret this binary data using MIME types. Some common MIME types are �text/plain�, �text/html�, or �application/pdf� or �application/x-unknown�.
    How the browser behaves when interacting with these MIME types is based on the client browser's configuration. Because this configuration is different for every browser, let's create two different behaviors:
    * First Behavior: When a link is clicked, the browser downloads and �opens� the file, either displaying the file itself, or choosing an appropriate program: zip file program, pdf program, etc.
    * Second Behavior: The browser always offers to save the file, no matter what.
    At the most basic level, we want to cause this chain of events:
    1. Cause browser to send a request to the server.
    2. Have the server create a response that sends the file to the client.
    For my purposes, the browser should not navigate to a new page for this behavior.
    A mockup might look like this:
    Files you can download:
    Secrets of the Universe.txt
    Open it!
    Save it!
    Perfect love and happiness.pdf
    Open it!
    Save it!
    Make a million dollars now.swf
    Open it!
    Save it!
    To accomplish this, we will execute this code on the server:
    // Find the HttpServletResponse object for this request.
    // With this object, we can create a response that sends the file.
    FacesContext faces = FacesContext.getCurrentInstance();
    HttpServletResponse response = (HttpServletResponse) faces.getExternalContext().getResponse();
    // We can also get information about what the browser requested.
    // This could tell us what data to send
    HttpServletRequest request = (HttpServletRequest) faces.getExternalContext().getRequest();
    // Your data can be stored in a database, generated at runtime, or whatever you choose.
    // We getSomeData() from an arbitrary location. This depends on your application.
    byte[] data = getSomeData(request);
    // In the response, we will specify a file name to present to the user.
    String filename = "myFile.txt";
    // Now we have the data to send, and the response object to send it with.
    // Next we give the browser some hints on what to do with the file.
    // Note that different browsers will behave differently and you have no control over this.
    // We'll use different mime types to implement the different "Open" and "Save" behaviors.
    // "application/x-unknown" will be the MIME type used for the "Save" behavior.
    response.setContentType(mimeType);
    // We tell the browser how much data to expect.
    response.setContentLength(data.length);
    // Cross-browser hack for Firefox 1.0.7 and IE 6 compatibility.
    // IE 6 ignores the MIME type and decides based on the "attachment" or "inline"
    if (mimeType.equals("application/x-unknown")) {
    // Show the "Save As..." dialog
    response.setHeader( "Content-disposition", "attachment; filename=\"" + filename + "\"");
    } else {
    // attempt to "open" the file
    response.setHeader( "Content-disposition", "inline; filename=\"" + filename + "\"");
    // Now we start sending data with the response object.
    // You might consider using a buffer if your data comes from a large file
    // or a database.
    try {
    ServletOutputStream out;
    out = response.getOutputStream();
    out.write(data);
    } catch (IOException e) {
    e.printStackTrace();
    // Lastly and very importantly, we tell Java Server Faces that
    // the request has been handled and not to process it any more.
    faces.responseComplete();
    Now all we have to do is put this code somewhere.
    Step 1: Build the page UI.
    * Create a new page in Java Studio Creator. Let's call it �download.jsp�
    * Make it the start page (right-click)
    * Add a hyperlink component and call it �Open!�
    * If you like, add a static text that describes your file.
    Step 2: Tell Java Server Faces what to do when the hyperlink is clicked.
    * Doubleclick the hyperlink and add this code to it's action:
    public String hyperlink1_action() {
    // TODO: Replace with your code
    DownloadBean d = new DownloadBean();
    d.sendFile("text/plain");
    return null;
    * Compile the download.java and get a �cannot find symbol for class DownloadBean�. Now we have a place to put our code to send the file!
    Step 3: Build the DownloadBean that will serve the file.
    * Go to your "Source Packages" folder and create a new Java class in the project's package. Call this class �DownloadBean�.
    * Copy this code into the class:
    public void sendFile(String mimeType) {
    FacesContext faces = FacesContext.getCurrentInstance();
    HttpServletResponse response = (HttpServletResponse) faces.getExternalContext().getResponse();
    HttpServletRequest request = (HttpServletRequest) faces.getExternalContext().getRequest();
    byte[] data = getSomeData(request);
    String filename = "myFile.txt";
    // Note that different browsers will behave differently and you have no control over this.
    // We'll use different mime types to implement the different "Open" and "Save" behaviors.
    // "application/x-unknown" will be the MIME type used for the "Save" behavior.
    response.setContentType(mimeType);
    response.setContentLength(data.length);
    // Cross-browser hack for Firefox 1.0.7 and IE 6 compatibility.
    // IE 6 ignores the MIME type and decides based on the "attachment" or "inline"
    if (mimeType.equals("application/x-unknown")) {
    // Show the "Save As..." dialog
    response.setHeader( "Content-disposition", "attachment; filename=\"" + filename + "\"");
    } else {
    // attempt to "open" the file
    response.setHeader( "Content-disposition", "inline; filename=\"" + filename + "\"");
    // Now we start sending data with the response object.
    try {
    ServletOutputStream out;
    out = response.getOutputStream();
    out.write(data);
    } catch (IOException e) {
    e.printStackTrace();
    faces.responseComplete();
    * Hit Ctrl-Shift-F to make the code pretty.
    * Try and compile DownloadBean.java. Build->Compile
    * As expected, you will get a variety of �cannot find symbol� errors.
    * Hit Ctrl-Alt-F to clean these up, by automatically adding the proper imports.
    * Try and compile again and you will get a �cannot find symbol� error for the getSomeData() function. That's ok cause we didn't write it yet.
    * Copy this code into the DownloadBean class:
    public byte[] getSomeData(Object o) {
    // ignore the HttpServletRequest object and return some data.
    return "Hello World!".getBytes();
    * Compile the file one last time to get a clean compile.
    Why didn't we put this code directly in the hyperlink1_action() function? Because we are separating the �model� from the "view" and "controller". DownloadBean can be reused in any page of your application now.
    Step 4: Test
    1. Run the project and open the page in the Firefox web browser.
    2. Click the �Open It!� hyperlink
    3. A text file should appear in Firefox that says �Hello World!�
    Great! We sent the file, Firefox interpreted the �text/plain� MIME type, and presented the text as a browser page. This covers our �Open It!� functionality.
    To serve other kinds of files, pass a different MIME type in the sendFile() function.
    For a list of MIME types, check out http://www.webmaster-toolkit.com/mime-types.shtml
    Step 5: Save It! Functionality.
    What if we always want the file to be saved, no matter what foolishness the browser wants to do with the file?
    * Go back to the Design of download.jsp.
    * Add another hyperlink to the page, label it �Save It!�
    * Double click the hyperlink and JSC2 will take you to its action function.
    * Add this code to the function
    public String hyperlink2_action() {
    // TODO: Replace with your code
    DownloadBean d = new DownloadBean();
    d.sendFile("application/x-unknown");
    return null;
    Notice the difference in the MIME type? We changed �text/plain� to �application/x-unknown�. Notice also in the sendFile() function the cross-browser hack to get IE 6.0 to save or open the file.
    * Run the project one last time.
    * Test with Firefox
    * Test with Internet Explorer
    Done!

  • Sun Java Wireless Toolkit 2.5 for CLDC final release available for download

    We are proud to annouce that the final release of the WTK 2.5 is now available for download: http://java.sun.com/products/sjwtoolkit/download-2_5.html
    New features include:
    -support for the Mobile Service Architecture (JSR 248) platform
    -new supporting utilities to support application development for newly supported JSRs
    -new and updated emulator skins
    Download today!
    http://java.sun.com/products/sjwtoolkit/download-2_5.html

    Hi,
    Yes, we are working on making a linux release available, but we don't have a specific date as of yet. We'll provide updates as soon as we have a better idea.
    Thanks,
    E-ming

  • Solaris Download link not working

    Hi !
    The download lnk for oracle 10g solaris x86 is not wirking can sombody get me a link where i can download this packages
    Solaris 8 x86 is not available for download in sun's official site
    where can i get it .
    Thanks and regare

    Sanghai wrote:
    hi
    very thankful for your link it seems that my proxy server was not allowwing me to download the package
    I could have mark the question answered in my previous post
    but the question is not yet solved.
    how can i mark the question as answered without getting it answered.
    I mean i have hard time to fine the Sun Solaris 8 x86 download link.
    Thanks.:) Amazing. You still think that your question still NOT answered? :)

  • Download Error Exception in 1.6. Works in all older versions.

    I had some customers complaining that Java Web Start stopped working after upgrading to Java 1.6. I got the following after I upgraded.
    JNLPException[category: Download Error : Exception: null : LaunchDesc: null ]
         at com.sun.javaws.LaunchDownload.downloadJarFiles(Unknown Source)
         at com.sun.javaws.LaunchDownload.downloadEagerorAll(Unknown Source)
         at com.sun.javaws.Launcher.downloadResources(Unknown Source)
         at com.sun.javaws.Launcher.prepareLaunchFile(Unknown Source)
         at com.sun.javaws.Launcher.prepareToLaunch(Unknown Source)
         at com.sun.javaws.Launcher.launch(Unknown Source)
         at com.sun.javaws.Main.launchApp(Unknown Source)
         at com.sun.javaws.Main.continueInSecureThread(Unknown Source)
         at com.sun.javaws.Main$1.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    I get the following on the console:
    #### Java Web Start Error:
    #### Unable to load resource: http://barracudaserver.com/products/BarracudaDrive/HttpsTunnelWS.jar
    I have cleared the Java cache, but the Java client still sends a " If-Modified-Since" so the server responds with a 304 Not Modified.
    If-Modified-Since: Wed, 31 Dec 1969 23:59:59 GMT
    That is a long time ago.
    I have attached the HTTP headers at the bottom.
    Any ideas?
    BTW, it would be great if SUN could make things backward compatible. This JNLP file is integrated inside a product and requires that all customers upgrade the product.
    A copy of the JNLP file is available online at:
    http://barracudaserver.com/products/BarracudaDrive/HttpsTunnelClient.html
    GET /products/BarracudaDrive/HttpsTunnelWS.jar HTTP/1.1
    content-type: application/x-java-archive
    accept-encoding: pack200-gzip,gzip
    User-Agent: JNLP/6.0 javaws/1.6.0_01 (b06) Java/1.6.0_01
    UA-Java-Version: 1.6.0_01
    Host: barracudaserver.com
    Cache-Control: no-cache
    Pragma: no-cache
    Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2
    Connection: keep-alive
    If-Modified-Since: Wed, 31 Dec 1969 23:59:59 GMT
    Cookie: __utma=72791808.1501057734.1166376940.1177887848.1178031465.9; __utmz=72791808.1177300532.7.3.utmccn=(referral)|utmcsr=localhost|utmcct=/setup/wizard/SetAdmin.lsp|utmcmd=referral; phpbb2mysql_data=a%3A2%3A%7Bs%3A11%3A%22autologinid%22%3Bs%3A0%3A%22%22%3Bs%3A6%3A%22userid%22%3Bi%3A-1%3B%7D
    HTTP/1.1 304 Not Modified
    Date: Tue, 01 May 2007 17:44:38 GMT
    Server: BarracudaServer.com (Posix)
    Connection: Keep-Alive
    Content-Type: application/java
    Etag: 461adac6
    Last-Modified: Tue, 10 Apr 2007 00:31:02 GMT
    Content-Length: 0
    Message was edited by:
    wi_ni
    Message was edited by:
    wi_ni

    JNLP version ?
    i tried to look up in my control panel
    and i have in user tab
    1.6     1.6.0_01     http://java.sun.com/products/autodl/j2se     C:\Program Files\Java\jre1.6.0_01\bin\javaw.exe     true
    system tab
    1.6     1.6.0_01     http://java.sun.com/products/autodl/j2se     C:\Program Files\Java\jre1.6.0_01\bin\javaw.exe     true
    and java -version is
    java version "1.6.0_01"
    Java(TM) SE Runtime Environment (build 1.6.0_01-b06)
    Java HotSpot(TM) Client VM (build 1.6.0_01-b06, mixed mode, sharing)
    here is my JNLP test program
    <?xml version="1.0" encoding="utf-8"?>
    <jnlp spec="1.0+" codebase="http://172.22.90.128/Rel05_01_052">
    <information>
    <title>JNLPTest</title>
    <vendor>JNLPTest</vendor>
    <description>JNLPTest</description>
    <offline-allowed/>
    </information>
    <security><all-permissions/></security>
    <resources>
    <j2se version="1.5" initial-heap-size="64m" max-heap-size="512m"/>
    <jar href="iMS/STS-6.jar.pack.gz"/>
    <property name="Secure" value="false"/>
    </resources>
    <application-desc main-class="SwingTest"/>
    </jnlp>
    and this same works in machine where i have 1.5.
    I don't know the reason why java 1.6 webstart throw this error
    java.io.IOException: Corrupted pack file: magic/ver = CAFED00D/160.1 should be CAFED00D/150.7
         at com.sun.java.util.jar.pack.NativeUnpack.start(Native Method)
         at com.sun.java.util.jar.pack.NativeUnpack.run(Unknown Source)
         at com.sun.java.util.jar.pack.NativeUnpack.run(Unknown Source)
         at com.sun.java.util.jar.pack.UnpackerImpl.unpack(Unknown Source)
         at com.sun.deploy.net.HttpDownloadHelper.download(Unknown Source)
         at com.sun.deploy.cache.Cache.downloadResourceToCache(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.actionDownload(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getCacheEntry(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getResourceCacheEntry(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getResourceCacheEntry(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getResource(Unknown Source)
         at com.sun.javaws.LaunchDownload.downloadJarFiles(Unknown Source)
         at com.sun.javaws.LaunchDownload.downloadEagerorAll(Unknown Source)
         at com.sun.javaws.Launcher.downloadResources(Unknown Source)
         at com.sun.javaws.Launcher.prepareLaunchFile(Unknown Source)
         at com.sun.javaws.Launcher.prepareToLaunch(Unknown Source)
         at com.sun.javaws.Launcher.launch(Unknown Source)
         at com.sun.javaws.Main.launchApp(Unknown Source)
         at com.sun.javaws.Main.continueInSecureThread(Unknown Source)
         at com.sun.javaws.Main$1.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)

  • Sun ONE Studio IDE ???

    Hello,
    I have a JSP project to which has to be created in Sun One Studio. On internet, while searching to download it, I find pages for version 5 which says, Soory no download is availbale at present and for 4 it shows how to migrate Sun One Studio projects to NetBeans.
    Can anyine help me out, where can I find Sun One Studio to download. It has the sun Applicaton Server along with it.
    I am in hurry, have already spend days looking out for the above. If anyone could help at the earliest, would appreciate.
    Thanks

    Glad you're giving up the VB for a real language.
    If none of the options listed at http://docs.sun.com/source/817-2318/ide_setup.html work, you'll probably have to reinstall.

  • File missing from download

    Is there another file I need besides the JSDK1.5.0_07 download on the Sun site? I downloaded it (64,949MB -- my firewall won't accept the download and install -- besides, I have dial-up.) and have installed it four times. I also changed my path to the new location. When I tried to compile a file, I got the infamous "javac is not a recognized internal of external command." message.
    OK, I thought my path was wrong, so I did a search for javac.exe on my computer. No such animal. Any ideas?

    My previous actions were:
    0. Tried the Download and Install -- Windows installer just sat there. No progress.
    1. Downloaded the jdk-1_5_0_07-windows-i586-p.exe file. Took 5 hours. Checked the file size: 64,949KB matched what the website said.
    2. Installed the jdk-1_5_0_07-windows-i586-p.exe file to my D drive in the jsdk1.5.0_07 folder.
    3. Set the path to the d:\jsdk1.5.0_07\bin folder.
    4. Tried to compile a java file. Received the "javac is not a recognized internal or external command." message.
    5. Used Window's Search to search all harddrives for javac.exe. Received two hits, but they were from an Oracle installation (version 1.1.3) -- been there several years.
    6. Thought it was a bad install, so uninstalled as directed.
    7. Repeated steps 2 through 6 three more times. Still no javac.exe
    8. Posted the message.
    9. Went back to download site and tried the Download and Install again. Took about twenty minutes before any progress was evident -- guess I didn't wait long enough before :^). Left the download all night (8 hours). This morning, accepted the license agreement, installed, searched for javac*.exe again. Found javacpl.exe, but only the Oracle javac.exe. Uninstalled Java.
    10. Uninstalled Oracle (thought the existence of a javac.exe in another location was confusing the installer).
    11. Installed from the downloaded file. Searched for javac*.* again. Found the javacpl.exe (two versions -- one in the bin, one in the jre) and a dll file in the C:\Windows folder. Still no javac.exe.
    HELP!!!!!!!!!!!

  • (To SUN DTS) Where is tcp.c in solaris 8 open source foundation?

    Dear SUN DTS,
    I have downloaded the solaris 8 open source foundation. But I cannot find tcp.c file. Ip.c was there as ip.c.export. Is this SUN's purpose not giving out the tcp.c, or this is someone's mistake when packaging. Without it, the source foundation is not complete.
    Thanks
    Ken

    Hi Ken,
    As per the source license agreement, you should pursue questions about the source with the product team on the Solaris 8 Foundation Source Discussion Forum.
    Sorry for any inconvenience.
    Best regards,
    Ralph
    SUN DTS

  • Can't boot 250 Server w/Solaris10 free download

    Hi, very new to Sun/Solaris. Attempting to fresh install Solaris 10 on Sun 250 Server. Downloaded all 4 .iso images from Sun website, extracted files, and burned to CD. From OpenBoot, here is message:
    (### commented comments are my own ###)
    # here I am starting server w/CD in drive:
    #<Sun banner>
    Boot device: disk File and args:
    The file just loaded does not appear to be executable.
    #seconds later, here I am booting
    #from command line:
    ok boot cdrom
    Boot device: /pci@1f,4000/scsi@3/disk@6,0:f File and args:
    Bad magic number in disk label
    Can't open disk label package
    Can't open boot device
    ok
    #end of OpenBoot messages
    So, the machine appears to begin boot, but fails. I have examined the files at CD root level. They are:
    SOLARIS_10 (a directory)
    .CTTOC
    .INSTALL_CONFIG
    .SLICEMAPFILE
    _VOLUME.INF
    COPYRIGHT
    JDS_THIRDPARTYLICENSEREADME
    Being new to Sun, I'm guessing that the file named .INSTALL_CONFIG might be the boot file? But this file is 100% empty. I have downloaded the disc 01 .iso file twice from the Sun website, same thing each time.
    Any help graciously appreciated. My goal is to get the server booted & running on Solaris 10.
    If nothing else, if I just knew the name/location of the boot file(s), I might be able to figure things out.
    Thank you!

    Yes, I've successfully burned many sparc bootable solaris install cdroms with cdrw on both sparc and x64/x86 solaris. Assuming the image download isn't corrupted there probably is nothing wrong with your host.
    We only release floppys for x64/86 installs. You can also setup jumpstart or JET on another host and net boot the e250.
    Having the ISO image you can burn a bootable Sparc CD
    with any program that is able to burn ISO images to
    CD.That's not completely correct. You can only use a burning program that doesn't care about the size of the cdrom and just lays down the iso. The sparc bootable image is larger than a standard burnable size because of the added boot image layed out in the vtoc. I've used cdrw -C -i filename. The -C option allows the burning program to ignore the file size limits and use the raw iso. Google for "vtoc bootable cdrom site:www.sun.com" and look at the blueprints and whitepaper pdfs for more information on how to build a bootable cdrom image.
    Last night I created a Sparc bootable cdrom from Nero 6.3.0.
    Open Nero,
    Get to the "burn iso to disk"
    After selecting the iso open the configuration icon
            Select the General Tab
    Uncheck the following:
                    Check for correct disc format before burning
                    Check joliet filenames before burning
            Select Expert Features tab
    Check:
                   X Enable overburn Disc-at-once burning (read the notes below)
                    82min 0 sec 0 frmMine was set to 82 minutes by default.
    A word of caution, if you create you're own isos and if you don't re-enable these settings to what they were, you may burn bad cdroms.
    I put the disk in a solaris host, with volume managment running it mounted an Solaris 10 u1 Sparc as the following:
    /cdrom/sol_10_106_sparc/s6 on /vol/dev/dsk/c1t2d0/sol_10_106_sparc/s6 read only/
    nosetuid/nodevices/intr/largefiles/xattr/onerror=panic/dev=16c0007 on Tue Mar  7
    09:07:03 2006
    /cdrom/sol_10_106_sparc/s5 on /vol/dev/dsk/c1t2d0/sol_10_106_sparc/s5 read only/
    nosetuid/nodevices/intr/largefiles/xattr/onerror=panic/dev=16c0006 on Tue Mar  7
    09:07:04 2006
    /cdrom/sol_10_106_sparc/s4 on /vol/dev/dsk/c1t2d0/sol_10_106_sparc/s4 read only/
    nosetuid/nodevices/intr/largefiles/xattr/onerror=panic/dev=16c0005 on Tue Mar  7
    09:07:04 2006
    /cdrom/sol_10_106_sparc/s3 on /vol/dev/dsk/c1t2d0/sol_10_106_sparc/s3 read only/
    nosetuid/nodevices/intr/largefiles/xattr/onerror=panic/dev=16c0004 on Tue Mar  7
    09:07:04 2006
    /cdrom/sol_10_106_sparc/s2 on /vol/dev/dsk/c1t2d0/sol_10_106_sparc/s2 read only/
    nosetuid/nodevices/intr/largefiles/xattr/onerror=panic/dev=16c0003 on Tue Mar  7
    09:07:04 2006
    /cdrom/sol_10_106_sparc/s1 on /vol/dev/dsk/c1t2d0/sol_10_106_sparc/s1 read only/
    nosetuid/nodevices/intr/largefiles/xattr/onerror=panic/dev=16c0002 on Tue Mar  7
    09:07:04 2006
    /cdrom/sol_10_106_sparc/s0 on /vol/dev/dsk/c1t2d0/sol_10_106_sparc/s0 read only/
    nosetuid/nodevices/noglobal/maplcase/rr/traildot/dev=16c0001 on Tue Mar  7 09:07
    :05 2006Running df -k | grep cdrom returns
    /vol/dev/dsk/c1t2d0/sol_10_106_sparc/s6      31       2      26     8%    /cdrom
    /sol_10_106_sparc/s6
    /vol/dev/dsk/c1t2d0/sol_10_106_sparc/s5      31       2      26     8%    /cdrom
    /sol_10_106_sparc/s5
    /vol/dev/dsk/c1t2d0/sol_10_106_sparc/s4      31       2      26     8%    /cdrom
    /sol_10_106_sparc/s4
    /vol/dev/dsk/c1t2d0/sol_10_106_sparc/s3      31       2      26     8%    /cdrom
    /sol_10_106_sparc/s3
    /vol/dev/dsk/c1t2d0/sol_10_106_sparc/s2      31       2      26     8%    /cdrom
    /sol_10_106_sparc/s2
    /vol/dev/dsk/c1t2d0/sol_10_106_sparc/s1  396495  377328       0   100%    /cdrom
    /sol_10_106_sparc/s1
    /vol/dev/dsk/c1t2d0/sol_10_106_sparc/s0  252034  252034       0   100%    /cdrom
    /sol_10_106_sparc/s0I was able to boot from this cdrom.
    Cheers,
    ~~sa

  • Sun Trunking on Solaris 10

    How do you install Sun Trunking package on Solaris 10? Is it on the Solaris 10 CD? Looks like the Sun Trunking 1.3 download is just an update. The default install did not install the package.

    SunTrunking is not part of any version of Solaris.
    You should be able to get the version for Solaris 10 free from the Sun download center at www.sun.com.
    Darren

Maybe you are looking for

  • How to modifiy the speed of a video in Labview (VLC ?) in function of datas (simulated​) !

    Hi ! I want to change the speed of a video in Labview. Unfortunaletly, The VLC ActiveX does not function in my version of Labview. Is there any other program I don't know and which is able to modify the speed of a video ? If no, what is the way to do

  • Threads spawning in Servlets allowed?

    Hello to all servlet afficionados,           I am following thread discussions already a while and there's always           discussion whether to user threads or not (I am not talking about a           servlet thread but about threads manually instan

  • Automatic scrolling after several clicks in sidebar?

    Hi, To my annoyance, everytime I am reading a long document, clicking in the righthand sidebar to move down page by page, after a certain number of consecutive clicks the document starts racing by to its end with some sort of automatic scrolling. Doe

  • Making alias in the library/application support

    Hello, I'm trying to find out all the folders in my library and application support that I can make alias, and send to my external hard drive. Can I make alias of my entire libraries (Macnitosh HD and Home account), and move them to my external? And

  • Logic X Keeps Crashing

    Hello, I keep having a problem with logic crashing every time i move the time bar to around half way through one of my compositions, I still have 13GB of RAM free when i get there, all the VST's i am using are East West (play engine) (all licenses mi