ARGH HELP NEEDED DESPERATELY

I've just found out my processor is 2.33 GHz (top of the line when i got my mac back in march 2007) and i need a 2.5 to install leopard, problem is i already have the discs its tell me its ot possible to install leopard. is there a way around this with out upgrading my processor and is that even possible?

Where are you getting this 2.5 GHz number from?
Here's the requirements for Leopard:
Apple states the following basic Leopard system requirements, although, for some specific applications and actions (such as iChat backdrops) an Intel processor is required:[51]
* Processor must be any Intel, PowerPC G5 or G4 (867 MHz and faster)
* DVD drive (for installation of the operating system)
* At least 512 MB of RAM (additional RAM (1 GB) is recommended for development purposes)
* At least 9 GB of disk space available.
~Lyssa

Similar Messages

  • HELP needed Desperately

    I am very new to programming and I have been trying very hard to get these working. I really need help.
    First I have two buttons; one is a JButton which I intend to click and save data to a file. See Code:
    private void jButton3ActionPerformed(java.awt.event.ActionEvent evt) {                                        
    // I DON'T know how write the code that can use jButton3 to save to
    // the hard drive HELP PLEASE.
    Question two
    I am trying to use another JButton to send an email to my email address from within Java Please see code: below.
    private void jButton4ActionPerformed(java.awt.event.ActionEvent evt) {                                        
    // TODO add your handling code here:
    public void postMail( String recipients[ ], String subject,
    String message , String from) throws MessagingException{
    boolean debug = false;
    //Set the host smtp address
    Properties props = new Properties();
    props.put("mail.smtp.host", "[email protected]");
    // create some properties and get the default Session
    Session session = Session.getDefaultInstance(props, null);
    session.setDebug(debug);
    // create a message
    Message msg = new MimeMessage(session);
    // set the from and to address
    InternetAddress addressFrom = new InternetAddress(from);
    msg.setFrom(addressFrom);
    InternetAddress[] addressTo = new InternetAddress[recipients.length];
    for (int i = 0; i < recipients.length; i++)
    addressTo[i] = new InternetAddress(recipients);
    msg.setRecipients(Message.RecipientType.TO, addressTo);
    msg.addHeader("MyHeaderName", "myHeaderValue");
    // Setting the Subject and Content Type
    msg.setSubject("subject");
    msg.setContent(message, "text/plain");
    Transport.send(msg);
    public void postMail( String recipients[ ], String subject,
    String message , String from) throws MessagingException{
    boolean debug = false;
    Set the host smtp address
    Properties props = new Properties();
    props.put("mail.smtp.host", "[email protected]");
    //create some properties and get the default Session
    Session session = Session.getDefaultInstance(props, null);
    session.setDebug(debug);
    // create a message
    Message msg = new MimeMessage(session);
    // set the from and to address
    InternetAddress addressFrom = new InternetAddress(from);
    msg.setFrom(addressFrom);
    InternetAddress[] addressTo = new InternetAddress[recipients.length];
    for (int i = 0; i < recipients.length; i++)
    addressTo[i] = new InternetAddress(recipients[i]);
    msg.setRecipients(Message.RecipientType.TO, addressTo);
    // Optional : You can also set your custom headers in the Email if you Want
    msg.addHeader("MyHeaderName", "myHeaderValue");
    //Setting the Subject and Content Type
    msg.setSubject("subject");
    msg.setContent(message, "text/plain");
    Transport.send(msg);
    HELP PLEASE

    What does sending e-mail have to do with a JButton? Why do you have all this code in an action method? Can you ever envision where you'd want to send e-mail in a context other than a JButton? If the answer is yes, you should move that e-mail code out into a separate class where you can test it and let any other class that needs it just instantiate an instance and call its methods.
    %

  • Xspf player installation- help needed DESPERATELY

    I've been trying for over 2 months to install the xspf player on my iWeb site.
    This is the URL:
    http://www.innerspheresmusic.com/Audio_4.html
    which shows what I haven't managed !
    I just checked on a Windows PC and the page is blank- not even a blue rectangle. In iWeb, it looks exactly the same as this page viewed on a mac; ie. the player hasn't properly established itself either.
    This is the HTML code I used:
    <object type=”application/x-shockwave-flash” width=”400” height=”170” quality=”high” bgcolor=”#FFFFFF”
    data=”http://www.innerspheresmusic.com/webmusic/xspf_player.swf?
    playlisturl=http://www.innerspheresmusic.com/webmusic/playlist.xspf&autoplay=1&volumelevel=50&timedisplay=1” />
    <param name=”movie”
    value=”http://www.innerspheresmusic.com/webmusic/xspf_player.swf?
    playlisturl=http://www.innerspheresmusic.com/webmusic/playlist.xspf&autoplay=1&volumelevel=50&timedisplay=1” />
    <param name=”bgcolor” value=”#FFFFFF” />
    </object>
    PLEASE can someone help, or I'll need a brain transplant soon !
    Thanks,
    SeaDream.

    Can't really help, but, if it is any consolation, it works very well on my machine (using Firefox)
    hmm...
    (goes to test)
    Okay, good news, works in Safari, works in Opera. Songs load very quickly too!
    Doesn't work in... Internet Explorer. Go figure...
    BTW very nice site, matches the music well (my first impression). And both somehow match your nickname.
    (...and since everyone's a critic ) Your music sounds very clean and quite delicate. I'm going to listen more intently to it later on. Souunds and looks like a nice job, Kay!
    regards, Erik.

  • Adapter Help needed desperately

    Dear All,
    I am attempting to create a new Adapter with integration 2.1 and am hitting a
    brick wall when attempting to create the WAR/JAR/RAR files needed before deployment
    (I think !!!). Has anyone got an example out there of what I need -
    Kind regards
    Tony

    Dear Tony,
    Have you read the ADK guide? See
    http://edocs/wlintegration/v2_1/devadapt/index.htm
    Best regards,
    Timothy Potter
    Senior Software Engineer
    eCommerce Server Division
    BEA Systems, Inc.
    "Chris Stead" <[email protected]> wrote in message
    news:[email protected]..
    Tony,
    There are several sample adapters that ship with WLI 2.1. You can findthem in your
    $WLI_HOME\adapters directory. Specifically, they are the DBMS, EMAIL andSAMPLE
    adapters. We use the ant utility to build and package our adapters. Youwill want to
    look at the build.xml for each adapter to see what we do to package theadapter for
    WLS.
    $WLI_HOME\adpaters\dbms\project\build.xml
    $WLI_HOME\adpaters\email\project\build.xml
    $WLI_HOME\adpaters\sample\project\build.xml
    Cheers,
    Chris
    Tony MAy wrote:
    Dear All,
    I am attempting to create a new Adapter with integration 2.1 and am
    hitting a
    brick wall when attempting to create the WAR/JAR/RAR files needed beforedeployment
    (I think !!!). Has anyone got an example out there of what I need -
    Kind regards
    Tony

  • Install problems - help needed desperately for new Java user

    I have been trying to install Java SE Development Kit 6 - Version 1.6.0_13. Initially I could not get the javac process to work no matter what I tried. After uninstalling and reinstalling numerous times I now have it so that my javac will rewrite my file from a .java to a .class file. Now when I try to execute my Hello.class file I am getting an error message....
    Error occurred during initialization of VM
    java/lang/NoClassDefFoundError: java/lang/Object
    Can anyone please help me fix this? I was really anxious to learn programming but all of these setbacks are really frustrating. I have basic books to help when I am up and running but nothing helps you with problems with installations.
    Please help!!!

    Enigmafae wrote:
    Thank you so much. Worked like a charm! I also installed from Explorer instead of Firefox. Maybe the Firefox installations were incompatible with my XP Environment????Worked fine for me... but I downloaded and then installed... I did NOT "run" the install over the network.
    I don't care I'm just so thrilled it worked. Now I can get to learning the actual programming that I have been trying to get to.
    Thx again for your help!I love it when a plan comes together.
    ~~ Hannibal.

  • Statistical algorithm..help needed for simplification..

    HI,
    I have a complex algorithm which takes almost 900 milliseconds per line to process this . I have to calculate the probability for hundreds of thousand lines. Just imagine if have to calculate this for some 500000 lines which is not feasilble at al.. Can anyone help me in simplifing this algorithm & improve the performance..
    This is very urgent & your help will desperately needed. Pls...pls ..help.
    thanks in advacnce...
    probabilty(int a, int b, int c, int d)     {
         int a1 = 0;
         int b1 = 0;
         int c1 = 0;
         int d1 = 0;
         double p = 0.0;
         double q = 0.0;
         double sum = 0.0;
         if(a*b*c*d == 0) {
              if (d == 0) {
                   a1 = a;
                   a = b;
                   b = a1;
                   a1 = c;
                   c = d;
                   d = a1;
         } else if (((a + 0.0)/(b + 0.0)) < ((c + 0.0)/(d + 0.0))) {
              a1 = a;
              a = b;
              b = a1;
              a1 = c;
              c = d;
              d = a1;
         p = logFact(a+b) +
              logFact(a+c) +
              logFact(b+d) +
              logFact(c+d) -
              logFact(a+b+c+d);
         for (int i=b; i>=0; i--) {
              b1 = i;
              a1 = a + b - b1;
              c1 = a + c - a1;
              d1 = b + d - b1;
              q = logFact(a1) +
                   logFact(b1) +
                   logFact(c1) +
                   logFact(d1);
              sum = Math.exp(p-q) + sum;
              if(a*b*c*d == 0) {
                   break;
         }

    Can you explain what the algorithm is, what it does and why?
    One thing is replacing things like "if (a*b*c*d == 0)" with common sense: "if (a == 0 || b==0 || ..."
    What is logFact? Something expensive that can be optimized while using summation?

  • Help Need ! X-Fi Titanium Championship Fatal1ty Champion Series

    Hi guys,
    i recently bought?this sound card
    i encounter 2 problems which i desperately need help with cause creative isnt giving me a satisfied answer
    Firstly,?i cant update to the latest driver.
    if i update...everytime i try to press any of the buttons(Game mode, x-fi?CMSS 3D, x-fi crystalizer) on the I/O front panel console.
    i seem to lose control of I/O front panel console. i cant control the Main volume,Mic volume or any of my 3 modes using my I/O front panel console,?i can only change them through creative console launcher
    secondly,
    everytime i try change my recording device to "microphone FP". it keeps jumping back to "microphone" which apparently is the port on the sound card itself.
    its kinda stupid to use the mic port on the sound card rather than the I/O front panel port being i paid such a high price for it mainly because of its specs but partially cause it has a I/O front panel.
    someone please help me with this problem cause creative technical support hasnt been able to solve my problem
    so im trying my luck to see if anyone is out there suffering the same problem as me?would?gladly?share his solution with me?to this problem =)

    CRe: Help Need ! X-Fi Titanium Championship Fatalty Champion Seriesx <a rel="nofollow" href="http://forums.creative.com/t5/Sound-Blaster/SB-X-Fi-Series-Support-Pack-2-0-05-5-2009/td-p/527485"]http://forums.creative.com/t5/Sound-Blaster/SB-X-Fi-Series-Support-Pack-2-0-05-5-2009/td-p/527485[/url]
    download the above package. remove everything you have installed originally from the CD, etc. Turn off your internet connection if you have broadband because it will install its own updates through windows updates. Install the above package. Retest your card and I/O bay.
    I have used the above pack with an X-FI Xtreme Music OEM from Dell, an X-FI Fatality Pro PCI, and the Titanium. It works great. Afterwards you can update to the latest drivers without problems. If you start, as you already have, with the newest driver, things just dont work quite right in my opinion.

  • Troubleshoting help needed:  My iMac keeps crashing and restarting with a report detail: "spinlock application timed out"  What can I do to fix this?timed out"

    Troubleshooting help needed:  My iMac keeps crashing and restarting with a notice: "Spinlock application timed out"  What can I do?

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the page that opens.
    Select the most recent panic log under System Diagnostic Reports. Post the contents — the text, please, not a screenshot. In the interest of privacy, I suggest you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header and body of the report, if it’s present (it may not be.) Please don't post shutdownStall, spin, or hang reports.

  • Help needed for writing query

    help needed for writing query
    i have the following tables(with data) as mentioned below
    FK*-foregin key (SUBJECTS)
    FK**-foregin key (COMBINATION)
    1)SUBJECTS(table name)     
    SUB_ID(NUMBER) SUB_CODE(VARCHAR2) SUB_NAME (VARCHAR2)
    2           02           Computer Science
    3           03           Physics
    4           04           Chemistry
    5           05           Mathematics
    7           07           Commerce
    8           08           Computer Applications
    9           09           Biology
    2)COMBINATION
    COMB_ID(NUMBER) COMB_NAME(VARCHAR2) SUB_ID1(NUMBER(FK*)) SUB_ID2(NUMBER(FK*)) SUB_ID3(NUMBER(FK*)) SUBJ_ID4(NUMBER(FK*))
    383           S1      9           4           2           3
    384           S2      4           2           5           3
    ---------I actually designed the ABOVE table also like this
    3) a)COMBINATION
    COMB_ID(NUMBER) COMB_NAME(VARCHAR2)
    383           S1
    384           S2
    b)COMBINATION_DET
    COMBDET_ID(NUMBER) COMB_ID(FK**) SUB_ID(FK*)
    1               383          9
    2               383          4
    3               383          2
    4               383          3
    5               384          4
    6               384          2          
    7               384          5
    8               384          3
    Business rule: a combination consists of a maximum of 4 subjects (must contain)
    and the user is less relevant to a COMB_NAME(name of combinations) but user need
    the subjects contained in combinations
    i need the following output
    COMB_ID COMB_NAME SUBJECT1 SUBJECT2      SUBJECT3      SUBJECT4
    383     S1     Biology Chemistry      Computer Science Physics
    384     S2     Chemistry Computer Science Mathematics Physics
    or even this is enough(what i actually needed)
    COMB_ID     subjects
    383           Biology,Chemistry,Computer Science,Physics
    384           Chemistry,Computer Science,Mathematics,Physics
    you can use any of the COMBINATION table(either (2) or (3))
    and i want to know
    1)which design is good in this case
    (i think SUB_ID1,SUB_ID2,SUB_ID3,SUB_ID4 is not a
    good method to link with same table but if 4 subjects only(and must) comes
    detail table is not neccessary )
    now i am achieving the result by program-coding in C# after getting the rows from oracle
    i am using oracle 9i (also ODP.NET)
    i want to know how can i get the result in the stored procedure itsef.
    2)how it could be designed in any other way.
    any help/suggestion is welcome
    thanks for your time --Pradeesh

    Well I forgot the table-alias, here now with:
    SELECT C.COMB_ID
    , C.COMB_NAME
    , (SELECT SUB_NAME
    FROM SUBJECTS
    WHERE SUB_ID = C.SUB_ID1) AS SUBJECT_NAME1
    , (SELECT SUB_NAME
    FROM SUBJECTS
    WHERE SUB_ID = C.SUB_ID2) AS SUBJECT_NAME2
    , (SELECT SUB_NAME
    FROM SUBJECTS
    WHERE SUB_ID = C.SUB_ID3) AS SUBJECT_NAME3
    , (SELECT SUB_NAME
    FROM SUBJECTS
    WHERE SUB_ID = C.SUB_ID4) AS SUBJECT_NAME4
    FROM COMBINATION C;
    As you need exactly 4 subjects, the columns-solution is just fine I would say.

  • Help needed I have a canon 40D. I am thinking of buying a canon 6D.But not sure that my len

    Hi all help needed I have a canon 40D. I am thinking of buying a canon 6D.
    But not sure that my lenses will work.
    I have a 170mm/ 500mm APO Sigma.
    A 10/20 ex  Sigma   HSM  IF.
    And a 180 APO Sigma Macro or do I have to scrap them and buy others.
    ALL Help will be greatly received. Yours  BRODIE

    In short, I love it. I was going to buy the 5DMark III. After playing with it for a while at my local Fry's store where they put 5DMII, 5DMIII and 6D next to each other, using the same 24-105L lens, I decided to get the 6D and pocket the different for lens later.
    I'm upgrading from the 30D. So I think you'll love it. It's a great camera. I have used 5DMII extensively before (borrowing from a close friend).
    Funny thing is at first I don't really care about the GPS and Wifi much. I thought they're just marketing-gimmick. But once you have it, it is actually really fun and helpful. For example, I can place the 6D on a long "monopod", then use the app on the phone to control the camera to get some unique perspective on some scenes. It's fun and great. GPS is also nice for travel guy like me.
    Weekend Travelers Blog | Eastern Sierra Fall Color Guide

  • Help needed! Raid degraded again!

    Hi!
    Help needed! I hava made bootable RAID with two S-ATAII 250Gb HDD and its not working! Every now and then at bootup I get a message RAID -> DEGRADED... Must be seventh time! Rebuild takes its own time!
    What am I doing wrong!
    T: Ekku
    K8N Neo4 Ultra
    AMD 64 4200+
    2 Gb RAM
    2 x 250 Gb HDD (Maxtor)
    nVidia RAID (in mb)
    P.S. I wery SORRY with my poor language!

    I'm going to blame the nVRAID because I've seen issues with it in the past. If your motherboard has another non-nVidia RAID solution, use that instead. Using the nVidia SATA ports as BASE or JBOD is fine and dandy but RAIDing always had issues. It's not even a driver issue I think it's just instability. Latest drivers and even boxed drivers never helped. Granted, some will report success with their rig. But on a professional level I've seen nForce issues on different motherboards and different hard drives that had RAID disaster stories.
    Good luck and if you don't have another RAID solution, my suggestion would be to buy a dedicated RAID controller card.
    LPB

  • HELP NEEDED WITH ADDAPTER-DVI TO VGA.

    PLEASE ...HELP NEEDED WITH WIRING CROSS OVER....CAN YOU HELP WITH BACK OF PLUG CONNECTIONS...I SORTA UNDERSTAND THE PINOUTS BUT CANT MAKE AN EXACT MACH...WOULD LIKE TO BE 100% SURE...
    ......THIS ENSURES NO SMOKE!!!                                                                                           
    THE CARD IS AN ATI RADEON RX9250-DUAL HEAD-.........ADDAPTER IS DVI(ANALOG)MALE TO VGA(ANALOG)FEMALE.
    ANY HELP VERY MUCH APPRECIATED........ SEEMS YOU NEED TO BE ROCKET SCI TO ATTACH A BLOODY PICTURE...SO THIS HAS BEEN BIG WASTE OF FING TIME!

    Quote from: BOBHIGH on 17-December-05, 09:21:31
    Get over it mate !
    I find it easy t read CAPS...and if you dont like it ...DONT READ IT!
    And why bother to reply...some people have nothing better to do.
    Yes there chep and easy to come by...Ive already got a new one.
    All I wanted was to make a diagram of whats inside the bloody thing...it was a simple question and required a simple answer.
    NO NEED TO A WANKA !!
    I feel a bann comming up.
    Have you tryed Google ? really.. your question is inrelevant. No need to reply indeed.
    Why do you come here asking this question anyway ? is it becouse you have a MSI gfx card ? and the adapter has nothing to do with this ?
    You think you can come in here yelling.. thinking we have to put up with it and accept your style of posting. This is not a MSI tech center.. it's a user to user center.. Your question has nothing to do with MSI relavant things anyway's.
    Google = your friend.
    Quote from: BOBHIGH on 17-December-05, 09:21:31
    it was a simple question and required a simple answer
    Simple for who ? you (buying a new one) ? me ? we ?   .really...........
    Quote from: Dynamike on 16-December-05, 04:11:48
    1: There are allot of diffrent types of those adapters.
    If any of the mods have a problem about my reply.. please pm me.

  • Help needed for grouping.

    Hi,
        Help needed .
    I have an internal table having 6 .
    Ex :
    f1     f2    f3     f4    f5    f6
    a     aa    11    p1  10    10
    a     aa    12    p1  20    20
    b     aa    11    p2  30    30
    b     aa    12    p2  40    30
    Now i want to sum the fields f5 and f6 individually and need to display based upon the fields f1 and f4.
    To Display :
    f1     f2    f3     f4    f5    f6
    a     aa    11    p1  30    30.
    b     aa    11    p2  70    60.
    can anyone help me.How to do this..?
    Thanks

    Here you go
    DATA:
      BEGIN OF cur_tab OCCURS 0,
        f1        TYPE c,
        f2(2)     TYPE c,
        f3(2)     TYPE c,
        f4(2)     TYPE c,
        f5(2)     TYPE c,
        f6(2)     TYPE n,
      END OF cur_tab.
    DATA:
      BEGIN OF sum_tab OCCURS 0,
        f1        TYPE c,
        f4(2)     TYPE c,
        f5        TYPE p,
        f6        TYPE p,
      END OF sum_tab.
    DATA:
      BEGIN OF final_tab OCCURS 0,
        f1        TYPE c,
        f2(2)     TYPE c,
        f3(2)     TYPE c,
        f4(2)     TYPE c,
        f5(5)     TYPE c,
        f6(5)     TYPE c,
      END OF final_tab.
    START-OF-SELECTION.
      cur_tab-f1 = 'a'.
      cur_tab-f2 = 'aa'.
      cur_tab-f3 = '11'.
      cur_tab-f4 = 'p1'.
      cur_tab-f5 = '10'.
      cur_tab-f6 = '10'.
      APPEND cur_tab.
      cur_tab-f1 = 'a'.
      cur_tab-f2 = 'aa'.
      cur_tab-f3 = '11'.
      cur_tab-f4 = 'p1'.
      cur_tab-f5 = '20'.
      cur_tab-f6 = '20'.
      APPEND cur_tab.
      cur_tab-f1 = 'b'.
      cur_tab-f2 = 'aa'.
      cur_tab-f3 = '11'.
      cur_tab-f4 = 'p2'.
      cur_tab-f5 = '30'.
      cur_tab-f6 = '30'.
      APPEND cur_tab.
      cur_tab-f1 = 'b'.
      cur_tab-f2 = 'aa'.
      cur_tab-f3 = '11'.
      cur_tab-f4 = 'p2'.
      cur_tab-f5 = '40'.
      cur_tab-f6 = '30'.
      APPEND cur_tab.
      LOOP AT cur_tab.
        MOVE-CORRESPONDING cur_tab TO sum_tab.
        COLLECT sum_tab.
      ENDLOOP.
      LOOP AT sum_tab.
        READ TABLE cur_tab WITH KEY f1 = sum_tab-f1
                                    f4 = sum_tab-f4.
        IF sy-subrc NE 0.
          WRITE:/ 'Something went very wrong'.
          CONTINUE.
        ENDIF.
        MOVE-CORRESPONDING cur_tab TO final_tab.
        MOVE-CORRESPONDING sum_tab TO final_tab.
        APPEND final_tab.
      ENDLOOP.
      LOOP AT final_tab.
        WRITE:/1 final_tab-f1,
              AT 5 final_tab-f2,
              AT 10 final_tab-f3,
              AT 15 final_tab-f4,
              AT 20 final_tab-f5,
              AT 25 final_tab-f6.
      ENDLOOP.
    and the output
    a   aa   11   p1     30   30  
    b   aa   11   p2     70   60  

  • Help needed on installation of Oracle 9i on Sun Solaris 8

    Hey,
    Help needed on installation of Oracle 9i EE on Sun Solaris 8. The problem I met was: we followed the installation guide from the documentation. And we selected the choice "install software only". After it was done successfully, we run Database Configuration Assistant utility to create a database instance. But finally it always tried to create the instance at the root directory ( / ) which doesn't have enough space and then failed. The case was that we have set the enviroment parameters: $ORACLE_BASE = /export/mydata, $ORACLE_HOME = /export/apps/oracle9i. That means it should be installed at /export/mydata, but it didn't. Any help or advice are welcome. Thanks.
    Simon

    I have downloaded Oracle 11G R2 version from Windows and extracted it in Windows and copied it into DVD after extraction in two folders. Now I am mounting that DVD in Solaris 10 installed in my VMware . I made a new directory named as 'installation ' under /export/home/oracle and copied the folders from DVD to 'installation' folder. Now I am entering installation folder and try to do ./runInstaller as 'oracle ' user and getting the error mentioned before.
    Edited by: 916438 on Mar 31, 2012 5:55 PM

  • Help needed on installation of Oracle 9i EE on Sun Solaris 8

    Hey,
    Help needed on installation of Oracle 9i EE on Sun Solaris 8. The problem I met was: we followed the installation guide from the documentation. And we selected the choice "install software only". After it was done successfully, we run Database Configuration Assistant utility to create a database instance. But finally it always tried to create the instance at the root directory ( / ) which doesn't have enough space and then failed. The case was that we have set the enviroment parameters: $ORACLE_BASE = /export/mydata, $ORACLE_HOME = /export/apps/oracle9i. That means it should be installed at /export/mydata, but it didn't. Any help or advice are welcome. Thanks.
    Simon

    I have downloaded Oracle 11G R2 version from Windows and extracted it in Windows and copied it into DVD after extraction in two folders. Now I am mounting that DVD in Solaris 10 installed in my VMware . I made a new directory named as 'installation ' under /export/home/oracle and copied the folders from DVD to 'installation' folder. Now I am entering installation folder and try to do ./runInstaller as 'oracle ' user and getting the error mentioned before.
    Edited by: 916438 on Mar 31, 2012 5:55 PM

