Need help with iPod and iTunes

I recently purchased a jail broken iPod Touch 4th Gen. and I am having issues syncing it to iTunes and whenever I try to, it always comes up with hundreds of error messages, can anyone help? And also, I am having issues updating iTunes.

See Here
iPhone, iPad, or iPod touch not appearing in iTunes
From Here
http://www.apple.com/support/itunes/devices/

Similar Messages

  • Help with Ipod and Itunes...

    I have an ipod nano and have been using it successfully until tonight...I plugged it in to the USB port of my computer to upload some new songs and the ipod shows up as E:\ instead of "my ipod". It also says that I've used more space than I actually have. Any ideas on what I should do? Just FYI, I have already restarted my computer(twice), restarted the ipod, restarted itunes, tried using a different usb port, etc. Any other ideas on whats wrong?!?!

    I plugged it in to the USB port of my computer to upload some new songs and the ipod shows up as E:\ instead of "my ipod". It also says that I've used more space than I actually have.
    hmmm. is it showing up like that in your itunes sourcelist?
    if so, it's probably worth checking on this possibility:
    Windows confuses iPod with network drive and may keep iPod from mounting or songs may seem to disappear

  • HELP WITH IPOD AND ITUNES MUSIC

    for a reason unknown my music in itunes has been wiped! just dissapeared.  the music is still on my ipod, the only music i get from my ipod back onto itunes are recent purchases. does anyone know how i can get music from my ipod back onto my itunes?? thank you.

    It has always been very basic to always maintain a backup copy of your computer.  Use your backup copy to put everything back.
    If for some reason you have failed to maintaina  abckup, not good, then you can transfer itunes purchases from an ipod:  File>Transfer Purchases or you can redownload some itunes purchases in som countries:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • Need help with ipod and changing the name

    I am new to using my ipod, and I put my name on it so it shows "(My name) Ipod's), and I was wondering if their was anyway to change the name of the ipod... So it could show something else other than (Mynames Ipod's).. Thanks for your help,
    Adele

    Ok, I'm sorry, I must be an idiot... So I connected my ipod, but where is the source list? I looked for my ipod under My Computer and I do not see anything there.. Can you please explain to me where the source list is, thank you!

  • Help with Ipod and itunes syncing

    Im having trouble syncing my ipod to my itunes library. I restored the Ipod back to factory specs and now when I try to sync my library back on it stops and disconnects in the middle. I have tried this with the same results about 5 times.
    Any ideas?

    I "recreated my iTunes Library" and it worked.
    See this link for details:
    http://docs.info.apple.com/article.html?artnum=302856

  • Need help with playlists and iTunes Match

    I recently subscribed to Match, and once the music was all synced, my playlists were gone from my iPad2 (version 6.0.1). If I create a new playlist on the iPad, it will sync to my Mac, and all will be available on the Mac, but none sync back to my iPad. Do I have to recreate all new playlists for the iPad? Thank you. Greg

    To add to the above, only the new playlist folder on iPad2 will sync to iMac...it will be empty though, no songs.

  • MOVED: [Athlon64] Need Help with X64 and Promise 20378

    This topic has been moved to Operating Systems.
    [Athlon64] Need Help with X64 and Promise 20378

    I'm moving this the the Administration Forum.  It seems more apporpiate there.

  • Need help with JTextArea and Scrolling

    import java.awt.*;
    import java.awt.event.*;
    import java.text.DecimalFormat;
    import javax.swing.*;
    public class MORT_RETRY extends JFrame implements ActionListener
    private JPanel keypad;
    private JPanel buttons;
    private JTextField lcdLoanAmt;
    private JTextField lcdInterestRate;
    private JTextField lcdTerm;
    private JTextField lcdMonthlyPmt;
    private JTextArea displayArea;
    private JButton CalculateBtn;
    private JButton ClrBtn;
    private JButton CloseBtn;
    private JButton Amortize;
    private JScrollPane scroll;
    private DecimalFormat calcPattern = new DecimalFormat("$###,###.00");
    private String[] rateTerm = {"", "7years @ 5.35%", "15years @ 5.5%", "30years @ 5.75%"};
    private JComboBox rateTermList;
    double interest[] = {5.35, 5.5, 5.75};
    int term[] = {7, 15, 30};
    double balance, interestAmt, monthlyInterest, monthlyPayment, monPmtInt, monPmtPrin;
    int termInMonths, month, termLoop, monthLoop;
    public MORT_RETRY()
    Container pane = getContentPane();
    lcdLoanAmt = new JTextField();
    lcdMonthlyPmt = new JTextField();
    displayArea = new JTextArea();//DEFINE COMBOBOX AND SCROLL
    rateTermList = new JComboBox(rateTerm);
    scroll = new JScrollPane(displayArea);
    scroll.setSize(600,170);
    scroll.setLocation(150,270);//DEFINE BUTTONS
    CalculateBtn = new JButton("Calculate");
    ClrBtn = new JButton("Clear Fields");
    CloseBtn = new JButton("Close");
    Amortize = new JButton("Amortize");//DEFINE PANEL(S)
    keypad = new JPanel();
    buttons = new JPanel();//DEFINE KEYPAD PANEL LAYOUT
    keypad.setLayout(new GridLayout( 4, 2, 5, 5));//SET CONTROLS ON KEYPAD PANEL
    keypad.add(new JLabel("Loan Amount$ : "));
    keypad.add(lcdLoanAmt);
    keypad.add(new JLabel("Term of loan and Interest Rate: "));
    keypad.add(rateTermList);
    keypad.add(new JLabel("Monthly Payment : "));
    keypad.add(lcdMonthlyPmt);
    lcdMonthlyPmt.setEditable(false);
    keypad.add(new JLabel("Amortize Table:"));
    keypad.add(displayArea);
    displayArea.setEditable(false);//DEFINE BUTTONS PANEL LAYOUT
    buttons.setLayout(new GridLayout( 1, 3, 5, 5));//SET CONTROLS ON BUTTONS PANEL
    buttons.add(CalculateBtn);
    buttons.add(Amortize);
    buttons.add(ClrBtn);
    buttons.add(CloseBtn);//ADD ACTION LISTENER
    CalculateBtn.addActionListener(this);
    ClrBtn.addActionListener(this);
    CloseBtn.addActionListener(this);
    Amortize.addActionListener(this);
    rateTermList.addActionListener(this);//ADD PANELS
    pane.add(keypad, BorderLayout.NORTH);
    pane.add(buttons, BorderLayout.SOUTH);
    pane.add(scroll, BorderLayout.CENTER);
    addWindowListener( new WindowAdapter()
    public void windowClosing(WindowEvent e)
    System.exit(0);
    public void actionPerformed(ActionEvent e)
    String arg = lcdLoanAmt.getText();
    int combined = Integer.parseInt(arg);
    if (e.getSource() == CalculateBtn)
    try
    JOptionPane.showMessageDialog(null, "Got try here", "Error", JOptionPane.ERROR_MESSAGE);
    catch(NumberFormatException ev)
    JOptionPane.showMessageDialog(null, "Got here", "Error", JOptionPane.ERROR_MESSAGE);
    if ((e.getSource() == CalculateBtn) && (arg != null))
    try{
    if ((e.getSource() == CalculateBtn) && (rateTermList.getSelectedIndex() == 1))
    monthlyInterest = interest[0] / (12 * 100);
    termInMonths = term[0] * 12;
    monthlyPayment = combined * (monthlyInterest / (1 - (Math.pow (1 + monthlyInterest,  -termInMonths))));
    lcdMonthlyPmt.setText(calcPattern.format(monthlyPayment));
    if ((e.getSource() == CalculateBtn) && (rateTermList.getSelectedIndex() == 2))
    monthlyInterest = interest[1] / (12 * 100);
    termInMonths = term[1] * 12;
    monthlyPayment = combined * (monthlyInterest / (1 - (Math.pow (1 + monthlyInterest,  -termInMonths))));
    lcdMonthlyPmt.setText(calcPattern.format(monthlyPayment));
    if ((e.getSource() == CalculateBtn) && (rateTermList.getSelectedIndex() == 3))
    monthlyInterest = interest[2] / (12 * 100);
    termInMonths = term[2] * 12;
    monthlyPayment = combined * (monthlyInterest / (1 - (Math.pow (1 + monthlyInterest,  -termInMonths))));
    lcdMonthlyPmt.setText(calcPattern.format(monthlyPayment));
    catch(NumberFormatException ev)
    JOptionPane.showMessageDialog(null, "Invalid Entry!\nPlease Try Again", "Error", JOptionPane.ERROR_MESSAGE);
    }                    //IF STATEMENTS FOR AMORTIZATION
    if ((e.getSource() == Amortize) && (rateTermList.getSelectedIndex() == 1))
    loopy(7, 5.35);
    if ((e.getSource() == Amortize) && (rateTermList.getSelectedIndex() == 2))
    loopy(15, 5.5);
    if ((e.getSource() == Amortize) && (rateTermList.getSelectedIndex() == 3))
    loopy(30, 5.75);
    if (e.getSource() == ClrBtn)
    rateTermList.setSelectedIndex(0);
    lcdLoanAmt.setText(null);
    lcdMonthlyPmt.setText(null);
    displayArea.setText(null);
    if (e.getSource() == CloseBtn)
    System.exit(0);
    private void loopy(int lTerm,double lInterest)
    double total, monthly, monthlyrate, monthint, monthprin, balance, lastint, paid;
    int amount, months, termloop, monthloop;
    String lcd2 = lcdLoanAmt.getText();
    amount = Integer.parseInt(lcd2);
    termloop = 1;
    paid = 0.00;
    monthlyrate = lInterest / (12 * 100);
    months = lTerm * 12;
    monthly = amount *(monthlyrate/(1-Math.pow(1+monthlyrate,-months)));
    total = months * monthly;
    balance = amount;
    while (termloop <= lTerm)
    displayArea.setCaretPosition(0);
    displayArea.append("\n");
    displayArea.append("Year " + termloop + " of " + lTerm + ": payments\n");
    displayArea.append("\n");
    displayArea.append("Month\tMonthly\tPrinciple\tInterest\tBalance\n");
    monthloop = 1;
    while (monthloop <= 12)
    monthint = balance * monthlyrate;
    monthprin = monthly - monthint;
    balance -= monthprin;
    paid += monthly;
    displayArea.setCaretPosition(0);
    displayArea.append(monthloop + "\t" + calcPattern.format(monthly) + "\t" + calcPattern.format(monthprin) + "\t");
    displayArea.append(calcPattern.format(monthint) + "\t" + calcPattern.format(balance) + "\n");
    monthloop ++;
    termloop ++;
    public static void main(String args[])
    MORT_RETRY f = new MORT_RETRY();
    f.setTitle("MORTGAGE PAYMENT CALCULATOR");
    f.setBounds(600, 600, 500, 500);
    f.setLocationRelativeTo(null);
    f.setVisible(true);
    }need help with displaying the textarea correctly and the scroll bar please.
    Message was edited by:
    new2this2020

    What's the problem you're having ???
    PS.

  • Need help with ipod video/movies

    need help have videos in itunes how do i get them to ipod?

    Double post. Please see your other one.
    http://discussions.apple.com/message.jspa?messageID=3504698#3504698

  • Need help with trim and null function

    Hi all,
    I need help with a query. I use the trim function to get the first three characters of a string. How do I write my query so if a null value occurs in combination with my trim to say 'Null' in my results?
    Thanks

    Hi,
    Thanks for the reply. What am I doing wrong?
    SELECT trim(SUBSTR(AL1.user_data_text,1,3)),NVL
    (AL1.user_data_text,'XX')
    FROM Table
    I want the XX to appear in the same column as the
    trim.The main thing you're doing wrong is not formatting your code. The solution may become obvious if you do.
    What you're saying is:
    SELECT  trim ( SUBSTR (AL1.user_data_text, 1, 3))
    ,       NVL ( AL1.user_data_text, 'XX' )
    FROM    Tablewhich makes it clear that you're SELECTing two columns, when you only want to have one.
    If you want that column to be exactly like the first column you're currently SELECTing, except that when that column is NULL you want it to be 'XX', then you have to apply NVL to that column, like this:
    SELECT  NVL ( trim ( SUBSTR (AL1.user_data_text, 1, 3))
                , 'XX'
    FROM    Table

  • I need help with ipod video...please and thank you

    Hi
    My Ipod is down! I've tried to go on the apple website to help me fix the problem but I think im not getting any progress.
    when i open my ipod, all i see is the little ipod with x's in its eyes ..."sad ipod" and..
    Whenever i connect the ipod to compt with the USB all i see is the battery sign with the thunder...ive tried waiting but no luck...
    I tried to reset it but its not working.
    I cant restore or update bc the updater wouldnt work
    When i go to itunes it would say no ipod connected but yet the ipod is on with the batery and thunder.. I know it has battery but why is it not working
    I tried it on another compt and still not working
    do u think its the usb?
    Please help
    thanks
    much love !!
    edit....
    whoops i realized its in the wrong topic
    SORRY and i dont know how to move it SORRY
      Windows XP  

    So wouldyou recommend that I update? It was made for use with an att sim but was unlocked for use with a tmobile sim... I just so happen to have att. So the phone being locked for att wouldn't be a bother for me. I've just heard of people getting sim card read errors after updating, so I was wondering if I should even bother.

  • Need help with syncing from ITunes to IPOD

    Hi. I'm relatively new to ipods but I just got an IPOD mini. Since it only has so much memory(about 4g) I want to sync specific songs, not have Itunes do it automatically. When I clicked on the "manually manage music" I can see it works but only to a certain extent. You have to drag EVERY SINGLE SONG to IPOD in Itunes INDIVIDUALLY!! I cant do that everytime I wanna switch up my IPOD library. I also clicked "only sync clicked items" hoping that in my normal music library, if I click the box to the left of each song that I want to be synced and uncheck the songs I dont want sync'd that would work. Will it? Because that's all I want to do, just sync particular songs without having to drag 1000 songs. Clicking would be so much easier.

    Using unchecking to manage an iPod is an option but only if you can live with the other things unchecking does:
    Unchecked songs will be skipped when playing songs from the library or a selection. They will only play when individually clicked on.
    Smart Playlists have an option that unchecked songs won't appear.
    Unchecked songs will not be burned to CD.
    A better option to use when your iPod is smaller than the iTunes library is 'Sync Music - Selected playlists'.
    Open iTunes and create a playlist to update your iPod from, call it -iPod to make it the first playlist in Sources. You can make this a normal playlist and drag whatever you want to it or you can make it a random Smart playlist. If you are making a smart playlist limit it to just less than the size of your iPod (for example 3700MB for a 4G iPod Nano or Mini). Now connect your iPod and when it appears in the Source list click on the iPod icon to bring up the preference tabs in the main pane. Go to the Music tab and choose Sync Music and the Selected playlists radio button. Choose the playlist you just made from the selection and click Apply. You can also sync from any existing playlists by choosing the same setting:
    iTunes: Creating playlists of your favorite songs
    How to create a Smart Playlist with iTunes
    Loading songs onto iPod automatically - Windows

  • Help with ipod and computer shut downs...please.

    I've posted this in two other forums to no avail -- lots of views, but no help.
    My family now has 3 ipods (we only had 1 before) and yesterday I was trying to get them all set up - updates on the actual ipod, and I've updated itunes to 7.5. There are two issues here:
    1) I am not able to register ANY of the ipods. I get all the way through the process to the very end and then it gives me an error message (after clicking the "No thanks" at the bottom of the page that asks if you want to download the videos) saying that the service couldn't be found? Or something like that. Ok, fine...I can handle not being able to register them for the time being.
    2) I could keep itunes on all day long, as long as the Ipod is NOT CONNECTED. As soon as I connect the ipod (any of the 3 new ones - they all do the same thing) - ok, maybe not as soon as, but shortly thereafter - my entire computer shuts down. No error message, no blue screen of death, no warning - it just shuts down. It might be after I move a song from the "purchased" folder to the actual ipod. Or, as happened yesterday, it's right smack in the middle of a download (happened with both videos AND songs) and then of course, I have to try and purchase it again. I'm not even sure if it took my money already, but if it did, I'm SOL because I paid, but don't have the video/song since it never finished downloading.
    I've done everything that's been recommended to me - I disabled all my start up programs (except the windows ones) and that didn't resolve anything.
    My system is as follows:
    Windows XP Home Edition (all updated except for microsoft office 2003)
    Service Pack 2
    AMD Athalon 64 3000+
    1.81 GHz
    2GB RAM
    Not sure what else you need to know, to try and help me resolve this. Thanks for your time.

    I've posted this in two other forums to no avail -- lots of views, but no help.
    My family now has 3 ipods (we only had 1 before) and yesterday I was trying to get them all set up - updates on the actual ipod, and I've updated itunes to 7.5. There are two issues here:
    1) I am not able to register ANY of the ipods. I get all the way through the process to the very end and then it gives me an error message (after clicking the "No thanks" at the bottom of the page that asks if you want to download the videos) saying that the service couldn't be found? Or something like that. Ok, fine...I can handle not being able to register them for the time being.
    2) I could keep itunes on all day long, as long as the Ipod is NOT CONNECTED. As soon as I connect the ipod (any of the 3 new ones - they all do the same thing) - ok, maybe not as soon as, but shortly thereafter - my entire computer shuts down. No error message, no blue screen of death, no warning - it just shuts down. It might be after I move a song from the "purchased" folder to the actual ipod. Or, as happened yesterday, it's right smack in the middle of a download (happened with both videos AND songs) and then of course, I have to try and purchase it again. I'm not even sure if it took my money already, but if it did, I'm SOL because I paid, but don't have the video/song since it never finished downloading.
    I've done everything that's been recommended to me - I disabled all my start up programs (except the windows ones) and that didn't resolve anything.
    My system is as follows:
    Windows XP Home Edition (all updated except for microsoft office 2003)
    Service Pack 2
    AMD Athalon 64 3000+
    1.81 GHz
    2GB RAM
    Not sure what else you need to know, to try and help me resolve this. Thanks for your time.

  • Problem with IPod and Itunes

    Hi
    Can anyone please help me I installed Itunes latest version and updated the old version on the PC. Now when I connect my ipod it showsin the side bar of itunes only to give a message saying it is in recovery mode and I need to restore factory settings. After having done this reluctantly - it is supposed to then be visible after the ipod has rebooted in itunes - it isn't and if I connect again says the same thing about recovery mode. I now have an ipod that effectively has nothing on it and I cannot use has any had the same problem or got any ideas?
    Many Thanks
    Karen

    Have you had a chance to look at this troubleshooting page? If not, have a look at the bottom section that covers what to try if the message keeps reappearing: iTunes has detected an iPod in recovery mode - Use iTunes to restore
    Towards the end it says "If after restoring your iPod, the message described above reappears, the iPod drive letter may need to be reassigned. See the "Change the Drive Letter" section of this document for steps to assign a different drive letter" which contains a link to this article: Windows confuses iPod with network drive and iTunes may exhibit strange behavior in relation to the iPod.

  • NEED HELP WITH IPOD 4TH GEN

    I have an ipod touch 4th generation I forgot my password. Every time I try to restore it, it seems as tho its going to work but then comes up with some thing saying THAT I NEED MY PASSWORD. I have no idea what else to do. PLEASE HELP!!

    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen                         
    If recovery mode does not work try DFU mode.                        
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings        
    For how to restore:
    iTunes: Restoring iOS software
    To restore from backup see:
    iOS: Back up and restore your iOS device with iCloud or iTunes
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload most iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store        
    If problem what happens or does not happen and when in the instructions? When you successfully get the iPod in recovery mode and connect to computer iTunes should say it found an iPod in recovery mode.

