Help needed at OSX problems on my iMac

Hi
I tried to install Boot Camp and Win XP on my iMac, but something went wrong. Now I cant find the partition with both operation systems on....
Then I tried the OSX installation program by using install disc 1, but the setup program wont find the partitions.
In "disctools" (am not sure about the right name in english) the disc is found but "locked", and I cant delete/reformat or anything....
What should I do?
Best regards
Mick O

I refer you to my post in another thread;
Problem with boot camp and Mac won't boot.

Similar Messages

  • Help Needed in resolving problems with Hyperion Planning Web Forms

    Hi,Can anyone help me with this problem?Problem:We are running Planning 2.3.1 I have created Webform & security(application owner has the ownership).Somehow Iam getting only 7 dimensions into webform & 1 dimension is missing in that. But whereas 8 dimensions are there in Essbase.Hsp_Rates dimension is available in essbase outline but Iam unable to see that dimension in the webform selection.And using the webform Iam unable to load any data ...the form is graded/protected.Is this happening because i dont have the requirement of 1 member from each Dimension?Please someone let me know why this is happening what might be the reason.ThanksUser

    Hi,The dimension Hsp_Rates is a hide dimension used by Planning to store the exchange rates for the differentes exchanges.All the standard information is stored on HSP_InputValue member (in this dimension).When you create a web form, Planning automatically asign this member (but don't show it).Probably you can't load data because you are selected on Version dimension a Standard Botton Up version, and you only can load data on level 0 members in this type of version.If you want to load data on upper level members, then you need to create a Standard Target version (in the Version dimension) and select it in the form.Please, advice if this solve your problemClaudioBPD Solutions

  • Help needed with 848p problem

    hi allll
     i have buyed new MSI 848p Neo and i have the following hardware  
    CPU: 2 GHZ 533 P4
    Memery : 256 DDR 2700
    GC: MSI 848 p
    HD: WD 10 GB
    when i connacted everting only the processer  fan was working the hard drive and the CD doesnot work (POST)
    if i unplage the Hard drive and the CD it will work (POST)  
    the problem is the Pc doesnot Post only the processer  fan and i have blank screen ?
    help needed
    thanks  

    Try this.
    Put your optical drives like CD-ROM drive to IDE 1 and set as Primary Master aka Master mode and put your HDD to IDE 2 and set as Secondary Master aka Master mode also.
    Btw, what is your PSU specs?

  • Help needed with Layout problem

    Hello everybody
    I need to insert components such as buttons in a JPanel using absolute positioning
    I still cant dot this
    even if I used the method setLocation for the component
    I wanna know if I have to change the default layout for JPanel or whatever
    thanks a lot

    i found this quite useful:
    http://java.sun.com/docs/books/tutorial/uiswing/layout/visual.html#border
    dont know if it will specifically help with your absolute positioning problem.

  • Urgent help need on swing problem

    Dear friends,
    I met a problem and need urgent help from guru here, I am Swing newbie,
    I have following code and hope to draw lines between any two components at RUN-TIME, not at design time
    Please throw some skeleton code, Thanks so much!!
    code:
    package com.swing.test;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    import javax.swing.*;
    import javax.swing.event.*;
    public class LongguConnectLineCommponent
        public static void main(String[] args)
            JFrame f = new JFrame("Connecting Lines");
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(new ConnectionPanel());
            f.setSize(400,300);
            f.setLocation(200,200);
            f.setVisible(true);
    class ConnectionPanel extends JPanel
        JLabel label1, label2, label3, label4;
        JLabel[] labels;
        JLabel selectedLabel;
        int cx, cy;
        public ConnectionPanel()
            setLayout(null);
            addLabels();
            label1.setBounds( 25,  50, 125, 25);
            label2.setBounds(225,  50, 125, 25);
            label3.setBounds( 25, 175, 125, 25);
            label4.setBounds(225, 175, 125, 25);
            determineCenterOfComponents();
            ComponentMover mover = new ComponentMover();
            addMouseListener(mover);
            addMouseMotionListener(mover);
        public void paintComponent(Graphics g)
            super.paintComponent(g);
            Graphics2D g2 = (Graphics2D)g;
            g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                                RenderingHints.VALUE_ANTIALIAS_ON);
            Point[] p;
            for(int i = 0; i < labels.length; i++)
                for(int j = i + 1; j < labels.length; j++)
                    p = getEndPoints(labels, labels[j]);
    //g2.draw(new Line2D.Double(p[0], p[1]));
    private Point[] getEndPoints(Component c1, Component c2)
    Point
    p1 = new Point(),
    p2 = new Point();
    Rectangle
    r1 = c1.getBounds(),
    r2 = c2.getBounds();
    int direction = r1.outcode(r2.x, r2.y);
    switch(direction) // r2 located < direction > of r1
    case (Rectangle.OUT_LEFT): // West
    p1.x = r1.x;
    p1.y = r1.y;
    p2.x = r2.x + r2.width;
    p2.y = r2.y;
    if(r1.y > cy)
    p1.y = r1.y + r1.height;
    p2.y = r2.y + r2.height;
    break;
    case (Rectangle.OUT_TOP): // North
    p1.x = r1.x;
    p1.y = r1.y;
    p2.x = r2.x;
    p2.y = r2.y + r2.height;
    if(r1.x > cx && r2.x > cx)
    p1.x = r1.x + r1.width;
    p2.x = r2.x + r2.width;
    break;
    case (Rectangle.OUT_LEFT + Rectangle.OUT_TOP): // NW
    p1.x = r1.x;
    p1.y = r1.y;
    p2.x = r2.x + r2.width;
    p2.y = r2.y;
    if(r1.y > r2.y + r2.height)
    p2.y = r2.y + r2.height;
    break;
    case (Rectangle.OUT_RIGHT): // East
    p1.x = r1.x + r1.width;
    p1.y = r1.y;
    p2.x = r2.x;
    p2.y = r2.y;
    if(r1.y > cy)
    p1.y = r1.y + r1.height;
    p2.y = r2.y + r2.height;
    break;
    case (Rectangle.OUT_TOP + Rectangle.OUT_RIGHT): // NE
    p1.x = r1.x + r1.width;
    p1.y = r1.y;
    p2.x = r2.x;
    p2.y = r2.y;
    if(r1.y > cy)
    p1.y = r1.y + r1.height;
    p2.y = r2.y + r2.height;
    if(r1.y > r2.y + r2.height)
    p1.y = r1.y;
    else
    if(r1.y > r2.y + r2.height)
    p2.y = r2.y + r2.height;
    break;
    case (Rectangle.OUT_BOTTOM): // South
    p1.x = r1.x;
    p1.y = r1.y + r1.height;
    p2.x = r2.x;
    p2.y = r2.y;
    if(r1.x > cx && r2.x > cx)
    p1.x = r1.x + r1.width;
    p2.x = r2.x + r2.width;
    break;
    case (Rectangle.OUT_RIGHT + Rectangle.OUT_BOTTOM): // SE
    p1.x = r1.x + r1.width;
    p1.y = r1.y + r1.height;
    p2.x = r2.x;
    p2.y = r2.y;
    break;
    case (Rectangle.OUT_BOTTOM + Rectangle.OUT_LEFT): // SW
    p1.x = r1.x;
    p1.y = r1.y + r1.height;
    p2.x = r2.x;
    p2.y = r2.y;
    if(r1.x > r2.x + r2.width)
    p2.x = r2.x + r2.width;
    if(r1.x > cx && r2.x > cx)
    p1.x = r1.x + r1.width;
    p2.x = r2.x + r2.width;
    return new Point[] {p1, p2};
    private void determineCenterOfComponents()
    int
    xMin = Integer.MAX_VALUE,
    yMin = Integer.MAX_VALUE,
    xMax = 0,
    yMax = 0;
    for(int i = 0; i < labels.length; i++)
    Rectangle r = labels[i].getBounds();
    if(r.x < xMin)
    xMin = r.x;
    if(r.y < yMin)
    yMin = r.y;
    if(r.x + r.width > xMax)
    xMax = r.x + r.width;
    if(r.y + r.height > yMax)
    yMax = r.y + r.height;
    cx = xMin + (xMax - xMin)/2;
    cy = yMin + (yMax - yMin)/2;
    private class ComponentMover extends MouseInputAdapter
    Point offsetP = new Point();
    boolean dragging;
    public void mousePressed(MouseEvent e)
    Point p = e.getPoint();
    for(int i = 0; i < labels.length; i++)
    Rectangle r = labels[i].getBounds();
    if(r.contains(p))
    selectedLabel = labels[i];
    offsetP.x = p.x - r.x;
    offsetP.y = p.y - r.y;
    dragging = true;
    break;
    public void mouseReleased(MouseEvent e)
    dragging = false;
    public void mouseDragged(MouseEvent e)
    if(dragging)
    Rectangle r = selectedLabel.getBounds();
    r.x = e.getX() - offsetP.x;
    r.y = e.getY() - offsetP.y;
    selectedLabel.setBounds(r.x, r.y, r.width, r.height);
    determineCenterOfComponents();
    repaint();
    private void addLabels()
    label1 = new JLabel("Label 1");
    label2 = new JLabel("Label 2");
    label3 = new JLabel("Label 3");
    label4 = new JLabel("Label 4");
    labels = new JLabel[] {
    label1, label2, label3, label4
    for(int i = 0; i < labels.length; i++)
    labels[i].setHorizontalAlignment(SwingConstants.CENTER);
    labels[i].setBorder(BorderFactory.createEtchedBorder());
    add(labels[i]);

    If you need some help, be respectful of the forum rules and people will help. By using "urgent" in the title and bumping your message every 2 hours you're just asking to be ignored (which is what you ended up with).

  • Help needed setting up itunes on restored iMac.

    I had to do a clean install of Lion on my iMac.  I backed up all iTunes files.
    I am confused on what would be the best way to rebuild my iTunes library so that it will sync with my jphone.  Do I have to erase my iPhone and resync with newl I am also confused as to what will I need to sync my iPhone with the newly built iTunes library.
    As you can see I am quite confused on best approach to take to setup new iTunes and sync with iPhone.
    I look forward to your assistance on this matter.
    Thanks....Bruce

    hi GooseMan!
    this Buegie post might be of some help with that:
    http://discussions.apple.com/click.jspa?searchID=-1&messageID=2231034
    love, b

  • Help needed. Having problems loggin in to my computer

    Hi,
    I recently upgraded to Mac os X 10.5, and since then I have been having all kinds of problems loggin in to my computer. It is not recognizing my password. I reset the Admin password using the install dvd disc, but that still didn't help. I loggin but I don't have access to any of my files or documents. Could someone please help.
    Thanks in advance.

    you really need to decide if you are going to reinstall or try to fix your current system. I just posted a long answer to your other thread.
    is your current account listed as admin in system preferences?
    and what happens if you try to log into your old account?
    Message was edited by: V.K.

  • Help need to Recover data from 2009 iMac failing drive won't boot?

    How can I boot my 2009 iMac which came with Snow, from my macbook pro yosemite to recover my data on iMacs failed drive?

    Yes in target mode can I do wirelessly? or does it need wired firewire cable between the computers?I want to try to repair from disc utility and recover my data using my data rescue app first.Will there be any problems using
    macbook pro which is using
    yosemite?

  • Helped needed. PPPoE problem

    In trying to secure my wireless connection, I changed a lot of the router's default settings. Somewhere along the line, I have lost the ability to get to the internet on the Linksys. Here are the sys details.
    WIN XP
    Westell 2100 broadband modem
    Linksys WRT54G
    I usually have everything set so that the Westell is in Bridged mode. The problem was nothing was secure.
    Here is what is on the Linksys.
    PPPoE,  
     User Name:  It is correct.
                             Password:          It is correct.                      
                             Service Name:                                      
                            Connecton Demand : Max Idle Time  5  Min.                 
                            KeepAlive : Redial Period    Sec.       180    
                 Optional Settings
    (required by some ISPs)
                             Router Name:                           
                                         Host Name:                              
                             Domain Name:                                     
                             MTU:                           
                             Size:                             
    Network Setup                                                                                     
    Router IP                                 Local IP Address:         .   .  .                           
                             Subnet Mask:                           
    Network Address
    Server Settings (DHCP)                                   DHCP Server:             Enable  Disable             
                             Starting IP Address:     192.168.1.                  
                             Maximum Number of  DHCP Users:                             
                             Client Lease Time:         minutes (0 means oneday)                  
                             Static DNS 1:   .  .   .                          
                             Static DNS 2:   .  .   .                          
                             Static DNS 3:   .  .   .                          
                             WINS:              .  .   . 
    IP address: 192.168.1.101
    Mask is correct
    Gateway:   192.168.1.1
    There are no ACCESS Restrictions, no MAC Filters, Wireless Security is currently DISABLED. I have pushed the reset button on the Linksys (and the Westell, too) trying to fix things and  nothng changed.
    Here is what is on the desktop.
    Dhcp enabled:                   Yes 
    Autoconfiguration enabled: Yes 
    IP address:                       192.168.1.101
    Subset Mask:                    255.255.255.0
    Default Gateway:               192.168.1.1
    Dhcp Server:                     192.168.1.1
    DNS servers:                     192.168.1.1 
    I have done power cycles to no avail. 
    Any help will be appreciated. 

    Since you have Resetted your Modem and Router. Connect the Modem to Computer and check if you are able to go online or not. If yes, then on your computer open the Command Prompt window and type "ipconfig" and hit enter and post the details output in your next post.
    If the IP address of your Modem is in the range of your Router, then your modem is Unbridge so you need to Bridge your Modem again. 

  • Help needed with OSX Server 10.5.8

    We're running a headless Xserve (RackMac3,1) with OSX Server 10.5.8 that did its job flawlessly.
    Now we want to update the Perl software from 5.8.6 to 5.20.0 or newer. After downloading the suitable version from CPAN we tried to install, but get the following msg:
    Uh-oh, the C compiler 'cc' doesn't seem to be working.
    You need to find a working C compiler.
    Either (purchase and) install the C compiler supplied by your OS vendor,
    or for a free C compiler try http://gcc.gnu.org/
    I cannot continue any further, aborting.
    Is there a way to install the missing tools remotely via the command line (SSH)? A step-by-step recipe would be most welcome.
    - Harald -

    RackMac3,1 is PPC/G5 processor so you are not going to have an easy time with this. Perl 5.2.20 is bleeding edge (OS X 10.10.3 comes with v5.16.3).
    I would leave Apple's installation of Perl, etc. on the server strictly alone and install MacPorts:
         The MacPorts Project -- Home
    and work from there. You aren't likely to get a step-by-step recipe because its not an exercise a rational person would chose to spend time on.
    Have you considered rewriting whatever features in your code require Perl 5.2.20 than to upgrade your server? Or buy a new server, you could probably pick up a Mini for about $200.
    C.

  • Help needed with connection problem before I chew off my foot.

    I am on 24/7 with Virgin.
    From last Friday, my connection telephone number has been constantly engaged.
    BT tell me it is not a valid number (?).
    I can access the internet just by changing the number in remote access to the one I'm using now - a pay by the minute number.
    This leads me to believe thay my settings are correct - as they have been for a considerable time.
    Virgin have responded once with a standard reply confirming the telephone number (useless) to four e-mails. There is an unconnected (no pun intended) 'server' problem with their 'online help'.
    I am on Netscape or IE, external Zoom modem and I haven't done anything which might alter my settings.
    Any help would be much appreciated - even sympathy might make me feel better!
    Please bear in mind that I am a techno-idiot with any advice offered.
    Thanks in advance.

    I get a perpetual 'engaged' tone with a mechanical woman telling me that the number is busy, please try later.
    The 'helpline' is a premium number. Cleverly, I have had premium numbers blocked on my 'phone line to defeat the fraudsters re-directing calls.
    This means that I have to use someone else's 'phone to call a premium number!
    Since last Friday, I have sent a total of six e-mails to Virgin and received one 'standard' reply which was of no help.
    I agree that it seems like an ISP problem.
    However, perhaps someone could kindly talk me through the things I ought to be checking on my computer (in words of one syllable where possible!).
    Thankyou in anticipation.

  • Help needed with permissions problem in new Aperture 3.5.1

    Hello and thank you for helping me with my first question to this wonderful support center. I have been using Aperture for many years. I recently upgraded my Mac to Mavericks, now running 10.9.2. and then upgraded (by necessity) to Aperture 3.5.1. I am working on a big project for a client and have an assistant in another city. I live outside the US so mailed  my library to my asst. on an external drive. She updated to 10.9.2 or .3 and Aperture 3.5.1. No problems. She modified the library and sent the library to the client in another city in the US on an external drive who has also upgraded to  Mavericks and is running Aperture 3.5.1.  So we are all in Mavericks with recent Apertures. When client tried to open the sent library client got a message that stated:
    "Aperture cannot access this library. To use this library, make sure its file permissions are set correctly.”
    Clientʻs Tech assistant at her office is a PC specialist but apparently did try on Friday and did try to repair permissions but I am told that it did not work. I wish I had more specific info on what Tech assistant did but I do not at this time.
    On Monday I would like to give them very specific instructions about what to do to open the library
    For recent discussions I have found only this
    https://discussions.apple.com/message/23600132#23600132
    Oct 30, 2013 3:35 PM by Frank Caggiano
    about repairing permissions.
    I am sure that we are all running Mavericks and new Aperture, that does not seem to be at the root of  the immediate problem. As we are in two different countries and three different cities and communication is hard, please tell me if this is a common problem with an easy fix and if it should be fixed by Repairing Permissions, please tell me exactly what I should tell them to do on Monday. They can at least see this discussion from their city!
    Many thanks!! This is an urgent project so I very much appreciate your help.

    Have your collegues check the file system of the drive and the "Ignore Ownership on this volume" flag.
    To check the filesystem and "Ignore ownership" flag select the drive in the Finder and use the command "File > Get Info ⌘i"
    In the panel unlock the padlock in the "Sharing & Permissions" brick and set the "Ignore ownership" flag at the bottom of the panel.
    Also, check the "General" brick of the panel. The format should be showing as "Mac OS Extended (Journaled)". Aperture checks for the correct formating before opening a library and may refuse to open a library on a drive formatted for Windows.
    If the format is wrong, it would be best to move the library to a different drive with the correct formatting.
    Once the "Ignore ownership" flag is set, try again to repair the permissions and see, ifyou now can open the library.

  • Help needed in logic problem

    HI,
    I am trying to implement one marketing application, where the goods will be dispatched via some transportation. The receipt name is lr number or lrno. Some times for same lr no., 2-3 goods will be dispatched. Now, I am developing one application, if an user selects the from and to date from the web page, the web page should display all the lrno. Form date to to-date, its destination place and total amount, etc. These values are coming from backend.
    Eg.
    Trname      Lrno           dt          amt
    BLR     LR300          1/2/05          1000
    MUM     LR400          1/2/05          2000
    MUM     LR400          1/2/05          100
    MUM     LR400          1/2/05          200
    DL     LR600          3/2/05          1000
    My problem is if there are 2-3 goods for same lrno, the amounts should add up and final amount should come. Only in one record.(in one row). In the above example, for MUM 3 rows are there. So, the trname, lrno, dt shuld be same , but the total amount of all the three records should be added up and display.
    Expected output
    BLR     LR300          1/2/05          1000 as it is displayed
    MUM     LR400          1/2/05          2300// it should display like this.
    DL     LR600          3/2/05          1000 // as it displayed.
    My output as follows: I cold add the amount, but, each time, the record is displayed. Like this
    BLR     LR300          1/2/05          1000 //correct output
    MUM     LR400          1/2/05          2000 //this should not display
    MUM     LR400          1/2/05          2100 // this should not display
    MUM     LR400          1/2/05          2300 //Only this record should be displayed.
    DL     LR600          3/2/05          1000 //correct output
    Code sample as follows:
    <%
    while(rs.next())
              trfamt=rs.getInt("cfrta");
              String carnam=rs.getString("ccara").trim();
              String lrdt=rs.getString("clrd").trim();
              String lrnum=rs.getString("clrn").trim();
              brk="y";
              cnt1=0;
              cnt=cnt+1;
              out.println("Counter="+cnt);
              if(cnt==1)
                   subtot=trfamt;
                   tmp=lrnum;
              }//end of if(cnt==1) cndition
              else
                   if(lrnum.equals(tmp)) //compares whether two lrno are same or not.
                        brk="n";
                        subtot=subtot+trfamt; // if lrno are same, its amount is added up
                        //carnam1=carnam;
                        //lrnum1=lrnum;
                        System.out.println(lrnum+""+tmp+" "+"Lr numbers are same.totaling is continued");
                        tmp=lrnum;
                        cnt1=cnt1+1;
                        }//end of if     
                   else
                        if(cnt1==0)
                             subtot=0; // if lrno are different, fresh totaling is done
                             subtot=trfamt;
                             System.out.println("Lr numbers are different.Fresh Totaling is done");
                             tmp=lrnum;
                             }//end of if(cnt1=0)condition
                   }//end of else
                   }//end of if(cnt==1)condition else part
         if((cnt==1)||(brk.equals("y"))||(cnt1>0))
                        {%>
                        <TABLE>
                        <TR>
                             <TD><%out.println("Carier Name="+carnam);%></TD>
                             <TD><%out.println("Lrnumber="+lrnum);%></TD>
                             <TD><%out.println("Amount="+subtot);%></TD>
                        </TR>
                        </TABLE>
                        <%}
         }//end of while condition %>          
    How to correct this error ! please help me.
    With regards,
    AShvini

    Thank you Ram.
    I will try your code. ok, i took another look at it and dont see y it shouldnt
                            if(lrnum == mc.getLrNum())
                  //if this has already been added, just update amount
                  mc.addAmount(trfamt);
                  dupRecord = true;
                                               break; //it would work correctly even without this, but y do unnecessary iterations if id found
    ,/code]
    Since past 3 days, i am struggling with this bug. SO,
    i asked for line by line compilation. As u said, i
    tried to download IDE from www.ecllips.com, but,
    stuckup somewhere. so, i gave up.
      don't give up, install eclipse (or any other ide), it would do wonders to ur development effort.
    I will try with your code and get back to u.
       cool :-)
    ram.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • More help needed on m2v problems!

    I have also been having problems when I try to import compressed (using Compressor) video files in SP 4. I have repaired file permissions and shortened the name of the file (as recommended in previous posts), but every time I try to import the file into SP, it closes the program and gives me an error report. When I try to open the file by itself, if opens Droplet. When I hit "submit," it freezes the program. Also, other compressed video files (that I have burned DVD's with in the recent past) don't work. They all do the same thing. It was all working fine last week (about two months after I upgraded Production Suite), and all of a sudden it's making me loose hair.
    Another thing I should mention: I have very little space left (1.89 GB) on my internal hard drive. This filled up very quickly, and I'm not quite sure how. When I started my computer yesterday, I had 5.5 GB. Before that, I had even more, though I'm hazy on the details. Anyway, I would GREATLY appreciate any help that's out there! Thanks!

    One thing (which may or may not help) is clearing off you hard drive, 1.89 Gigs on 80 Gigs will lead to the computer slowing down considerably, anything over 80% seems to be the number of more problems creeping up, and you should clear out as much as possible. With temp files, virtual memoory etc, it causes issues

  • Help need with dire problem please.

    Hi all, my 24 inch iMac has spat the dummy! I installed a trial version of Photo Shop and somehow while attempting to install the program I got a weird series of screen images with the prohibition sign......never seen this one before.
    Tried to do a restart, but the grey Apple screen came up with rapidly repeating logo's, 'prohibition' and question marks and others too.
    I though maybe an 'archive and install' might be the way to go, but first tried all the keyboard commands to get it going, not successful!
    Initially the archive and install got going OK but I decided to abort the installer and go back, restart the installer and try to get into disc repair. I thought this would enable me to delete the offending installer for Photo Shop.
    Now I find I cannot get the Leopard disc to fire up. A grey screen comes up with the circulating wheel, but no boot up. I have Disc Warrior, but this disc also is not recognised.
    I have tried all this several times to no avail. I have everything backed up to my EHD. Cannot access this either at the moment. Thank goodness for my MacBook.
    Can anyone shed some light on this problem. I would be most grateful if you could.
    Ron Begg, Australia

    Since your startup volume install was aborted, your disk never got "blessed" as a startup volume, that's one reason why your running into so many problems.
    Also you might be "locked out" of the volume due to install abort.
    Do this First -
    Restart with the Command and S keys held down (single user mode)
    and enter the following commands
    (one at a time - pressing return after entering them):
    mount -uw /
    chown root:admin /
    chmod 1775 /
    again at the command prompt type:
    /sbin/fsck -fy
    Repeat fsck until no errors found.
    Once fsck has run successfully-
    again and lastly at the command prompt type:
    reboot
    If everything was successful, you should be able to get your
    Leo install disk to boot or anything else you would like to try.
    Kj

Maybe you are looking for