Can you have more than one ipod on the same computer?

me and my sister live together and we would like to be able to have two seperate libraries on the same computer. one library is already there and when the second ipod is plugged in, it comes up as a sub-library that is unacessable.

There are basically two ways of using multiple iPods on a computer and these involve:
a) Sharing a single iTunes library and or user account or
b) Creating multiple user accounts.
Note: When you are sharing an iTunes library, you don't have to set each iPod to update in the same manner, you can mix and match from the options below as each iPod has it's own update settings
Sharing a Library and/or User Account
If you want to share the one library, you can set either or all of the iPods so that they only get updated with only certain playlists (you can update from more than one if you wish):
Loading songs onto iPod automatically - Windows
Choosing the update option "Sync Music - Selected playlists" allows you to create a playlist specifically for the iPod and drag the tracks you want into it. If you tire of the list and want to change it, you just add or remove the songs you don't want. The ones you take out out remain in the library to be used some other time if you choose. You can read more about playlists at these links:
iTunes: Creating playlists of your favorite songs
How to create a Smart Playlist with iTunes
Or you can choose to update any or all of the iPods manually and just drag whatever content you want to them: Managing content manually on iPod
Loading the iPod shuffle differs slightly but it can still be used with the others, for details have a look at this page: Loading songs onto iPod shuffle - Windows
It's also possible to have multiple libraries in a single account. To create or access a second (or more) library, hold down the Option key (or Shift key in Windows) when launching iTunes 7. In the resulting dialogue you will get the option to create a new library or navigate to the other Library.
Note: You can only have one Library open at a time and iTunes will default to the last library opened if you don't use the keyboard command to choose one. This can prove tricky when using multiple iPods, if you don't use the keyboard command you can risk syncing to the wrong library:
Using multiple iTunes libraries -Windows
Separate User Accounts
Another option is to create a separate User account for each person on your PC or Mac. Different accounts by definition would give you completely separate libraries. Each account has it's own iTunes folder, Library and iTunes Music folder and you load it with CDs etc just as you did with your original one. The iPod can be set to update however the owner chooses, sync all, manual or sync specific playlists
I don't use Windows so I can't give you a step by step on that one, however I can point you to another web page which should help you out. You can read about Windows user accounts here:
Using Windows XP User Accounts

