Early adopter, please help!!!!

Hi, i'm an italian early adopter of iPod Nano 4G, so sorry for my poor english.
I was successful in connecting the first time iPod on my PC, and starting a download process.
After the download ended, the icon of ejecting ipod suddenly disappeared, and appeared a yellow triangle spotting that there was a damage on a file in Itunes.exe: \ipo_control\Music.
My Pc recognized Ipod, but not Itunes.
The other fact was that my iPod spent 1.5g of his capacity for storing...nothing!But the elapsed capacity was signed in the "About" list.
I tried to follow the hints on the apple site, trying to update, to restore, to disinstall and reinstall software, but after by after the situation collapsed, my iPod began not even being recognized by Pc(a generical "removable disposal G: appeared), the update prompts slowed down 'till death,and now if i try to access to the ipod via Pc it prompts that the file directory is damaged and not readable, i wasn't able to do anything, and now i'm stuck in this situation.
Maybe i can try to call the italian green number for assistance, but really my first contact with an apple product was bad.
What could i do now?On the ipod screen every time i connect it the prompt "do not disconnect" continues to roll and roll, i don't know if disconnect, not disconnect for not create a worse situation, i really tried everything but try by try the problems rised up instead of dropping down.
Please help me, thank...

Run the Chkdsk utility
You could run the chkdsk utility on your iPod. But Restoring your iPod has the same effect as running chkdsk. Chkdsk does not wipe your iPod.
1) Enable Disk Mode as above
2) Determine the drive letter of your iPod from My Computer
3) Go to Start, Run
4) Type cmd. Hit Enter to take you to the Command Prompt.
5) Type chkdsk /f X:, where X is the drive letter of your iPod. Hit Enter, and any corrupt files are found and corrected.
http://discussions.apple.com/thread.jspa?threadID=356665

