HELP dont know what to do!!

Hi, Just wondering if anyone can help! I really dont know what to do! I am trying to restore my ipod and it says when i click retore 'firm wire disk write error' i really dont know what do about that just wondering if anyone knows here?? Thanks

The thing is, that you must try the suggestions in that article. There are other things that you can try in this post also.
http://discussions.apple.com/message.jspa?messageID=1533747#1533747
They're not easy to follow if you're not computer savvy. Do you have someone at home who can assist and take you through the steps?
There is also a simple thing you can try such as trying another port on your computer. Some ports are not connected direct to the motherboard and do not recognize the iPod as well as those that are. Reset the iPod each time you connect it to another port.
The error means that the computer is having a hard time writing data to the iPod's hard drive, and there could be many reasons for this.
How about taking the iPod to an Apple store? Isn't there one at the Trafford centre?

Similar Messages

  • I download a file in the torrent site which is MP4 but unfortunately i tried to delete it but i can not. but all the files that i have is easily to delete only MP4 files i can't delete in the download foldeer please try to help dont know what to do please

    i download a file in the torrent site which is MP4 but unfortunately i tried to delete it but i can not. but all the files that i have is easily to delete only MP4 files i can't delete in the download foldeer please try to help dont know what to do please

    Well you can sync your iPod/iPhone to yur computer or laptop then take the photos off of your iPod like taking photos of of a SD card (from a normal camera) or off of a USB..! Good Luck. plz tick this saying This solved my question if it helps you.

  • Help Dont know what this code is doing ?????

    i dont know what this code is doing from the for part can some one explain it for me
    i am confused starting at the for statement thanks for the help
    public class LeastToGreatestPlaceHolder {
      public static void main(String []args) {
         int [] myArray;
         myArray = new int[3];
         myArray[0] = 6;
         myArray[1] = 7;
         myArray[2] = 9;
        for (int i = 0; i < 2 ; i++){     // confused here
         for(int j = 1; j < 3; j++) {
           int placeholder = myArray[j];
           if (myArray[i] > myArray[j]) {
             myArray[j] = myArray;
    myArray[i] = placeholder;
    System.out.print(myArray[0]);
    System.out.print(myArray[1]);
    System.out.print(myArray[2]);

    Have you tried running the program and seeing what it outputs?
    Have you considered writing out the state of the array and running through the code by hand?
    I'll give you a [head start|http://java.sun.com/docs/books/tutorial/java/nutsandbolts/for.html].

  • Need help; dont know what this feature is called

    I once read about this feature in Dreamweaver where you could send an editable version of a web page (or pages) to a client to edit. They could make the revisions and send them back to you... and I dont think the client has to have Dreamweaver installed to make the edits. Does this sound like anything that Dreamweaver has?
    Thanks.

    If you build the site to include some form of Content Management System (CMS), client could log-in to the site and make limited changes to text and images from their web browser.   I don't know if that is what you're looking for...
    Some popular CMSs:
    Cushy CMS
    Content Seed
    WordPress
    Drupal
    Joomla
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • Please help dont know what to do send it or keep it

    guys i need help when ever i turn on and off my ipod i always hear a popping sound in my head phones i tried other headphones but same problem and then suddenly the volume of the headphone that came with my ipod suddenly changed like the volume isnt equal other one is louder than other one. what should i do?

    For one thing I always hear I little popping sound when I turn my iPod off or on and thats normal, but if it's big and the volume is messing up then try taking a fine Q-Tip and cleaning the headphone jack hole with it. Hope that works.

  • Array help, dont know what im doing

    All i am trying to do is read in one line of test from an input file and then tokenizer the fist line and place each string char into an index in list format into an array
    Ex, TFTFTFTFT
    Array =
    T
    F
    T
    F
    T
    F
    T
    F
    T
    So later i can make another array and then compare the two , please dont use super complex code still learning , thanks
    import java.io.*;
    import java.util.*;
    public class History
         public static void getAnswers(BufferedReader inp, String[] answers) throws IOException
              int i;
              StringTokenizer token;
              String str;
              str = inp.readLine();
              token = new StringTokenizer(str);
              for(i = 0; i < answers.length; i++)
                   answers[i] = token.nextToken();
         public static void printArray(String[] answers)
              int index;
              for(index = 0; index < answers.length; index++)
                   System.out.println(answers[index] + " ");
    import java.io.*;
    import java.util.*;
    public class HistoryTest
         public static void main(String[] args)throws FileNotFoundException,IOException
               BufferedReader inp = new BufferedReader(new FileReader("a:\\Input.txt"));
             PrintWriter outfile = new PrintWriter(new FileWriter("a:\\outfile.out"));
             History hs = new History();
              String[] answers = new String[20];
              hs.getAnswers(inp, answers);
              hs.printArray(answers);

    is this allowed, My answer array prints out fine my other two arrays do not, this is input file
    TFFTFFTTTTFFTFTFTFTF
    ABC276 TTFFTFTFTFTTFFTTFFTF
    HTYD22 TTFFFTFTFTFFFFTFTFTF
    HDHJHH TTTTTTTTTTTTTTTTTTTT
    FHSDYG FFFFFFFFFFFFFFFFFFFF
    import java.io.*;
    import java.util.*;
    public class History
         public static void getAnswers(BufferedReader inp, int[] answers) throws IOException
              String str;
              int i;
              for(int g = 0; g < answers.length; g++)
                   answers[g] = inp.read();
         public static void printArray(int[] x)
              int index;
              for(index = 0; index < x.length ; index++)
                   System.out.println(x[index] + " ");
         public static void getRestofInfo(BufferedReader inp, String[] student, int[] responces) throws IOException
              StringTokenizer tokenizer;
              String strstudent;
              strstudent = inp.readLine();
              tokenizer = new StringTokenizer(strstudent);
              //can use student.length for both array termination varible since student # must == responces
              for(int i = 0; i < student.length; i++)
              {     student[i] = tokenizer.nextToken();
                   responces[i] = Integer.parseInt(tokenizer.nextToken());
    } import java.io.*;
    import java.util.*;
    public class HistoryTest
         public static void main(String[] args)throws FileNotFoundException,IOException
               BufferedReader inp = new BufferedReader(new FileReader("a:\\Input.txt"));
             PrintWriter outfile = new PrintWriter(new FileWriter("a:\\outfile.out"));
             History hs = new History();
              int[] answers = new int[20];
              int[] responces = new int[20];
              String[] student = new String[20];
              hs.getAnswers(inp, answers);
              hs.printArray(answers);
              System.out.println();
    } 84
    70
    70
    84
    70
    70
    84
    84
    84
    84
    70
    70
    84
    70
    84
    70
    84
    70
    84
    70
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    null
    null
    null
    null
    null
    null
    null
    null
    null
    null
    null
    null
    null
    null
    null
    null
    null
    null
    null
    null
    Press any key to continue . . .

  • Help! I was downloading apps and my 4th generation froze, so I turned it off and restarted it twice. And it is just on the screen with the apple i dont know what to do. Please help!

    I was downloading apps that i deleted and my 4th generation froze. So i turned it off and restarted it and nothing happened. It is just showing me the apple screen after you restart it. I dont know what to do please help!

    Try:
    - iOS: Not responding or does not turn on
    - If not successful and you can't fully turn the iPod fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - If still not successful that indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.

  • SOME PLEASE HELP ME I DONT KNOW WHAT TO DO.....(M-audio)

    SOME PLEASE HELP ME I DONT KNOW WHAT TO DO..... SO I RECIEVED MY M-AUDIO MOBILEPRE SOUNDCARD. I CONNECTED THE USB TO MY MACBOOK (2009-2010) AND I CAN CHANGE MY COMPUTERS OUTPUT TO THE M-AUDIO MOBILEPRE... SO IT SHOWS ITS CONNECTED. NEXT I DOWNLOAD THE M-AUDIO MOBILEPRE DRIVER IT CAME WITH IN THE BOX AFTER THAT IT SHOWS ITS CONNECTED ALL GOOD....BUT WHEN I DOWNLOAD THE DRIVER "M-AUDIO MOBILE PRE USB" I PLUG IN MY SPEAKERS AND IT SAYS "UNABLE TO CONNECT TO M-AUDIO MOBILEPRE. IS IT TURNED ON?" AND ITS OBVIOUSLY TURNED ON AND CONNECTED......SO MY COMPUTER READS THE SOUNDCARD BUT IT WONT LET ME CONFIGURE THE SOUND SETTINGS IN THE "M-AUDIO MOBILEPRE USB" DRIVER ....WTH IS M-AUDIO MOBILEPRE THE SAME THING AS M-AUDIO MOBILEPRE USB???? IF SO HOW DO I CONFIGURE THE SOUND SETTINGS IN MY COMPUTER!!!

    Contact M-Audio support, I suspect they will have further information that you need rather than this forum.

  • HT1349 I cant update my apps?? Billing info needed but when i type it in it says to contact itunes support..? dont know what to do HELP!

    Ok so my app store app has 23 at the top which means to update my apps but when i press update and type in my pass word it starts to update but then this message poped up saying " we have a problem with your billing info."  so i press continue and i type in the billing info and then it says to contact itunes support for this transaction  and so when i call the guy on itunes support he answered and he told me to get online so i did and now i dont know what to do..? all i need is to updat my apps and it wont let me ! This is so aggravating! HELP

    I would suggest contacting itunes support as it tells you to do.

  • HT4623 I just got an ipad and I use att/yahoo for a server, it comes with free mcafee virus software, but my ipad says that it cant download it because of my upgrade to higher over 6.1.0 and I dont know what to do can anyone help me,want to have mcafee on

    I just got an Ipad and I really dont know much about them its a 32gb 4g wi-fi, I use at&t as my server(dsl) and that works fine but I need to download my mcafee which comes with my at&t for free but it wont let me download it says I need more than 6.1.0and I dont know what to do can anyone help, I know someone that has 1 just like mine but she doesnt use a antivirus and doesnt have any trouble but,,, I have a laptop and a desktop and I use mcafee on both,, so any suggestions, I just down know what to do,,, can anyone give me input on what to do, and I also what to know is there anyway I can use my portable device that I got thru at&t that I can buy minutes on, is there an adapter for this ipad that I can use this on,, help I need all I can get,, thanks chrystie

    You can not install it.
    Only apps from the official Apple App Store can be installed.

  • I need help. My ipad 2 was stuck in recovery mode. i tried to connect it to itunes and restore but after downloading the file and extracting the software there is a pop up message that says "the device is full" i dont know what to do. Its been 2 days now.

    I need help. My ipad 2 was stuck in recovery mode. i tried to connect it to itunes and restore but after downloading the file and extracting the software there is a pop up message that says "the device is full. Deleting files and emptying your recycle been will help you restore." how am i going to erase files if i can't open my ipad. i dont know what to do. Its been 2 days now. please help. thanks.

    yes i am sure. This are the exact words... "The iPad "iPad" could not be restored. The disk you are attempting to use is full. (Removing files and emptying the recycle bin will free up additional space". i tried some options, hard reset, redsnow, tinyumbrella but still it's stuck.

  • My iphone wont turn on but when i plug it in to charge the apple logo comes on and turns back off after a few seconds i dont know what to do i need help

    my iphone wont turn on but when i plug it in to charge the apple logo comes on and turns back off after a few seconds i dont know what to do i need help

    Hello warhogs17,
    After reviewing your post, it sounds like the iPhone will not turn on past the Apple logo. I would recommend that you read this article, it may be able to help the issue.
    If your iPhone, iPad, or iPod touch doesn't respond or doesn't turn on - Apple Support
    Thanks for using Apple Support Communities.
    Have a nice day,
    Mario

  • HT2693 Pls Pls Pls Help me my iphone is stucked on conect to itunes its not working , unresponsive,i dont know what happen with my iphone my friends telling me that may be your iphone no jailbreak , but i dont want to make this happen i dont need it.

    Pls Pls Help me >>> i bougt my iphone just 1 years ago,i dont know what happend with my iphone,its unresponsive,showing only connect to itunes ,and when i tried to restore after that messgae came on my laptop that Error 21, could not restore ,,, my friends telling me that may be somebody trying to jailbreak your mobil so this was the reason can happen but i dont want any kind of jailbreak i want my iphone back to my work plss help me i m very poor person i cant efford to buy again this phone

    Anyone have any suggestions? or is everyone else just as clueless as me !

  • I did hold the ALT cmand r key but i cant see the globe i dont know how i can fix my macbook pro late 2008 can any 1 plzzzz help me im very upsate but i live PAKISTAN in here i cant find os x lion disk i dont know what to do if i get the os x lion usb

    i did hold the ALT cmand r key but i cant see the globe i dont know how i can fix my macbook pro late 2008 can any 1 plzzzz help me im very upsate but i live PAKISTAN in here i cant find os x lion disk i dont know what to do if i get the os x lion usb

    That does not work on model year older then 2010 and really doesn't work on any older then late 2011 models.
    You will need a set of original system dvd disc thjat are always sypplied with every mac sold before Lion came out. Systems older then late release early 2011 models.
    If you don't have them you kcan order a replacement set from apple by calling them. Have the serial number of you mac handy.

  • HT1212 I updated my ipad to ios7 and now it asks me for a passcode, I never had a passcode on it so dont know what to do HELP

    Hi All
    I upgraded my ipad to ios7 but now it is asking for a passcode. I never had a passcode on it before, now dont know what to do.
    HELP
    Gabrielle

    I had to call Apple Support and they walked me through the restore procedure.
    We first had to delete the old account from iCloud and then do a restore from iTunes.
    Even with Apple Support's help, it took a few tries.
    We had skipped the adding a passcode during the ios7 update.
    The helpdesk said we must have inadvertently, but I know that we did not:
    i.e. we just pushed a "Don't add a passcode" button (I don't remember the exact text)
    on the touchscreen and nothing else.
    We had to restore from a few month old iTunes backup -
    The lady at the Apple Support call desk was very nice and helpful,

Maybe you are looking for