Solaris 8.0 on SUN SPARC 5 machine.

Can i install Solaris 8.0 on SUN SPARC 5 machines ?
Why can't i find it in the hardware compatibility list ?

Hi Solaris 8 is supported for Sparc Station 5 machines and should install just fine. However Solaris 8 is not supported on 4c architecture systems like the Sparc Station 1's and 2's...etc.
You can find a list of supported systems at the following URL:
http://www.sun.com/products-n-solutions/hardware/docs/pdf/806-2221-10.pdf
Skip ahead to page 25 if you are looking just for supported machines.
Regards,
Andrew
Sun Developer Technical Support
Can i install Solaris 8.0 on SUN SPARC 5 machines ?
Why can't i find it in the hardware compatibility list

Similar Messages

  • Mistake installing solaris 10 in server Sun Sparc Entreprise 220r

    Hello I am installing solaris 10 in a server Sun Sparc Enterprise220r, it starts with CD1 and the following mistake appears:
    THE FILE JUST LOADED DOES NOT APPEAR TO BE EXECITABLE

    Perhaps instead of opening a new post, you might have just continued your original thread from a few days ago. It seems to be the same issue - bad burn of the optical media.
    http://forum.java.sun.com/thread.jspa?threadID=5229606
    Generic instructions for downloading and creating your installation media is here:
    http://www.sun.com/software/solaris/download_instruction.xml

  • Oracle 10g R2 installation on sun solaris 10 Sparc machine

    Hi there,
    I encountered the following problem during oracle 10g R2 installation on sun solaris 10 Sparc machine
    Error encountered:
    Using paramFile: /u01/Oracle/10gr2_db_sol/install/oraparam.ini
    Checking installer requirements...
    Checking operating system version: must be 5.8, 5.9 or 5.10. Actual 5.10
    Passed
    Checking Temp space: must be greater than 250 MB. Actual 2266 MB Passed
    Checking swap space: must be greater than 500 MB. Actual 2335 MB Passed
    Checking monitor: must be configured to display at least 256 colors Failed <<<<
    >>> Could not execute auto check for display colors using command /usr/openwin/bin/xdpyinfo. Check if the DISPLAY variable is set.
    Some requirement checks failed. You must fulfill these requirements before
    continuing with the installation,at which time they will be rechecked.
    Continue? (y/n) [n]
    The following were the steps taken before encountering the above error
    1. logged into a workstation
    2. From its xterm terminal I logged to the oracle server via ssh oracle@ip
    3. keyed in the following at the command prompt
    DISPLAY=machine_name:0.0; export DISPLAY
    4. executed the following from the command prompt
    ./runInstaller
    Note: when executing the ./runInstaller, the preinstallation checking just hangs at Checking monitor: must be configured to display at least 256 colors. But the log file shows it failed during preinstallation checking as shown in Error encountered
    Please help me with this problem.
    Thank you
    Ravindran Kanniah

    It is because of UNIX shell. I also faced this error during installation.
    First check your shell by the following command.
    $ echo $SHELL
    Then select the below.
    For csh shell
    $ setenv DISPLAY 192.168.1.128:0.0
    $ export DISPLAY
    For sh,ksh and bash
    $ DISPLAY=192.168.1.128:0.0
    $ export DISPLAY
    After you do this check the value of DISPLAY variable.
    $ echo $DISPLAY
    If the DISPLAY variable is set then run ./runInstaller.
    One advice: Keep a complete log of your terminal session. This will help you in future :)
    -aijaz

  • How to install Apache Web Server with PHP on Sun Solaris Sparc machine

    Hi,
    We are trying to install the Apache Web Server and the PHP package on a Sun Solaris Sparc machine running on SunOS 5.8. We are having compilation problems with the source code of both these packages.
    Does anybody know if there are ready solaris packages for Apache and PHP available from where we can download and install instead of source code compilation?
    Or any instructions / things to watch for when installing Apache with PHP (if anybody has tried installing Apache with PHP on Sun Solaris earlier) is most welcome.
    Thanks,
    Harish

    Apache should be bundled along with Solaris check in "/var/apache" in Solaris 8 and Solaris 9
    php is available at www.php.net
    I found an old document for installing PHP maybe this will help.
    Cheers
    -Dhruva
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++Installing PHP 3.x for Apache 1.x.x on Solaris
    Introduction
    This document describes how to install PHP for Apache on Solaris.
    You should have Apache installed before trying to install PHP.
    If you want to use PHP with MySQL then you must install MySQL first.
    Before we Begin
    1. These instructions assume that you have Apache installed according to instructions.
    Getting PHP
    1. You must be logged in as root to perform this installation.
    su root
    2. I save all my downloads in:
    /usr/local/dist
    If you don't already have one, you may need to create that directory now:
    mkdir /usr/local/dist
    3. You can get PHP 3.0.14 from here(www.php.net).
    cd /usr/local/dist
    ftp ftp.php.net
    cd pub/distributions
    bin
    get php-3.0.14.tar.gz
    bye
    Installing PHP
    1. We will install PHP in /usr/local/build, but use a tricky tar command
    to do it in on hit from the download directory:
    cd /usr/local/dist
    tar xvfz php-3.0.12.tar.gz -C ../build
    Compiling PHP
    1. First let's get where the action is:
    cd /usr/local/build/php-3.0.14
    2. You now have 3 options:
    * Simple PHP install without MySQL - goto step 3
    * Simple PHP install with MySQL - goto step 4
    * Custom PHP install - goto step 5
    3. Simple PHP install without MySQL. Next, jump to step 6.
    ./configure --with-apache=../apache_1.3.12
    4. Simple PHP install with MySQL. MySQL must be installed before you can configure PHP to use it. I recommend that MySQL should always be reachable with /usr/local/mysql. Even if you install it else where you
    should create a symbolic link from /usr/local/mysql. Otherwise the compiler can have problems finding the mysqlclient library. The command
    should look like this:
    ./configure with-mysql=/usr/local/mysql with-apache=../apache_1.3.12
    Next, jump to step 6.
    5. Custom PHP install. Take a look at the available configuration directives by using this command:
    ./configure --help
    6. Now we can make the PHP executable. This may take a while.
    make
    7. Now we install the PHP module with:
    make install
    Adding the PHP Module to Apache
    1. Now we have to setup Apache to include the PHP module:
    cd ../apache_1.3.12
    2. Re-configure Apache to use the PHP module. You should use your previous Apache configure command along with the PHP activate module directive.
    You can see your previous Apache configure command by doing:
    cat config.status
    You can configure Apache using the previous command with the added PHP module by doing:
    ./config.status --activate-module=src/modules/php3/libphp3.a
    If you used the simple Apache install from instructions the command will look like this:
    ./configure prefix=/usr/local/apache activate-module=src/modules/php3/libphp3.a
    3. Make and install Apache with PHP enabled:
    make
    4. We need to stop the server before installing the files:
    /usr/local/apache/bin/apachectl stop
    5. Now we can install the new binaries:
    make install
    6. Start apache again (now running the new php enabled version):
    /usr/local/apache/bin/apachectl start
    Setting Up PHP
    1. We have to tell Apache to pass certain file extensions to PHP. We do this in Apache's httpd.conf file.
    cd /usr/local/apache/conf
    2. Edit the httpd.conf file. If you do a search for php you will find a couple of commented out lines telling Apache to use the PHP module. You should uncomment them to look like this.
    AddType application/x-httpd-php3 .php3
    AddType application/x-httpd-php3-source .phps
    3. I prefer to use the extension .phtml, you can use whatever extension you like (even .html) by adding lines to httpd.conf like this:
    AddType application/x-httpd-php3 .phtml
    Check that it Works
    1. We have to restart Apache to make these changes take effect on the running server.
    cd /usr/local/apache/bin
    ./apachectl restart
    2. Apache should now be running with PHP enabled. The server version should include PHP/3.0b2.
    ./apachectl status
    Apache Server Status for dev.synop.com
    Server Version: Apache/1.3.9 (Unix) PHP/3.0.12
    Server Built: Oct 25 1999 00:37:07
    3. Now it is time to test PHP with a page. The simplest thing to do is create a page called test.php3. My file is here. This file contains the
    following text:
    <?php phpinfo(); ?>
    4. Point your browser at this file on the virtual host which you used:
    http://localhost/test.php3

  • Oracle 8.1.6 on Sun Sparc Solaris 8

    Any successful story of Oracle 8.1.6 runs on Sun Sparc Solaris 8?
    The documentation of Oracle 8.1.6 mentions that it can run on Solaris 2.6 and 7. But how about Solaris 8?
    Thanks.

    Could you tell us how to do that????
    We all met the ORA-01034 problem!
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Wile E. Coyote:
    Yes, that's no problem
    I've installed 8.1.6 on several machines running Solaris 8 without any problem<HR></BLOCKQUOTE>
    null

  • Help!  Having Trouble Installing Solaris 10 on a SPARC machine

    Hi All,
    I recently found a new job, and one of the requirements is I learn Solaris 10. I have successfully loaded the most recent x86 version on a laptop, but.....
    My workplace has a sun blade 2500 (several actually) and I am trying to load the newest Solaris 10 SPARC version that I just downloaded. I downloaded it on my PC (Windows vista, yech), unpacked the ISO using winzip, and burned the files to a DVD. When I put that newly burned DVD into the sunblade 2500, I press stop-a, then type "boot cdrom", and after the reboot, I get a message saying
    Bad magic number in disk label
    Can't open disk label package
    Can't open boot device
    {0} ok
    So for some reason my burned DVD is giving me a "bad magic number" error - and its not just one machine, all the machines I tried to load it on said the same thing.
    Fortunately, a co-worker that recently left the company had Solaris 10 burned to a set of CDs (5 plus the language CD) and that installed well (albeit version 08/07 of Solaris 10).
    So I am at the point where I can probably figure out how to upgrade the machine, but it bothers me that I couldnt successfully download the ISO from sun, unpack the contents, burn said contents to a DVD (using Windows), then take that DVD and install SPARC Solaris 10 on a sun blade 2500. I know that at some point I wont have the crutch of those CDs. Does anyone know what I was doing wrong? Is there a certain way you have to burn the DVD, or use a certain package to unpack the ISO for the SPARC version?
    Thanks,
    Brent

    Hi,
    Make sure that write your DVD at 8X speed.
    Also Refer thread:
    http://www.motherboardpoint.com/bad-magic-number-disk-label-t146549.html
    Regards,
    X A H E E R

  • Installation of Solaris 10 on SUN Sparc M4000

    Hi
    I am trying to install Solaris 10 on SUN SPARC M4000.
    Here is the error I have:
    +Enter filename [kernel/sparcv9/unix]: /platform/sun4v/kernel/sparcv9/unix+
    +Enter default directory for modules [platform/sun4v/kernel /kernel /usr/kernel]:+
    krtld: load_exec: fail to expand cpu/$CPU
    krtld: error during initial load/link phase
    panic - boot: exitto64 returned from client program
    Program terminated
    It seems that version of Solaris I trying to install is not support by the Hardware, when I use another Solaris 10 DVD, it works...
    But the problem is that I need to install this Solaris version because others softwares are depending on that.
    If someone knows how to make this installation possible, it will be very helpfull.
    Thanks in advance.
    BR
    Racine

    Minimum Supported
    Solaris[tm] Operating Environment Versions for the M4000 are as follows
    OpenSolaris 2009.06
    SPARC64 VI:
    10 - 11/06 (U3) plus required patches (minimum)
    10 - 08/07 (U4) (recommended)
    SPARC64 VII:
    10 - 08/07 (U4) plus required patches (minimum)
    10 - 5/08 (U5) (recommended)
    A full matrix for the M4000 which details the minimum patch requirements to support the h/w is available from https://support.oracle.com/CSP/main/article?cmd=show&type=NOT&id=1145383.1

  • How to Enable firewall on Solaris 10 SPARC Machine?

    Hi All,
    I have installed Solaris 10 SPARC & by default the firewall is disabled.
    Now i need to enable firewall?
    Can i know how to enable firewall Solaris 10 SPARC Machine?
    Also can i know how to open up specific TCP & UDP ports?

    What exactly are you looking for? By default Solaris is a secure operating system, but can be tuned to be more or less secure. The link above on IP Filtering is one way to make a system more secure, and is can be used to set up a firewall.
    -- Alan

  • Oracle Forms Developer/Services 6i Release 2 for Sun SPARC Solaris

    Exist? :
    Oracle Forms Developer/Services 6i Release 2 for Sun SPARC Solaris
    6i Release 2 ,it's product or patch ?
    I want to know then Software Product CD Part number, Part # ????? Release 2 , not Release 1!!

    I'm getting the page not found error on trying to download the setup Oracle Forms Developer 6i Release 2 for 95/98/NT/2000/XP from:
    http://www.oracle.com/technology/software/products/forms/htdocs/winsoft.html

  • Management Agent 10.2.0.3 on Sun SPARC Solaris

    Hi all,
    can anyone tell me what are the requirements (software,hardware) for installing the management agent 10.2.0.3 on Sun SPARC Solaris??
    Thanks,
    in advance

    http://download-west.oracle.com/docs/cd/B16240_01/doc/install.102/b25949/toc.htm

  • Installing RealTek ethernet card in solaris 7 sparc machine

    I inserted RealTek ethernet card in my Solaris-7 Sparc machine. But to work it properly ,need to install driver for the card. I searched a lot but i did't get the driver to download . I have read from some sites that the driver for solaris 7 sparc is not avaliable.How can i solve this problem.?
    Anybody please help me to solve the problem.

    You can try a NIC driver from RealTek, directly.
    http://www.realtek.com.tw/downloads/
    ... but for a SPARC system? That may be problematic.
    Does OBP see the device? Use show-devs at the OK prompt.
    If it isn't seen at OBP's elementary hardware level, the OS will never use it.
    If it is recognized at OBP, then try the manufacturer's drivers.
    Return to the forum and let the rest of us know what happens..

  • CD Writer on Sun SPARC under Solaris?

    Hello gentlemen,
    Does it possible to install (external) CD-Writer as the (external) device (SCSI or USB) on Sun SPARC under Solaris?
    Does anybody use it as a real CD-Writer on Sun SPARC under Solaris?
    Does it work on Sun SPARC under Solaris?
    Does it write on Sun SPARC under Solaris?
    What /dev/* could I use for CD-Writer?
    Some documentation about compatibility of CD-Writers and SPARC/Solaris?
    Thanks in advance!
    Vladimir.
    (I am afraid, the very useful site
    http://saturn.tlug.org/suncdfaq/
    now is lost, dead and could not be retrieved.... )

    Try this website:
    http://www.pt.com/support/supp_PCI560.html
    They sold relabled 3com cards. I can't tell if its a 905b or 905c but it is worth a try! They have drivers!

  • How similar is x86 compared to Solaris 8 or 9 on SPARC?

    How similar is x86 compared to Solaris 8 or 9 on SPARC?
    Thanks.

    Extremely similar. The vast majority of Solaris is built from the same source code for both platforms. You will find all of the same commands in places like /usr/bin and /usr/dt/bin.
    Of course, the instruction sets are different. While all of the same commands may exist in those places and they implement the exact same functions with the exact same options, the binary files are different. You can't run x86 binaries on SPARC or vice versa.
    While the Solaris binaries provide the exact same functionality, the same is not necessarily true with other packages that can be added. Sun's Java Enterprise System is supposed to eventually have all the same programs for SPARC and x86, and that is almost true already. StarOffice is only available for now for SPARC, but OpenOffice is available for both. Third party software may exist only for one or the other, but this is improving fast. A huge amount of Solaris x86 software can be installed from blastwave.org and other sites.
    If you are a developer, there is a good chance that your code for SPARC will work on x86 with just a recompile. The system call APIs are identical. If it does not work with just a recompile, it is because you have a bug in your code or you used non-portable constructs like assuming a particular byte order (SPARC is big endian, x86 is little endian).
    Solaris and most SPARC hardware both come from Sun, so of course Solaris supports all the hardware you are likely to find shipped with a SPARC machine. You can buy x86 machines from Sun, but you are likely to look elsewhere. Since Sun does not control what is in the machine, Solaris may not support all the hardware. Again, this situation is getting better. Still, you should consult Sun's Hardware Compatibility List. Note that Sun isn't good about saying this, but Solaris 9 supports all of the hardware in the Solaris 9 list and all of the hardware in the Solaris 8 list. You must look in both places to see what Solaris 9 supports.
    Richard

  • Minimal compile & link files for sun sparc?

    hi.
    i have been developing an oci dir path project using redhat linux 7.3 (2.4.x.) & gcc 2.96. (see http://sourceforge.net/projects/odpd/) i am using a dev copy of ora9i release 9.2.0.1.0 installed on the linux dev machine. i would like to compile the project on a sun sparc box using sun's C++ compiler 5.3.
    so, i would like to get my hands on solaris versions of headers & libraries for #include & linking. i don't see any need to actually run the app against an installed version of ora9i under solaris; i just want to compile & link. further, i don't have root# access on target machine, so ora9i install isn't really an option.
    the target machine:
    $ uname -a
    $ SunOS nydev-app2 5.7 Generic_106541-23 sun4u sparc SUNW,Ultra-4
    on the linux dev machine:
    $ ls -laF $ORACLE_HOME/lib/libclntsh*
    lrwxrwxrwx 1 oracle 16 Aug 31 2002 /u01/app/oracle/product/9.0.1/lib/libclntsh.so -> libclntsh.so.9.0*
    -rwxr-xr-x 1 oracle 9.8M Aug 31 2002 /u01/app/oracle/product/9.0.1/lib/libclntsh.so.9.0*
    if anyone can help me get relevant files for compile & link, please contact me: asdrury at sourceforge dot net.
    tia. asd

    Go to http//otn.oracle.com. On the downloads menu select Oracle Instant Client.
    From the 'Instant Client Downloads' page you should be able to find IC packages to download for available platforms, e.g. Solaris SPARC 64-bit. (Latest version is 11.2.0.3.)

  • How to integrate a Solaris x86 server on Sun Management Center ?

    Hello people,
    I want to integrate a Solaris x86 server on Sun Management Center platform.
    If I'm not wrong, SunMC doesn't run for Solaris x86, server and client only as console with Java.
    In speat of it, I try to install Sun Management Center 3.0 Agent for Solaris x86.
    It seems to be ok, install packages, but when execute es-setup script, intents to create the following directory:
    /opt/SUNWsymon/base/bin/sparc-sun-solaris2.8
    I supose that in this directory, SunMC will install sparc binary files
    At this point, I can't follow the installation and abort it.
    Can anybody give me ideas to install and integrate my solaris x86 server on SunMC ?
    Thanks

    Hi Hisham,
    hishooooo wrote:
    Dear Gents,
    I have one X86 Solaris Server configured and installed to be Sun Management Center Server.
    successfully i could monitor the Sun Solaris Servers after i have installed the SMC agent on them.
    my problem is that i could not install the SMC agent on Red Hat Linux. as i could not find an easy document or steps to do so.
    could you guide please?If you still have a copy of your SunMC media around, the same ["es-inst"|http://docs.sun.com/app/docs/doc/820-2215/command-line-1?l=en&a=view] program you use to install Solaris Agents should work on Linux as well. It autodetects OS type and will install Solaris packages or RPMs as appropriate.
    Regards,
    [email protected]
    http://www.HalcyonInc.com

Maybe you are looking for

  • Weird Error from Content Server

    We are using Apache-Tomcat, I have built some content server portlets that display images, if I use .jpg's I get these strange errors, I have seen them when using bitstreaming on other Non-content server portlets, my solution was to use png's. Creati

  • A conflicting version of CS6 exists...

    I've made multiple attempts to install the trial Photoshop CS6 and keep getting the same error; 'A conflicting or prerelease version of Adobe Photoshop CS6 exists on this computer.  The conflicting version must be removed before installing the curren

  • MIRO / MIR 7  - Query

    Friends,   I am parking the invoice background using tcode MIR7. Now I want to post it. In MIR7 ther eis no POST button or option. There is a save as completed option only . How to post the invoice then . Is there ant Tcode for this like in FI module

  • Downloading photshop elements...?

    When I go in to download Photoshop Elements it shows me my serial number, but under "download" it says "not applicable"

  • Cant get new updated software asha 205

    Im in indonesia is can't get a new version 4.1 asha 205. Please admin nokia mention operational in indonesia to give it soon