Similar Messages

  • How Can I Update More Than One Ipod on the Same Computer?

    I've had my 30G Ipod since April 2006. For Christmas 2006, I bought my sister a 2G Ipod. I cannot figure out how to put songs on her Ipod as we both share the same computer and Itunes Library. I've already asked Ipod Corporate for help via their FAQ section regarding more than one Ipod operating with the same computer, but their advice (which told me to create a playlist small enough for her Ipod and checked as a shared playlist) did not work for me. I'd really appreciate any help with my problem. Owning an Ipod but being unable to listen to it, as I'm sure many people would agree, is quite annoying.

    There are basically two ways of using multiple iPods on a computer and these involve:
    a) Sharing a single iTunes library and user account.
    b) Creating multiple user accounts and having separate libraries.
    Sharing a Library
    If you want to share the one library, you can set either or all of the iPods so that they only get updated with only certain playlists (you can update from more than one if you wish):
    Loading songs onto iPod automatically - Windows
    Choosing the update option "Sync Music - Selected playlists" allows you to create a playlist specifically for the iPod and drag the tracks you want into it. If you tire of the list and want to change it, you just add or remove the songs you don't want. The ones you take out out remain in the library to be used some other time if you choose. You can read more about playlists at these links:
    iTunes: Creating playlists of your favorite songs
    How to create a Smart Playlist with iTunes
    However since you seem to have a problem with that method you can choose to update any or all of the iPods manually and just drag whatever content you want to them: Managing content manually on iPod
    Separate User Accounts
    Another option is to create a separate User account for each person on your PC or Mac. Different accounts by definition would give you completely separate libraries. Each account has it's own iTunes folder, Library and iTunes Music folder and you load it with CDs etc just as you did with your original one. The iPod can be set to update however the owner chooses, sync all, manual or sync specific playlists
    If you are unfamiliar with setting up Windows user accounts you can read more here: Using Windows XP User Accounts

  • HT1296 Can you sync more than one iphone to the same computer without having the two combine all information?

    Am I able to sync to iphones to the same computer, but have both phones and information on both stay separate? I do not have a computer at this time and want to sync my phone on my brother's computer for backup purposes. Is this possible?

    Create a new user login (with a password) for your stuff.
    This way, your data won't get mixed up.

  • Can you have more than one iphone on the same itunes account

    My friends wife has just brought an iphone 5 and given his old one to her husband. They both use the same itunes account because they only have one computer. The husband has gone onto the new phone with his sim card started deleting stuff and it is deleting it from the iphone 5. They are on the same icloud account im guessing. Can they have the same itunes login in so they can have the music on both phones but a different icloud login to stop deleting stuff from each others phones?

    iCloud, iTunes & Apps Stores can be assigned different AppleID's from the Settings app. I have my phone and my wife's set up this way for the very reasons you are describing. Works well.

  • Can anyone give me simple instructions on how to use more than one ipod on the same computer with itunes? Both my daughters have ipods, my wife has one

    Dear All
    Can anyone give me simple instructions on how to use more than one ipod on the same computer with itunes. My daughters have a different generation 'nano' each & my wife a 'shuffle'?
    Many thanks

    Click here for options.
    (69081)

  • Can you have more than one user on the new ipad?

    Can you have more than one user on the new ipad?

    You cannot set up more than one user account on the iPad if that is what you mean.
    Obviously families will share an iPad, but they are really meant to be single user devices with one Apple ID only on the iPad. Multiple ID's on one iPad can become a bit of a hassle to deal with.
    There is no way to lock apps or email accounts so that can become an issue as well. If you use the built in mail app for email, whoever is using the iPad can read your email.

  • HT1657 Can you rent more than one movie at the same time?

    Can you rent more than one movie at the same time on itunes?

    I think Justin is correct and you should have statistics in place and a reasonable partition scheme so that the optimizer selects the correct partitions rather than telling it what to do. You paid a lot for partitioning after all.
    There are some, possibly misguided, examples in the manuals showing how to create a view so you can delete from a single partition without specifying the partition criteria in the delete statement. This in effect turns partitioning back into DIY partitioning i.e. separate tables, union all and pretend its a single logical table using a view. But backwards.
    So to do what you want you just assume the partitions are separate tables, and then use union all to glue the ones you want back together.
    select * from sales partition (sales_q1_2000)
    union all
    select * from sales partition (sales_q1_2001)
    union all
    select * from sales partition (sales_q1_2003)
    union all
    select * from sales partition (sales_q1_2004);It probably goes without saying that as well as making the expensive version of partitioning behave like the free alternative, there is the possibility that it will perform like it as well.

  • Can i create more than one library on the same computer?

    Can I create more than one library on the same computer?  Just got an ipod for my wife but didn't want her to have to use my library to sync to, so I thought I created another library for her.  When I deleted my albums from her library the disappeared from mine. (I think?)

    pajagsfan wrote:
    Can I create more than one library on the same computer?  Just got an ipod for my wife but didn't want her to have to use my library to sync to, so I thought I created another library for her.  When I deleted my albums from her library the disappeared from mine. (I think?)
    I know it's Valentine's Day, but before you get your wife fixed up the first thing you need to do is recover the deleted albums for your own library.  See if the files are elsewhere on your hard drive, or in the Recycle Bin.  When you find them, get them back into your own library.  Now you are ready to help your wife.
    As noted above, you can have two libraries in one Windows user account via the Shift-Start approach, but if you both use your libraries regularly, that becomes annoying quickly.  It is better to set her up with her own Windows user account. She can have her own iTunes library there.
    Get a copy of your entire iTunes folder to start her off.  She can delete stuff she doesn't want without messing you up.

  • Can I sync more than one iPhone to the same computer?

    Can I sync more than one iPhone to the same computer?
    I have one MacBook pro, already have my iPhone synced to it. I want to sync my wife's to it as well so she can share my iTunes library.
    Is this possible?

    Create a new user login (with a password) for your stuff.
    This way, your data won't get mixed up.

  • Can you have more than one router attached to your computer?

    an you have more than one router attached to your computer?

    Yes. (One of my systems has music purchased from two different iTunes accounts in its iTunes library.)

  • Can you have more than one iPod shuffle in one copy of iTune

    Hi,
    I've bought an iPod shuffle each for my two daughters, since they live with their mum I won't be able to set them up for them, anyway, they will be using them on a W2K PC, I am wondering, can you have two iPods set up on the one copy as it were, of iTunes?
    Someone at the Apple store said they'll have to set up two windows users (they all share one login) and login separately, in order for their two libraries to remain separate, with their two ipods? Or is it as simple as creating two libraries, and naming the two iPods separately?

    Hi Angela.
    Welcome to discussions. If you want to ask a question which is totally different from the one which started the topic, then it is best to start a new topic. That way you stand more chance of getting an answer more quickly.
    Plug your shuffle in. Open iTunes (it will probably open automatically). The shuffle will appear in the source list of iTunes. Click the name of your shuffle (in the list). There is a grey bar (at the bottom of iTunes). Make sure that "replace all songs when Autofilling" and "choose songs randomly" are not selected. Then just put the songs on the shuffle that you want and delete any that are already on there that you don't( drag and drop / delete). Then the next time you plug it in, it won't make any changes automatically.
    Basically as long as you never push autofill, then your shuffle should not start doing things of its own accord. So just get the songs you want on there via the drag and drop method (the only method for manual selection). Then never push autofill again.

  • Can you have more than one account on the ipad?

    I'm looking into using the ipad in our manufacturing facility, with more than one user on a single ipad.
    Can you have multiple user accounts on it, and if not how would you set up email with multiple accounts where one user can't access another's account?
    Any info would be appreciated.
    Thanks.

    Welcome to Apple Support Communities.
    If each employee uses a web-based email system such as Gmail, Hotmail, Yahoo, and others, and makes a point of NOT automatically saving ID and password, each user would use the Safari browser to access email, privately and confidentially. That also allows viewing email folders created in the webmail account that are not visible in the Mail app using a pop mail server.

  • Can you display more than one library from the same account?

    If I open iTunes on two computers in my house, I can only show one library on my apple tv. When I turn on the second computer, the first library goes away.
    Can you show one at the same time?
    Thanks

    Welcome to the Apple Community.
    Yes you can share more than one library at a time, just make sure that the homesharing ID and password you use for each one is the same on all of the libraries.

  • More than one ipod on the same computer

    Hi,my wife has an ipopd and has set up an account on itunes and I have just purchased my own ipod. Can someone please advise how a second account can be set up in itunes on the same computer. Thank you

    Please see this Apple tech note:
    http://docs.info.apple.com/article.html?artnum=300432

  • Can I have more than one library for the same ipod nano?

    I have a desktop pc that I have originally setup my nano on. I have about 400 songs on that computer. I have about 500 other songs on my laptop, can I put itunes on to both computers and have them add the songs from each one respectively without erasing the other? and if so, how?

    Type 61675 into the search bar under the support tab on this website. "How to use ipod with multiple computers"
    Basically, you have to change your preferences to manually manage instead of automatically update.