Maybe you are looking for

  • Change Font / size WEBUTIL function

    Hi I have e question about the function WEBUTIL_FILE.FILE_SELECTION_DIALOG. some customers have approached us that the font size is too small. Is it possible to change the font or the font size of the listed Files ? And is it possible too use it on t

  • BDC to upload DATA

    Hi,      This is my BDC Program to upload batch data into infotype 0006 ans subtype 0001 plz check the code and correct i am getting one error when i compile the error is: Description                            ROW         Type Program ZBDCPA30      

  • I forgot my ipad password and it got disabled and my laptop wont work. i 2nt to do it from my dads laptop but im afraid to lose all my things. How can i open it from my dads laptop but not getting anything erased?

    I forgot my Ipad password and the laptop i used to back up my things doesn't work anymore. Is there anyway i can restore my ipad on another laptop without losing ny things? Thanks in advance, Layan

  • No swap :( [solved]

    following problem: sometimes swap would be mounted, sometimes not! but the log says that it is mostely not mounted ! i never get it to mind, all the time! the log:                                                 http://www.kernel-oops.de/index.php?si

  • Garage band and iMovie gone

    I recently had to erase all date off my mac and reinstalled Lion... afterwards my garage band and iMovie are gone... any idea how to put it back on without having to pay for the download? I had it installed on my mac as I got it in February...