Houston we have a problem - can anyone help? Weve had a failed defrag...

Hi,
I have been experiencing a few issues with my macbook, so I popped it into disc utility to verify everything... it identified a few issues that it thought would be sorted if I booted from another drive.
So I booted from my external hard drive, got everything repaired and thought whilst I was there I would give it a defrag. This turned out to be a bad idea.
The defrag failed first time out, so trying not to panic I repaired and tried again and it said it had completed but also provided a device error.
Now the main hd wont load, I get the prohibition sign.
Ive tried booting from the DVD, this identifys the hd in disk utility, (although its greyed out) and allows me to verify and repair... So I try again... prohibition sign once more.
I booted from the DVD and tried to backup from timemachine, this appears to be fine but when I select the drive to backup to the hd doesnt appear...
I attempted a reinstall... but just cant see the hd to install too...
Im running out of ideas! Can anyone help?
Im happy enough to wipe it clean and just back up from time machine... how would i do this?

Hi Thanks,
Your right it wasnt discwarrior, apologies I think it was called disc magic or drive magic (I used my brothers external to boot from so dont know the actual name)it had a graphic of a spinning black disc on a brown (i think!) background with white text swirling around it... sorry to get so esoteric!
Im also unsure about the exact nature of the first failure... I know the defrag failed and it told me to repair the drive again which I did using discwarrior.
When I launch Disk Utility on the Install DVD, It appears that the hd is not mounted, so i assume thats why its unable to install to it, or restore via timemachine to it...
I have a windows 7 bootcamp partition on the drive which is working fine (its what Im working off now)
Hope this helps!