Maybe you are looking for

  • Error while creating Generic Datasource

    Hi, I try to create generic datasource using function module in RSO2, it is giving the following errors and the datasource is not creating. "Units field WAERK for field TOT_REV of DataSource ZIPO_TRANSCATION is hidden Message no. R8147" "Units field

  • Extend character length of an idoc segment

    Hello Gurus, Our client requires a longer character length for NAME2 and STRAS. SAP standard is that character length for this is 35. Is there a way to extend the length of these idoc segments? Thanks in advance.

  • Adding a breadcrumb for multiple image pages

    I'm using a body class tag to highlight each page in the navigation when it loads (i.e., ".oneColFixCtrHdr photos" would change the Photos text in the nav bar from black to white when on that page). Is there also a way to do this with multiple pages

  • Any Info On A Server?

    Well I Run A Website And My Host's Partner Didnt Pay Bill And Probably Won't What I'm Wondering Is If It Would Be Better To Just Buy My Own Server. I Was Looking At These 3 On BestBuy.com 1 Tb Hp Mediasmart Server 1.5 Tb Hp Mediasmart Server Seagate

  • Cost of implementation HR Module

    Kindly give me estimated cost of implementation of HR module in SAP. Any persom from that company , who are using HR in sap, kindly write prospectus of this module. regards