How do i move itunes from an old computer to a new computer?

I just purchased a new laptop and am trying to put itunes on it.  I have an iphone 3gs.  I authorized the computer and synced but it will not transfer my music.  Help...what am i doing wrong?
Thanks

These are two possible approaches that should work to move an existing library to a new computer.
Method 1
Backup the library with this User Tip.
Restore the backup to your new computer using the same tool used to back it up.
Deauthorize the old computer if you no longer want to access protected content on it.
Keep your backup up-to-date in future.
Method 2
Connect the two computers to the same network. Share your <User's Music> folder from the old computer and copy the entire iTunes library folder into the <User's Music> folder on the new one. Again, deauthorize the old computer if no longer required.
Both methods should give the new computer a working clone of the library that was on the old one. As far as iTunes is concerned this is still the "home" library for your devices so you shouldn't have any issues with iTunes wanting to erase are reload.
I'd recommend method 1 since it establishes an ongoing backup for your library.
Should you be in the unfortunate position where your computer has died with no backup then see Recover your iTunes library from your iPod or iOS device.
tt2

Similar Messages

  • How do i move itunes from my old desktop to new windows 7 laptop

    How do I move Itunes from my old desktop computer which runs Windows XP to my HP Laptop that runs Windows 7.

    1. On the old computer, connect an USB drive, go to the Music folder and copy iTunes folder to the USB drive.
    2. Connect your USB drive to the new computer and copy iTunes folder to the Music folder.
    3. Open iTunes and your library will show on your PC

  • How do I move apps from an old mac to a new one

    I am purchasing a new Macbook Pro after having my old one for six years. I have numerous apps that I have purchased and downloaded over the years. I don't want to loose them and really don't want to have to purchase them again. Can I and how can I move apps from my old Mac to my new one?

    Be sure you back your current system up BEFORE you do anything. If you use Time Machine, migration assistant works well.
    Barry

  • How do I move pse9 from my old laptop to a new one?

        How do I move pse9 from my old laptop to a new one?

    I have my original disk, but I believe I need to de-ctivate the existing copy before installing on the new computer.

  • How do I move mail from an old server to a new server?

    I am rebuilding my server. The new server runs on OS X 10.9.4 with Server 3.1.2. The old server ran OS X 10.9.x and Server 3.x (the exact versions are not known).
    Within the folder /Library/Server/Mail, I found the email stores for both systems.  I have gone through each folder and identified the 36 character string that serves to identify the user's mailbox and paired each one to a user id on both systems.  On the old system, there are multiple mailboxes for some users, and I think it is a result of the users being deleted and recreated: perhaps the system identified the identical name and assumed that the user might be different and therefore created a unique 36 character id for the mail system.
    The trick is, I am trying to recover the mail from the old server.
    I have attempted to copy the files which are human readable and formatted for SMTP transmission to the new server under the correct mailbox corresponding to the owning user (see screen shots below). The simple act of copying the files has not made these files visible via the IMAP protocol. I have tried restarting the mail service hoping that the Server app would rebuild whatever indexes need to be built so that the mail can be served via IMAP, and that has not worked either.
    The question is, how do I get the mail from the old server mail boxes into the new server mailboxes?
    This screen shot shows the location of one mail collection at /Library/Server/Mail/Data/mail/[userid].  Mail sits in the "new" folder only for a moment before being processed and put into the "cur" folder.  Copying mail from the old server into the "new" folder produces an empty "new" folder, but one can see the files populate briefly before they are moved into the "cur" folder.
    The next screen shot shows one email opened in TextEdit.  The format should look very familiar.  This is the same format that one would use to send SMTP requests to an SMTP server.  This particular example happens to be an email from a Gmail account to the PediatricHeartCenter.org domain to test the mail system when the old server was set up.  It was sent on 24 Jan 2014 and had text reading "Intended for Mavericks1. -Jared".

    On further research, I have learned that OS X Server sets Dovecot to use the MailDir format.  The email messages can be removed from the folders and put back, and as long as they were present in the folder to begin with (received by Dovecot originally), they reflect in the Mail.app on client computers.  Deleting a file in the "cur" folder causes the file to disappear in Mail.app. Copying the file back into the "cur" folder will cause the file to reappear without any modification of an index file or any other system component, as long as the file was properly formatted by Dovecot to be identifiable to that folder.
    According to Dovecot.org's review of MailDir found here (http://wiki2.dovecot.org/Ma,ilboxFormat/Maildir), the file name can be broken into simple pieces: " [unixtimestamp].[process id].[hostName],S=<message size>,W=<virtual message size>/2,[status tags]".  The original MailDir++ specification requires the string ":2," to appear after the virtual size, but this file naming format is not legal in Mac OS X, so Dovecot is modified by Apple to use "/2," instead.
    The Dovecot's wiki describes inserting new messages as follows:
    Mail delivery
    Qmail's how a message is delivered page suggests to deliver the mail like this:
    Create a unique filename (only "time.pid.host" here, later Maildir spec has been updated to allow more uniqueness identifiers)
    Do stat(tmp/<filename>). If the stat() found a file, wait 2 seconds and go back to step 1.
    Create and write the message to the tmp/<filename>.
    link() it into new/ directory. Although not mentioned here, the link() could again fail if the mail existed in new/ dir. In that case you should probably go back to step 1.
    All this trouble is rather pointless. Only the first step is what really guarantees that the mails won't get overwritten, the rest just sounds nice. Even though they might catch a problem once in a while, they give no guaranteed protection and will just as easily pass duplicate filenames through and overwrite existing mails.
    Step 2 is pointless because there's a race condition between steps 2 and 3. PID/host combination by itself should already guarantee that it never finds such a file. If it does, something's broken and the stat() check won't help since another process might be doing the same thing at the same time, and you end up writing to the same file in tmp/, causing the mail to get corrupted.
    In step 4 the link() would fail if an identical file already existed in the maildir, right? Wrong. The file may already have been moved to cur/ directory, and since it may contain any number of flags by then you can't check with a simple stat() anymore if it exists or not.
    Step 2 was pointed out to be useful if clock had moved backwards. However again this doesn't give any actual safety guarantees, because an identical base filename could already exist in cur/. Besides if the system was just rebooted, the file in tmp/ could probably be even overwritten safely (assuming it wasn't already link()ed to new/).
    So really, all that's important in not getting mails overwritten in your maildir is the step 1: Always create filenames that are guaranteed to be unique. Forget about the 2 second waits and such that the Qmail's man page talks about.
    The process described by the QMail man page referenced above suggests that as long as a file is placed in the "new" folder, that a mail reader can access it.  The mail reader then moves the file to the "cur" folder and "cleans up" the "new" folder.  This is clearly happening in OS X, because the messages are moving from "new" to "cur", but IMAP is still not serving these foreign messages to the remote readers.
    The thought crossed my mind that perhaps it is the fact that the host name does not match, which would cause the failure, however changing the "host" portion of the name from the old-server to the new-server did not fix the issue.  Even with the new server name in the file name, the inserted message fails to appear in client Mail applications.
    Within the file their is header information that still references the old machine. I'd like to not have to change the email files, because this will violate the integrity of the message. Also, this might take a lot of time or incur risks associated with poor automated processing. The header information should not be referenced by Dovecot, because the wiki page describing MailDir notes that neither Dovecot nor Dovecot's implementation of IMAP refers to the messages header information when moving and serving these mail files.
    Unlike when using mbox as mailbox format, where mail headers (for example Status, X-UID, etc.) are used to determine and store meta-data, the mail headers within maildir files are (usually) notused for this purpose by dovecot; neither when mails are created/moved/etc. via IMAP nor when maildirs are placed (e.g. copied or moved in the filesystem) in a mail location (and then "imported" by dovecot). Therefore, it is (usually) not necessary, to strip any such mail headers at the MTA, MDA or LDA (as it is recommended with mbox).
    This paragraph leads me to believe that after the mail box is identified that the content of the file becomes irrelevant to the system which manages. This suggests that we should be able to inject messages into a mailbox and have the system serve them as though they had belonged in that mailbox all along. Yet I have not found a way to do this.

  • How do I move bookmarks from an old profile to a new profile?

    I have created a new profile for Firefox and have a huge amount of bookmarks in my old profile. How can I move the bookmarks from my old profile to the new one? I have tried backing up my old bookmarks and then restoring them on the new profile's bookmark library, but this didn't work (the file wouldn't show up and when I put it in a folder to force it to show up it wouldn't do anything). So how can I do this?

    http://support.mozilla.com/en-US/kb/Recovering+important+data+from+an+old+profile

  • How do i move Itunes from my old computer to my new one?

    Trying to move Itunes account from old computer to new one.  Am not sure if I install Itunes on new computer will it then allow me to log in and obtain my already purchased games/music or will i lose from old to new computer?

    These are two possible approaches that will normally work to move an existing library to a new computer.
    Method 1
    Backup the library with this User Tip.
    Deauthorize the old computer if you no longer want to access protected content on it.
    Restore the backup to your new computer using the same tool used to back it up.
    Keep your backup up-to-date in future.
    Method 2
    Connect the two computers to the same network. Share your <User's Music> folder from the old computer and copy the entire iTunes library folder into the <User's Music> folder on the new one. Again, deauthorize the old computer if no longer required.
    Both methods should give the new computer a working clone of the library that was on the old one. As far as iTunes is concerned this is still the "home" library for your devices so you shouldn't have any issues with iTunes wanting to erase and reload.
    I'd recommend method 1 since it establishes an ongoing backup for your library.
    If you have an iOS device that syncs with contact & calendar data on your computer you should migrate this information too. If that isn't possible create a dummy entry of each type in your new profile and iTunes should offer to merge the existing data from the device into the computer, otherwise the danger is that it will wipe the information from the device.
    If your media folder has been split out from the main iTunes folder you may need to do some preparatory work to make it easier to move. See make a split library portable.
    Should you be in the unfortunate position where you are no longer able to access your original library, or a backup of it, then see Recover your iTunes library from your iPod or iOS device for advice on how to set up your devices with a new library with the maximum preservation of data.
    tt2

  • How do I move ITunes from my old PC to new laptop

    I have a very old PC and want to move ITunes to a new laptop

    Copy the iTunes Folder (not the iTunes Music Library folder) to an external drive then copy that folder to the new computer after you set up iTunes on it.

  • How can I transfer Itunes from external hard drive to a new computer?

    Hello,
    I had a Dell laptop with Windows XP on it recently crash, but I have everything saved to a Seamagine external 1 terabyte hard drive. I have about 250 gigabytes of media on it, mostly CD's and audiobooks. The setup I had on the XP computer was my Itunes folder saved on the C drive, but I kept all the actual music and audiobooks on the external hard drive, which was labeled the F drive.
    After the crash, a relative sold me their three year old Compaq laptop, with Windows 7 instead of XP as the OS. My relative already had Itunes downloaded on it, but when I opened the Itunes on the new (new to me) laptop, Itunes only recognized their (my relative's) account. So, I uninstalled their Itunes and then I re-downloaded Itunes for 64-bit Windows 7. I then opened the Windows Explorer folder so to drag and drop my backed up Itunes folder and library information from the old C drive to the new Itunes folder in the new C drive. But, it wouldn't do anything. It still wanted the password info from my relative's account. It wouldn't recognize my account, even though I had uninstalled and then reinstalled a newer version of Itunes. Dragging and dropping my backed-up Itunes folder from my external hard drive to the new C drive didn't work because it said it didn't have certain permissions or something like that. I think I might have downloaded a newer version of Itunes, different from what I had saved a couple of days ago, which might be one of the problems here, not to mention that I switched OS's from XP to Windows 7. 
    When I plugged the external hard drive USB into the new laptop no Seamagine manager came up for user-friendly accessibility. I didn't know what to do, so I installed Seagate Dashboard onto the new computer. It didn't do anything for me either. No problem, I thought, I'll just use Windows Explorer to move the Itunes library, and then once I transfer (i.e., drag and drop) the old Itunes folder to the one, all will be as it was. I could then direct my Itunes account to use my external hard drive as the media source folder. I was wrong. It won't let me do that either. It says I don't have permission to do it. 
    How c an I get my old Itunes library info onto the C drive of this new computer, but keep the 250GB of media files on the external hard drive, just like the setup I had on the old laptop before it crashed? If you can help me, then you will be my hero. I'm scared to death that I've lost my library info and afraid to mess with it too much more for fear of erasing it or, worse, losing the 250 GB of media that is on the external hard drive, which has taken me a tremendous amount of time and money to compile. It is, in effect, irreplaceable. I'm very worried and frustrated. I've been working on this for days, to no avail. You're my last hope. Thank you.

    Hmm, I think we should start over...
    Here are the typical layouts for the iTunes folders:
    In the image above the red outline denotes the "media folder", that is the folder listed under Edit > Preferences > Advanced. In the standard layout where the "media folder" is inside the "library folder" the iTunes library has the advantage of being self-contained and portable. Since you've lost the "library folder" from your old computer you're going to have to start over so you might as well get organized properly.
    If the folder curently holding your media files is called G:\iTunes then rename it as G:\Media.
    The support doc How to open an alternate iTunes Library file or create a new one explains how to create a new iTunes library where you want it. In short click the icon to start iTunes and immediately press and hold down the shift key. Keep holding until asked to choose or create a library, click Create and browse to G:\, make sure the folder is going to be called iTunes and click save.
    Move the folder that actually holds the media inside the folder G:\iTunes\iTunes Media. We're going to let iTunes reorganize everything (unless you have a collection of .wav files in which case stop and tell me because they require a different approach).
    Use File > Add folder to library and select the folder G:\iTunes\iTunes Media. iTunes will search through the whole series of subfolders adding all media files into the library and reorganizing them into the correct artist & album folders.
    Again, for data security, you really ought to obtain a second external drive at some point and backup your library to it. Only having one copy, as you have found, leaves you vulnerable to failure. External drives are no less prone to it.
    A) Windows uses \ as a folder separator in path descriptions, Mac uses /.
    B) Do you have a backup of the iTunes folder that was on drive C:\ or are you simply referring to the location of your media as a "backup" when it really the only copy? If you have a backup copy of your "original" iTunes library you could move/copy that to G:\iTunes shift-start-iTunes to open it, and then I can offer tools or techniques for fixing the links that will be broken becuase the drive letter has changed.
    C) Use Store > Sign out and then Store > Sign in to sign into your iTunes account. You will also need to use Store > Authorize the computer to allow playback and transfer of any protected content. If your new library contains protected content from any other accounts then you will have to authorize the computer for those too.
    tt2

  • How do I move music from my old IPhone to a new one?

    My old music is from CD's that I own.  I put them on my phone a couple years ago thru Itunes with no problem.  Now it seems that Itunes will only let me add music to my phone if I buy it from them. 

    I'm using a PC, not a Mac.  My system is using Wi-Fi.  And like I say, using ITunes there is no way to upload my music to my IPhone.  Clicking on devices only gives me the option to Sync, and restore.  I've even tried backing up the old phone, which has the same name as the new one, and then restoring it to the new phone but it won't move the music to the new phone.  I checked out the ITunes Match.  Now I'm not a real bright guy but it looks like Apple wants me to pay them $25 a year to listen to my own music on my own phone.  I mean, it's not like I'm stealing anything.  I paid for the phone and I paid for the music.  Why should I have to pay them to sisten to it? 

  • How do I transfer itunes from my old computer to my new one?

    how do I transfer iTunes from my old pc to my new pc

    Type "move itunes library" or similar into the Google search bar.

  • How can I transfer my music from my old IPod to my new computer with iTunes?

    How can I transfer music from my old IPod to my new computer with iTunes?

    Recover media from iPod
    See this post from forum regular Zevoneer for options on moving your iPod data back to your computer.
    tt2

  • How do i transfer itunes from my old pc to new laptop?

    how do i transfer itunes from my old pc to new laptop?

    Type "move itunes library" into the google search bar.

  • How do I move contacts from my old candybar Nokia to my iPhone?

    How do I move contacts from my old candybar Nokia to my iPhone? - now that I can't import using the old SIM card.

    Perhaps the fastest and simplest way would be to just take both devices to the nearest AT&T corp. store and get them to do it.  Then you can sync the iPhone with Contacts on your Mac (or outlook on your PC) or with iCloud to back them up for safekeeping.

  • I use migrate assistant to move files from my old pc to the new Mac , but it creates the user account. How can i delete the unwanted user account.

    i use migrate assistant to move files from my old pc to the new Mac , but it creates the user account. How can i delete the unwanted user account.

    Welcome to Apple Support Communities
    That's the classic behaviour after using Migration Assistant and that's normal.
    To transfer the data from the new user account to your old user account, you can follow some steps. Here is all the information you need to do this > https://discussions.apple.com/docs/DOC-5472

Maybe you are looking for