Similar Messages

  • I have two problems, can anyone help?

    My Iphone 4 is having a fit because I am on prepaid optus and anything I buy on my computer tries to download on it, then they stay on loading for days...
    Then my weather app dissappeared...
    Please Help!!!!!!

    Plug the device into the computer.  Sync.
    Problem solved.

  • Gmail on iphone was working fine until yesterday when it prompted me with the message cannot get mail user name or password for gmail is incorrect, i have tried deleting the account and re-created a new account, same problem, can anyone help?

    gmail on iphone was working fine until yesterday when it prompted me with the message "cannot get mail user name or password for gmail is incorrect", i have tried deleting the account and re-created a new account, same problem, can anyone help?

    paulcb, you're a genius, it worked, thank you so much, you don't know how much stress you have taken off my shoulders, I am constantly on my email in my iphone everyday.  Thanks a million, take care. Robert.

  • How do I change DNS to Business Catalyst servers.  I am having problems can anyone help please?

    How do I change DNS to Business Catalyst servers.  I am having problems can anyone help please?

    What problem are you having?
    Have you read this KB? - Domain name and DNS: Quick reference

  • Im not able to use facetime at all. Do some countries have restrictions. Can anyone help me out ? I use a Mac Book pro retina display with OSx Mountain lion

    Im not able to use facetime at all. Do some countries have restrictions. Can anyone help me out ? I use a Mac Book pro retina display with OSx Mountain lion.

    FaceTime for Mac: Troubleshooting FaceTime

  • I have a business and I use iCal for all my appointments, how can I print receipts from my MacBook to a receipt printer? I want my clients to have a receipt of the services that they have paid for, can anyone HELP ME PLEASE?

    I have a business and I use iCal for all my appointments, how can I print receipts from my MacBook to a receipt printer?
    I want my clients to have a receipt of the services that they have paid for, can anyone HELP ME PLEASE?

    Well...I went to the modem (Westell, WireSpeed), found the NAT settings, once again, I'm WAY over my head, I am assuming this is a TCP connection (as opposed to a UDP) and per Lorex my mobile devices will use port 1025.  So I gave it a "global port range" of 1-10 and I indicated that the "base host port" was 80, 1025, & 9000 (ports 1,2,3).  When I selected the 'enable' it asked for a "host devise" my choices are my IPhone, IMac and the IP address for the dvr, so I choose the dvr.  I still cannot connect and canyouseeme still can NOT find these open ports.  This is taking up my whole day! I don't know how people figure this stuff out.

  • TS1702 I downloaded the ap "Teach Yourself Photoshop" but I have no sound, can anyone help?

    I downloaded the ap "Teach Yourself Photoshop" but I have no sound, can anyone help?

    Turn up the volume once you have the app open

  • I bought a new Epson printer WR-7620 on Saturday and the Air Printer is not working. I spoke to Epson and they said it is an Apple problem, can anyone help. Thanks Peter

    I bought a new Epson printer WR-7620 on Saturday and the Air Printer is not working. I spoke to Epson and they said it is an Apple problem, can anyone help. Thanks Peter

    Peter,
    deggie gave you that link so you'd know that airprint is a reduced-options print system, designed for mobile devices (not Macs), and you need to use the specific airprint driver on the Mac when adding the printer if you want Airprint, no-options printing. Otherwise, select the "non-airprint" driver when you add the printer.
    It may be helpful to Reset the Printing System to get OS X to find the right driver.
    Mac OS X: How to reset the printing system - Apple Support
    (And "not working" doesn't help us to help you - please give more detail next time)

  • Hi I have a geometry problem.Can anyone help with java code

    Hi I have a non simple polygon . My job is to make it a simple. for that First I need to find the intersecting lines say line AB intersects line CD. If so then I must replace AB & CD with AC & BD or AD or BC which ever keeps the polygon closed . So can anyone help me out with this code
    import java.io.*;
    import java.awt.*;
    import java.awt.geom.*;
    import java.awt.image.*;
    import javax.swing.*;
    public class Simple{
    static int POINTWID = 4; // size of points
    // the x and y arrays hold the coordinates
    // the B array is the order of the points in the polygon
    // You want to fill the C array with the simple polygon
    static double x[] = new double[200];
    static double y[] = new double[200];
    static int B[] = new int[200]; // the permutation matrix
    static int C[] = new int[200]; // the one that becomes simple
    static SimpleFrame myFrame;
    static int numPoints = 3;
    public static void main(String args[]) {
    makePolygons();
    // Create the frame to draw on
    myFrame = new SimpleFrame();
    myFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    myFrame.setSize(600, 600);
    myFrame.setVisible(true);
    public static void makePolygons(){
    // Build an array of random points in the unit square
    for(int i = 0; i < numPoints; i++){
    x[i] = Math.random();
    y[i] = Math.random();// Sample program
    B[i] = i; // default permutation
    // Create the simple polygon
    createSimplePolygon();
    * This is the only function you need to mess with
    public static void createSimplePolygon(){
    // Initialize the C[] array with the identity permutation
    for(int i = 0; i < numPoints; i++)
    C[i] = i;
    // Bubble sort the points from left to right
    for(int i = 0; i < numPoints; i++)
    for(int j = 0; j < numPoints - 1; j++)
    if(x[C[j]] > x[C[j+1]]){
    int temp = C[j];
    C[j] = C[j+1];
    C[j+1] = temp;
    public static class SimpleFrame extends JFrame{
    public static JSlider numPointsSlider;
    public SimpleFrame()
    super("Create you own Simple Polygon");
    Container content = getContentPane();
    content.setLayout(new java.awt.BorderLayout());
    JTabbedPane tabbedPane = new JTabbedPane();
    tabbedPane.setPreferredSize (new java.awt.Dimension(300, 400));
    tabbedPane.addTab("Scrambled", new ScrambledPanel());
    tabbedPane.addTab("Simple", new SimplePanel());
    content.add(tabbedPane, java.awt.BorderLayout.CENTER);
    // Slider for the number of points
    numPointsSlider = new JSlider (javax.swing.SwingConstants.HORIZONTAL,
    3, 100, 11);
    numPointsSlider.addChangeListener (new javax.swing.event.ChangeListener () {
    public void stateChanged (javax.swing.event.ChangeEvent evt) {
    numPointsSliderStateChanged (evt);
    content.add(numPointsSlider, java.awt.BorderLayout.SOUTH);
    private void numPointsSliderStateChanged (javax.swing.event.ChangeEvent evt) {
    numPoints = numPointsSlider.getValue();
    makePolygons();
    repaint();
    public static class ScrambledPanel extends JPanel{           
    public void paintComponent(Graphics g){
    super.paintComponent(g);
    Graphics2D g2 = (Graphics2D) g;
    // First set the scaling to fit the window
    Dimension size = getSize();
    int Xwid = (int) (0.95 * size.width);
    int Ywid = (int) (0.95 * size.height);
    // First draw the segments
    g2.setColor(Color.red);
    for(int i = 0; i < numPoints; i++)
    g2.drawLine((int) (Xwid * x[B[i]]),
    (int) (Ywid * y[B[i]]),
    (int) (Xwid * x[B[(i+1) % numPoints]]),
    (int)(Ywid * y[B[(i+1) % numPoints]]));
    // Now draw the points
    for(int i = 0; i < numPoints; i++){
    g2.fillRect((int) (Xwid * x) - POINTWID,
    (int) (Ywid * y[i]) - POINTWID,
    2*POINTWID + 1, 2*POINTWID + 1);
    public static class SimplePanel extends JPanel{
    public void paintComponent(Graphics g){
    super.paintComponent(g);
    Graphics2D g2 = (Graphics2D) g;
    // First set the scaling to fit the window
    Dimension size = getSize();
    int Xwid = (int) (0.95 * size.width);
    int Ywid = (int) (0.95 * size.height);
    // First draw the segments
    g2.setColor(Color.red);
    for(int i = 0; i < numPoints; i++)
    g2.drawLine((int) (Xwid * x[C[i]]),
    (int) (Ywid * y[C[i]]),
    (int) (Xwid * x[C[(i+1) % numPoints]]),
    (int)(Ywid * y[C[(i+1) % numPoints]]));
    // Now draw the points
    for(int i = 0; i < numPoints; i++){
    g2.fillRect((int) (Xwid * x[i]) - POINTWID,
    (int) (Ywid * y[i]) - POINTWID,
    2*POINTWID + 1, 2*POINTWID + 1);

    Hi I am sorry I could explain you properly . Ok
    My program gives me a polygon(as you can see when u
    run this program)But the polygon is a non simple
    polygon.So to make this polygon we must remove all
    the crossings betweeen edges in the polygon.The
    algorithm which i gave will remove all the crossings
    and make the polygon simple.You did not give an algorithm!
    SO my job is to take the
    existing code and implement the algorithm for this
    program in the Createsimpelpolygon() function. For
    this First the program must find whether two edges
    cross if they cross then swap the vertices like
    replace AB & CD with AC & BD or AD & BC.Which ever
    keeps the polygon closed . Still not entirely clear to me. You cannot just go and replace vertexes from a polygon: that way you'll end up with a different polygon.
    So as we go on we find the
    many crossings and iterate the algorithm on all the
    crossings until we get simple polygon.Like I said: I don't really understand what it is you're after. You did not respond to my suggestions, so I gather it is not what you're after?
    What about Polygon Tessellation (Google for it)? Perhaps that's what you want.
    Also, why do you not create a (or use java.awt's) Point class and a Polygon class which holds a java.util.Set of Point's? Your current code looks rather messy.

  • HT1414 I have had to restore my ipad to factory settings and then tried to restore the data from the backup on itunes, but none of my apps have restored - please can anyone help as my daughter is going to go mad if I can't get her games back to where they

    I have had to restore my ipad to factory settings, having made a backup on my pc first. When Ihave tried to restore from my pc I have no apps!! Please can anyone help me get them back with all their data. I don't have wifi at home and I have never been able to sync my pc with my ipad, although it works with my iphone! I copied all of the apps before I restored using itunes, but no idea where they are copied to. Any help would be hugely appreciated to get my daughters games back. Thank you in advance )

    Hi Skydiver119
    Thank you so much for taking the time to reply to my problem.
    Yes the purchases were made though my apple id.
    I have looked at a few other questions on this topic and I have read that the app data is stored in the backup file but the apps themselves need to be synced back onto the ipad. Someome has mentioned right clicking on sync my ipad but I don't know where to find that to right click on!! Lol.
    Again, I really appreciate your time and if by any chance you know where I can 'right click' I would really appreciate you letting me know as I can't get my ipad to sync with my pc at all, although it is being picked up in itunes and it has backed up to itunes okay. GGrrr. Maybe I have something wrong in the settings which is not making them compatible?

  • Batch processing problems-can anyone help?

    Setup: Quadcore, 4GB RAM, 4 internal drives all with plenty of space, Leopard OS, latest version.
    Software: CS4 with Photoshop Extended; all updates installed. I also have CS3 installed; only use Bridge and PS in both apps.
    Problem: Working in CS4. All edits/crops/corrections done in the Camera Raw window; all edits saved and viewable in Bridge. However, when I use Batch from the Tools dropdown (Tools > Photoshop > Batch), and check all the usual places, select an Action, select a Destination, and hit "Go", the results are totally weird. Some images process as expected, but many are at least two stops overexposed.
    All individual files will Open, and can be Saved As manually; all works fine. That is in fact how my assistant and I got the job done tonight. The Batch Action is simplicity itself: Open, Save As (JPEG level 9), and Close file—but if I run Batch on the same files that can be opened and Saved As perfectly, it all goes crazy; three quarters of the files are totally overexposed, in blocks (10–25, roughly), and at random.
    I have used the Ctrl + Alt + Shift after opening Bridge; I have run Cocktail; and lit the right incense. But this still will not work properly! Can anyone help???

    Batching the same files in CS3 works perfectly, in terms of the processed JPEGs at least being correctly exposed, but the CS4-only edits (like the healing brush) are not recognised, nor are many, tho' not all, of the crops.
    I have decided to deactivate and uninstall, then reinstall CS4, after upgrading to Snow Leopard. Usually, I wait for a few months for others to report on OS update interactions with CS and FCP, but since CS4 as installed was useless and I had done the usual resets of Preferences without any change to Batch Processing's reliability, I felt I could not be worse off.
    So, after upgrading to Snow Leopard, I will reinstall CS4 (and all apps this time, rather than just PS and Bridge, as I usually do) in case there are soime weird unintended consequences of a Custom install.
    Very frustrating and time-consuming, and I wonder what I might have done to create this problem—seeing as no one commented, I can only assume that this is an unique experience.
    I will report back today, hopefully.

  • Saving Problem, can anyone help me?

    To All,
    I am having a severe problem with saving my GUI.
    Due to the fact i have internal frames, i am using JDesktopPane, and i am trying to save the whole desktop, so that when i load it, i can add this desktop to the GUI again.
    I do this action from the menu "save" and "open" option, but when i do it, there are a lot of exceptions, and does not work.
    Am i doing this the right way? If not can anyone help me?
    Thank You.

    There are a lot of issues with saving off Swing stuff. Note all of the notes about swing serialization only be suitable for short term uses. Its hard to tell from your post, but it sounds like you might be trying to serialize it. The thing to do is to mark all of your swing stuff as tranient, and/or make it externalizable. Then, you save any important data and reset it when you readExternal (things like window position and so on) its a pain , but it should work and you will have more assurance that things saved will work in later releases. You can try different vairations of this, but I suspect the major errors have to do with you trying to save off iomages and so on. Really better to rebuild this stuff then try to unserailize it. More effecient too!

  • Major problem -  Can anyone help?

    Hi,
    A couple of months ago I was downloading the OS update and my computer was turned off (at the plug) by mistake. Since then I can't load up properly in my own user (although other users can access theirs OK).
    All I get is that the wallpaper loads on the desktop and I get a spotlight icon in the top right of the screen and the cursor wheel just spins - and that's it.
    I can't use it or access my files. Can anyone help by telling me how I can:
    a, fix the problem of loading up or
    b, access my files from another user when they don't have priveleges.
    Any help is appreciated as I have some important files I need to get hold of and can't.
    Mac Mini   Mac OS X (10.4.7)  

    Hi,
    A couple of months ago I was downloading the OS
    update and my computer was turned off (at the plug)
    by mistake. Since then I can't load up properly in my
    own user (although other users can access theirs
    OK).
    All I get is that the wallpaper loads on the desktop
    and I get a spotlight icon in the top right of the
    screen and the cursor wheel just spins - and that's
    it.
    I can't use it or access my files. Can anyone help by
    telling me how I can:
    a, fix the problem of loading up or
    b, access my files from another user when they don't
    have priveleges.
    Any help is appreciated as I have some important
    files I need to get hold of and can't.
    Mac Mini Mac OS X (10.4.7)
    Login as a different user, then find the folder on the hard drive where your files are, select this folder in the Finder window and "Get Info" on it from the "File" menu. In the Get Info window go down where it says "Ownership & Permissions" and select the "Details". Change the owner of that folder to the name of the user that you are logged in as. You may need to enter the administrator password to authenticate, this will give you full control (read/write) access to the files inside the folder as admin. Repeat these steps for each folder that has items you want to retrieve. After you retrieve the files you want, you should just do a re-install of the Operating system from the install disk. The system is most likely corrupt and beyond repair since the update was halted by a power failure.
    Good Luck!

  • Jukebox Zen Xtra problems - can anyone help

    Hi
    I have a 30G Xtra Jukebox. Of the original memory I have about 7.5 G free. Problem is I cannot seem to use it. Everytime I transfer from media source the track number goes up but the memory counter stays the same. When I unplug the track are simply not there.
    I have reformatted and reloaded, all fine until I want to add extra then the same problem. I have updated the firmware, cleaned the disk. All to no avail. Is there a maximum number of tracks that I can have, I thought that as long as I have memory I can keep recording?
    Can anyone help. thanks.........................

    The limit is around 6,000 tracks, but varies with the amount of tag data. Lots of tag data and it will be less.

  • Connecion problems, can anyone help?

    Hello,
    Ive recently brought an 8900 from ebay, im with orange in the uk and have the blackberry addon data usage thingy. I've been usign it for a while now, and the connections seems really really slow. So kinda guessed, well GPRS sucks. But I've recently went into the browser settings, and switched from the default Internet to Orange World (wap) and this is like a zillion times faster. On the default it can take up to 2-3minutes for the browser to get off requesting and start loading the page, even on just google, yet on the orange world zip it loads in seconds. Whats the difference here? All my apps run slowly, presuming with the default settings, is there anyway to get these speeds up to that of the wap setting?
    Can't understand why the default internet settings suck so badly. Have just updated all my software, done a reboot from scratch, redownloaded my service books and nothing its still the same. Can anyone help?
    Many thanks,
    Mike

    Have you tried restart your computer and unplug your iPhone from the cable? I sometimes have this problems and I was told to unplug and re-plug the iPhone.
    Hope it helps.

Maybe you are looking for

  • Panasonic Plasma TV - HDMI Audio Noise

    Hi Everyone, I've just bought a iwire minidisplay port to HDMI cable (wonderful I got to say), but somthing strange happens when I connect my MBP13"MI2010 to the TV. The TV is a Panasonic - TX-PF46G20S. When I'm browsing in finder for some seconds, a

  • Use of scroll button on mouse?

    Child just got a macbook air for school's laptop program. Get ready for an endless stream of stupid questions as I try to work with Apple software and hardware. First one: I want to get her a mouse. I see in the Apple store, Apple mice with only two

  • I deleted the HP Smart Web Printing (but kept the link) and now I don't know how to get it back.

    I had 23 Microsoft updates and 12 did not update. I am 73 and not very computer literate. I finally (accidentally) discovered that, at least part of the problem, was that I must have installed Explorer 9. It told me to update to a new driver/software

  • Flash Professional CC -Flash Professional

    I purchased on line March 12 Creative Cloud for Flash Professional (annual renewal). I waited 24 hours, but I have not yet received the serial number. In history billing this message appears: Error: -26 Version: 7001 Component: HTTP_ROUTE Date / Time

  • PSE10 Process doesn't unload when exiting

    This is a recent problem: I'm running PSE-10 under Win-XP. When I finish using PSE, I exit as usual. Then, If I click on the desk-top Icon to launch PSE-10, again, it won't load. Using Windows Task Manager, I see that the Photoshop Elements 10.0.exe