Similar Messages

  • Early Stages, please help. Thanks

    I'm currently a java student (Early Stages) and having problems with a small paint program. I dont expect a direct answer as it is part of assignment, but i am having trouble, the line does not draw now..
    I have tryed the paint(Graphics g) method that does work when i draw a line, but its not what i want. i am now creating a Graphics component directly in the mouseDragged() method.
    Also if you could tell me why the mouse is off when i draw the line.
    import javax.swing.*;*
    *import java.awt.*;
    import java.awt.event.*;*
    *import java.awt.Window.*;
    class RevisedColourGUI extends JFrame {
         int oldX;
         int oldY;
         int newX;
         int newY;
         Color colour = new Color(0,0,0);
         JButton red = new JButton("Red");
         JButton green = new JButton("Green");
         JButton blue = new JButton("Blue");
         JButton black = new JButton("Black");
         JButton erase = new JButton("Erase");
         JScrollBar redBar = new JScrollBar(JScrollBar.HORIZONTAL, 0,1,0,255);
         JScrollBar greenBar = new JScrollBar(JScrollBar.HORIZONTAL, 0,1,0,255);
         JScrollBar blueBar = new JScrollBar(JScrollBar.HORIZONTAL, 0,1,0,255);
         JLabel redLabel = new JLabel("Red");
         JLabel greenLabel = new JLabel("Green");
         JLabel blueLabel = new JLabel("Blue");
         JPanel scrollPane = new JPanel();
         JPanel colourPane = new JPanel();
         JPanel drawPane = new JPanel();
         JPanel buttonPane = new JPanel();
         JPanel labelPane = new JPanel();
         JPanel southPane = new JPanel();
         ButtonListener btn = new ButtonListener();
         ScrollListener scrl = new ScrollListener();
         PointerListener pointer = new PointerListener();
         MotionListener motion = new MotionListener();
         RevisedColourGUI() {
              super("TestGUI");
              setupGUI();
         public void setupGUI() {
              Container c = getContentPane();
              drawPane.addMouseListener(pointer);
              drawPane.addMouseMotionListener(motion);
              c.setLayout(new BorderLayout());
              red.addActionListener(btn);
              green.addActionListener(btn);
              blue.addActionListener(btn);
              black.addActionListener(btn);
              erase.addActionListener(btn);
              buttonPane.setLayout(new GridLayout(6,1));
              buttonPane.add(red);
              buttonPane.add(green);
              buttonPane.add(blue);
              buttonPane.add(black);
              buttonPane.add(erase);
              buttonPane.add(colourPane);
              //drawPane.setDoubleBuffered(true);
              colourPane.setDoubleBuffered(true);
              colourPane.setBackground(Color.BLACK);
              scrollPane.setLayout(new GridLayout(3,1));
              redBar.addAdjustmentListener(scrl);
              greenBar.addAdjustmentListener(scrl);
              blueBar.addAdjustmentListener(scrl);
              redBar.setBackground(Color.RED);
              greenBar.setBackground(Color.GREEN);
              blueBar.setBackground(Color.BLUE);
              scrollPane.add(redBar);
              scrollPane.add(greenBar);
              scrollPane.add(blueBar);
              labelPane.setLayout(new GridLayout(3,1));
              labelPane.add(redLabel);
              labelPane.add(greenLabel);
              labelPane.add(blueLabel);
              southPane.setLayout(new BorderLayout());
              southPane.add("Center", scrollPane);
              southPane.add("East", labelPane);
              c.add("East", buttonPane);
              c.add("Center", drawPane);
              c.add("South", southPane);
              drawPane.setBackground(Color.WHITE);
              setSize(400,450);
              setVisible(true);
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         /*public void paint(Grapgics g) {
         class ButtonListener implements ActionListener {
              public void actionPerformed(ActionEvent e) {
                   if(e.getSource() == red) {
                        redBar.setValue(255);
                        greenBar.setValue(0);
                        blueBar.setValue(0);
                   else if(e.getSource() == green) {
                        redBar.setValue(0);
                        greenBar.setValue(255);
                        blueBar.setValue(0);
                   else if(e.getSource() == blue) {
                        redBar.setValue(0);
                        greenBar.setValue(0);
                        blueBar.setValue(255);
                   else if(e.getSource() == black) {
                        redBar.setValue(0);
                        greenBar.setValue(0);
                        blueBar.setValue(0);
                   else if(e.getSource() == erase) {
                        redBar.setValue(255);
                        greenBar.setValue(255);
                        blueBar.setValue(255);
                   repaint();
         class ScrollListener implements AdjustmentListener {
              int r = 0;
              int g = 0;
              int b = 0;
              public void adjustmentValueChanged(AdjustmentEvent e) {
                   r = redBar.getValue();
                   g = greenBar.getValue();
                   b = blueBar.getValue();
                   colour = new Color(r,g,b);
                   colourPane.setBackground(colour);
         class PointerListener implements MouseListener{
              public void mouseClicked(MouseEvent e) {
              public void mouseEntered(MouseEvent e) {
              public void mouseExited(MouseEvent e) {
              public void mousePressed(MouseEvent e) {
                   oldX = e.getX();
                   oldY = e.getY();
              public void mouseReleased(MouseEvent e) {
         class MotionListener implements MouseMotionListener {
              public void mouseDragged(MouseEvent e) {
                   newX = e.getX();
                   newY = e.getY();
                   Graphics g = drawPane.getGraphics();
                   g.setColor(colour);
                   g.drawLine(oldX,oldY,newX,newY);
                   oldX = newX;
                   oldY = newY;
                   repaint();
              public void mouseMoved(MouseEvent e) {
         public static void main(String[] args) {
              new RevisedColourGUI();
    }Do i need a super.paint(g) somwhere?
    Many thanks
    Will

    There are three problems here. First off, you're reassigning oldX and oldY in the mouseDragged() method. This method is called every time the mouse is moved while having a button down - not the behaviour we want (I assume we just want to draw a straight line between (oldX, oldY) and (newX, newY). This can be fixed by simply deleting the appropriate lines (i.e. "oldX = newX;" and "oldY = newY;") in the mouseDragged method.
    Once you do this and run it, you'll find you have a second problem - the line disappears as soon as you stop moving the mouse. Again in your mouseDragged method, you're calling repaint(), which is a method in the JFrame class and actually repaints the entire frame from scratch - again, not what we want. Instead, all you need to do is erase the line by replacing repaint with a call to fillRect() that paints over the panel in the background colour, before painting the new line. By now, your mouseDragged() method should look something like:
    public void mouseDragged(MouseEvent e) {
    newX = e.getX();
    newY = e.getY();
    Graphics g = drawPane.getGraphics();
    // get rid of the previous line...
    g.setColor(Color.white);
    g.fillRect(0, 0, drawPane.getWidth(), drawPane.getHeight());
    // ...and draw the new one
    g.setColor(colour);
    g.drawLine(oldX,oldY,newX,newY);
    }Now the third problem is that your line disappears when you press one of the colour buttons. This is because in the actionPerformed() method of your ButtonListener class, you are again repainting the entire frame. By replacing the call to repaint() with the following:
    Graphics g = drawPane.getGraphics();
    g.setColor(Color.white);
    g.fillRect(0, 0, drawPane.getWidth(), drawPane.getHeight());
    g.setColor(colour);
    g.drawLine(oldX,oldY,newX,newY);You'll have fixed the problem. Better still, put these lines of code into a private method and call it from the actionPerformed() and mouseDragged() methods.

  • Late 07 vs. Early 08: Please help

    A friend offered me a pick between a late 07 and early 08 macbook pro. I remember the early 08 has a penryn chip and less cache.
    Which one is better to have? Thanks

    legaleye300,
    Well, I've gone back and looked at the graphics specs for both models, and it does appear that the older 8600Ms also had DDR3 GRAM. At the time of the early '08 release, there was much mention of the newer GPU's better performance, over the earlier version of the same GPU. So, there must be something else about it that boosts its performance. All of the new models (new in early '08) did come with more GRAM, "stock," but it doesn't seem to me that this alone would account for the higher performance.
    The benchmarks I saw at the time amounted to around 140% of the graphics performance of the previous generation, and fully 200% of the even older Macbook Pros with the X1600. My own experience, comparing my early '08 to its X1600 predecessor, bore this out.
    Regardless of the "little details," there are distinct advantages to the early '08 models, above and beyond the addition of multi-touch capabilities.
    Scott

  • Audio suddenly dose not work!! PLEASE HELP

    I just tried to watch a youtube video and there was no audio. I tried some other things which should have sound, no sound.... I tried raising and lowering the audio level (didn't even play the little poppy sounds for each level of audio change) but still nothing... I tried restarting the computer... Still nothing.... This is the iMac 20" early 2006. please help. thanks for your time...

    Hi kevin.film
    When you plug something into the iMac's output jack the internal speakers are disabled by a micro switch inside of the jack. Maybe the port's internal micro switch is stuck and the MIDI setup thinks you still have a set of headphones plugged in.
    Dennis

  • How do I find out how many files I have, as an earlier version of iTunes told you at the bottom of the screen. Can you please help me.

    How do I find out how many files I have, as an earlier version of iTunes told you at the bottom of the screen.
    Can anyone please help me with this so I know how many music files or video files I have in my collection.

    Have a look here...
    http://osxdaily.com/2012/11/29/5-tips-make-itunes-look-normal/

  • After EFI Firmware update 2.3, MBP Early 2011 will not boot. During restart it all went wrong please help!

    Hello,
    I've done an ample amount of Internet research to find an answer to this problem however nothing yet found is quite like this. I will start from the beginning.
    I am traveling through Europe, and I normally live in California. When I arrived in Ireland my MBP early 2011 15 inch, began crashing constantly when I had several tabs open on Chrome and maybe one or two low CPU/Memory using applications, nothing the 8gb RAM &750gb hard drive can't normally handle. Thus I began trouble shooting.  I ran disk utility once started up and repaired both disk and permissions. Still crashing. It didn't seem like it had anything to do with a kernel panic shut down, I never would receive the usual message indicating so. After that I did an SMC reset. It was still crashing. I then upgraded the OSX from 10.8 to 10.8.4 believing it could help. It did momentarily, but then crash again. (When it crashes screen goes black suddenly and upon pressing power button does a regular boot on my single partition). I decided attempting to repair using the Internet recovery option but it appeared my MBP had not yet have it installed, so I downloaded from Apple and began installing. Here I made a mistake, I unplugged the power source as it was restarting. When the gray screen and apple appeared, the loading bar shows up as it says it will when installing the update, but when the bar fully loads it crashes every time. I've tried starting in safe mode, which then loads but never goes further (I let it stand for two hours such as that and nothing). Then I decided to allow the MBP to fully charge overnight to give it time and charge. This morning the problem has stayed the same, even with power source plugged in. Please help I need this to work.
    Thank you and please ask any questions!

    Your constant crashing problem is probably some type of hardware fault which no update can fix. Doing the 10.8.4 update and then the firmware update just caused further problems. you need to take thr system to a apple store to be diagnosed and fixed if cost effective.

  • How can I sync my iPhone on a different computer without erasing my applications? My iPhone was earlier synced with a PC which I don't use anymore. Please help with proper steps, if any.

    How can I sync my iPhone on a different computer without erasing my applications? My iPhone was earlier synced with a PC which I don't use anymore.
    On the new computer, I am getting a message that my all purchases would be deleted if I sync it with new iTunes library.
    Please help with proper steps, if any.

    Also see... these 2 Links...
    Recovering your iTunes library from your iPod or iOS device
    https://discussions.apple.com/docs/DOC-3991
    Syncing to a New Computer...
    https://discussions.apple.com/docs/DOC-3141

  • I just downloaded the newest version of Itunes.  I can't delete anything and I can't sync to my MP3 player.  I tried deleting it and installing an earlier version of Itunes but it can't read the library.  Please help.

    I just downloaded the newest version of Itunes on my Windows 7 PC.  I can't delete anything and I can't sync to my MP3 player.  I tried deleting it and installing an earlier version of Itunes but it can't read the library.  Please help.

    With iTunes 11 on PCs the drop-down menus are hidden by default - control-B should get the menus to show
    This screenshot is from a Mac, but it should be similar on a PC :

  • HeLp!!! The earlier version of Fifefox supports "Live Connect" but the 3.6 doesn't. I need to downgrade my FireFox to an earlier version for my online classes. I'm desperate because I was supose to start class 10 days ago and cant. Please, help....

    I looked in Firefox properties to find what I Firefox i am using and it shows the following:
    The Firefox File version is: 1.9.2.3951
    The File Name is: 1.9.2.12
    The Product Version is: 3.6.12
    My problem is this: The company I work for "Prudential R.E." has online training courses. I can't access it because I get the following message: "You cannot play the learn 2 course content with this version of netscape" because it has no live connect support"
    The training center for Prudential told me this: ""Currently the LearnCenter does not support Firefox 3.6 but does support the
    earlier versions and this could be the issue.""
    How do I get the earlier version of Firefox?
    And if I can get the earlier version of Firefox. "How do I fix this problem? Do I uninstall all of Firefox and then reinstall the earlier version if I can get access to a download of it somewhere?
    Please Help...
    Thanks

    It seems you need to update Java on your computer.
    See this
    https://jdk6.dev.java.net/plugin2/#LIVECONNECT
    You should be able to do that from the Windows control panel

  • I have a 3gs. everytime i try to connect to a wifi network it asks for a username and password . earlier it used to ask just the password. please help!

    wifi connection asking for username and password!!! tried everything ... earlier it used to ask just the password.. please help!!

    are you connecting to the same SSID or wireless access point ? Has any security settings been changed on the access point ?

  • I have a Keyrig 49 m-audio and it is not recognize by OS 10.9.4 when it says that mavericks is plug and play. I would really like to do what I am able to do on earlier version of OS... Please help

    I have a Keyrig 49 m-audio and it is not recognize by OS 10.9.4 when it says that mavericks is plug and play. I would really like to do what I am able to do on earlier version of OS... Please help

    it the link it seem someone made it work. How can a new OS make things more difficult... it seem crazy too me.
      via: http://community.m-audio.com/m-audio/topics/m_audio_keystation_with_osx_maverick s_9_1_doesnt_work_via_plug_n_play
    pavery85   8 months ago
    **UPDATE*** All is working on Mavericks 10.9.1 for me!! Back in business!
    Drivers seem to working now!

  • One particular song wont play and was playing earlier and now skips please help

    one particular song wont play that could play earlier and now skips please help

    i would delete and re download it from itunes if you purchased it form them

  • HT1420 I have looked everywhere on the menu for this and i cannot locate. From the Store menu, choose Authorize This Computer. (In earlier versions of iTunes, access this option from the Advanced menu).  Please HELP!!!

    I have looked everywhere for this but cannot locate  "From the Store menu, choose Authorize This Computer.  (In earlier versions of iTunes, access this option from the Advanced Menu"   Please help!!  I have been on every iTunes store menu and cannot find "Authorize This Computer"

    On your Computer...
    Open iTunes... 
    If you're using iTunes 11 click on the box icon in the top-left corner to see the " Show Menu Bar " 
    and from the Menu Bar select Store...
    From the Store menu, choose Authorize This Computer.
    When prompted, enter your Apple ID and password, thehen click Authorize.

  • Hello, I have a MacBook pro retina 13" early 2013, and i am not sure if I can use a 4k2k display Monitor with my Macbook, please help!

    Hello, I have a MacBook pro retina 13" early 2013, 2,6 GHz Intel Core i5 and Intel HD Graphics 4000 1024MB,
    and i am not sure if I can use a 4k2k display Monitor with my Macbook, please help!

    Hello, Righten.  
    Thank you for visiting Apple Support Communities.  
    I understand that you want to know if your MacBook Pro will support a 4k display.  Here is an article that will answer your question.  
    Using 4K displays and Ultra HD TVs with your Mac
    Cheers, 
    Jason H.  

  • Hi,earlier i was able to download free games on my ipad2,but now every timr i am trying it is asking for billing information?and even after selecting "NONE" option i am not able to download free games on my ipad?please help me if u have solution.thanx

    Hi ,Earlier i was able to download free games on my ipad2,but now everytime i am trying it is asking for billing information?
    even after selecting "none" option  i am not able to download free games on my ipad ?
    please help me if u have solution for this

    khalid08 wrote:
    Hi ,Earlier i was able to download free games on my ipad2,but now everytime i am trying it is asking for billing information?
    Earlier when - today? Some time in the past? When did this start?

Maybe you are looking for