Maybe you are looking for

  • Down Loading ALV Output to Excel Sheet

    Hi All, I am working on Vendor Line Items Report which have both Header details as well as line item details. So i developed Heirarical ALV to display the output and it is working fine.But my problem is Downloading output to Excel sheet functionality

  • Not able to synch to outlook

    Since my update of Itunes yesterday my iphone no longer is able to sync to outlook. I am running XP professional on a PC. iTunes recognises the iPhone. It performs a backup which takes half an hour, then it only synchs photos and nothing else. This h

  • EasyVPN :crypto ipsec client ezvpn xauth

    Hi Everytime when I reboot a easyVPN client it is prompting for username and password by prompting following command "crypto ipsec client ezvpn xauth". How do I make connection persistent, so that it won't ask for username and password during next re

  • WLPI 1.2.1 : cannot get demo to run --throws exception

    WLPI gurus/support: I attempted to do the walkthrough on the wlpi edocs site http://edocs.bea.com/wlpi/wlpi121/tutorial. After spending a few hours setting up the workflow, when I do the execute workflow, I get an exception, and no other information

  • Web Elements 2.4 - Encoding Values

    I am using web elements 2.4 on XIR2. I have some cascading dropdown boxes populated with dynamic values from a subreport. This all works fine. However, some of the data has ampersand's in it such as 'B&P Level' Looking at the opendocument URL that th