IPod disconnected from iTunes when closing laptop lid

I recently received a new iPod Classic 120 Gb after the old one's battery died. When i connect the new one to my Macbook Pro and close the lid it disconnects from iTunes (it is still connected, it appears in Finder, just not in iTunes).
I got the latest version of iTunes and the iPod software. This never happened with the old iPod. Is there a fix for this?

Okay guys . I got some goodies up . For those interested:
- 2.6.22.12 kernel with CFS v22, hrtimers, powertop, Reiser4 and default CPU frequency governor 'ondemand'
- iwlwifi 1.1.21
- Authentec fingerprint reader driver
I guess that should get you going pretty much  . The iwlwifi drivers have been built out-of-tree since my efforts to merging in the newer mac80211 stack & latest iwlwifi drivers amounted to nothing but a boatload of patch errors :-( (yes i can hack up patches to work but I felt like not doing it, since iwlwifi builds just fine out-of-tree). This kernel is tailored to the 6510 hardware, I cannot tell what is different in the 6170b lineup, but you definitely should not try this kernel on just any machine .
If you have any questions, drop me a line.
Credit of course to waninkoko for his kamikaze patchset, from which most of the patches come.
Update: to the latest 2.6.22.12 kernel + corresponding driver packages
Last edited by B (2007-11-11 16:39:48)

Similar Messages

  • Hard lockup when closing laptop lid (Linux 2.6.23)

    I just found this out a few days ago, telling my laptop to shut down a few hours later, and still finding it running half a day later, severely overheated (!).
    I am running a custom kernel (2.6.23.1 with some of the kamikaze broken out patches). I get this:
    - I unplug the laptop USB mouse
    - I close the lid
    - I reopen the lid, only to find my system completely locked up (no screen refresh anymore, no possibility to switch to a virtual terminal, no possibility to restart X or restart the system (Ctrl+Alt+Del/Backspace aren't working at all).
    I have no action specified for closing the lid (I plan on making it do suspend to RAM as soon as this issue is cleared up). Now if I leave the USB laptop mouse plugged in all works fine. I can close the lid, open it up again, and my system remains fully usable.
    To make sure this wasn't just me being clumsy and compiling a bad kernel, I tried the 2.6.23-ARCH kernel from testing. It exhibits exactly the same behaviour. 2.6.22-ARCH works just fine.
    Are there people having the same issue?
    Last edited by B (2007-10-21 12:16:32)

    Okay guys . I got some goodies up . For those interested:
    - 2.6.22.12 kernel with CFS v22, hrtimers, powertop, Reiser4 and default CPU frequency governor 'ondemand'
    - iwlwifi 1.1.21
    - Authentec fingerprint reader driver
    I guess that should get you going pretty much  . The iwlwifi drivers have been built out-of-tree since my efforts to merging in the newer mac80211 stack & latest iwlwifi drivers amounted to nothing but a boatload of patch errors :-( (yes i can hack up patches to work but I felt like not doing it, since iwlwifi builds just fine out-of-tree). This kernel is tailored to the 6510 hardware, I cannot tell what is different in the 6170b lineup, but you definitely should not try this kernel on just any machine .
    If you have any questions, drop me a line.
    Credit of course to waninkoko for his kamikaze patchset, from which most of the patches come.
    Update: to the latest 2.6.22.12 kernel + corresponding driver packages
    Last edited by B (2007-11-11 16:39:48)

  • [SOLVED] how to prevent suspending/sleeping when closing laptop lid

    Hi all,
    My laptop, a Lenovo Thinkpad T430u, suspends whenever I close the lid. It's been doing this since I first installed Arch.  I want to turn this feature off.  How can I do it?
    Relevant information:
    acpid is installed
    the configuration file /etc/acpi/handler.sh
    #!/bin/bash
    # Default acpi script that takes an entry for all actions
    case "$1" in
    button/power)
    case "$2" in
    PBTN|PWRF)
    logger 'PowerButton pressed'
    logger "ACPI action undefined: $2"
    esac
    button/sleep)
    case "$2" in
    SLPB|SBTN)
    logger 'SleepButton pressed'
    logger "ACPI action undefined: $2"
    esac
    ac_adapter)
    case "$2" in
    AC|ACAD|ADP0)
    case "$4" in
    00000000)
    logger 'AC unpluged'
    00000001)
    logger 'AC pluged'
    esac
    logger "ACPI action undefined: $2"
    esac
    battery)
    case "$2" in
    BAT0)
    case "$4" in
    00000000)
    logger 'Battery online'
    00000001)
    logger 'Battery offline'
    esac
    CPU0)
    *) logger "ACPI action undefined: $2" ;;
    esac
    button/lid)
    case "$3" in
    close)
    logger 'LID closed'
    open)
    logger 'LID opened'
    logger "ACPI action undefined: $3"
    esac
    case $(cat /proc/acpi/button/lid/LID0/state | awk '{print $2}') in
    closed) XAUTHORITY=$(ps -C xinit -f --no-header | sed -n 's/.*-auth //; s/ -[^ ].*//; p') xset -display :0 dpms force off ;;
    open) XAUTHORITY=$(ps -C xinit -f --no-header | sed -n 's/.*-auth //; s/ -[^ ].*//; p') xset -display :0 dpms force on ;;
    esac
    logger "ACPI group/action undefined: $1 / $2"
    esac
    # vim:set ts=4 sw=4 ft=sh et:
    dmesg output:
    [ 1530.790532] PM: Syncing filesystems ... done.
    [ 1530.805678] PM: Preparing system for mem sleep
    [ 1530.844445] Freezing user space processes ... (elapsed 0.01 seconds) done.
    [ 1530.856658] Freezing remaining freezable tasks ... (elapsed 0.10 seconds) done.
    [ 1530.963435] PM: Entering mem sleep
    [ 1530.963572] Suspending console(s) (use no_console_suspend to debug)
    [ 1531.123543] iwlwifi 0000:03:00.0: iwl_pcie_cmdq_reclaim: Read index for DMA queue txq id (9), index 207 is out of range [0-256] 208 208.
    [ 1531.124216] sd 0:0:0:0: [sda] Synchronizing SCSI cache
    [ 1531.124579] sd 0:0:0:0: [sda] Stopping disk
    [ 1531.360682] mei 0000:00:16.0: suspend
    [ 1531.440517] ahci 0000:00:1f.2: power state changed by ACPI to D3hot
    [ 1531.687309] PM: suspend of devices complete after 722.490 msecs
    [ 1531.687784] PM: late suspend of devices complete after 0.469 msecs
    [ 1531.688232] pcieport 0000:00:1c.3: System wakeup enabled by ACPI
    [ 1531.714222] ehci-pci 0000:00:1d.0: System wakeup enabled by ACPI
    [ 1531.727619] ehci-pci 0000:00:1a.0: System wakeup enabled by ACPI
    [ 1531.754015] xhci_hcd 0000:00:14.0: System wakeup enabled by ACPI
    [ 1531.767422] PM: noirq suspend of devices complete after 79.565 msecs
    [ 1531.768301] ACPI: Preparing to enter system sleep state S3
    [ 1531.797647] PM: Saving platform NVS memory
    [ 1531.799282] Disabling non-boot CPUs ...
    [ 1531.900721] smpboot: CPU 1 is now offline
    [ 1532.004162] smpboot: CPU 2 is now offline
    [ 1532.107554] smpboot: CPU 3 is now offline
    I have pmutils and tlpinstalled
    tlp config
    # tlp - Parameters for power save
    # Hint: some features are disabled by default, remove the leading # to enable them
    # Set to 0 to disable/1 to enable TLP
    TLP_ENABLE=1
    # Seconds laptop mode has to to wait after the disk goes idle before doing a sync.
    # Non-zero value enables, zero disables laptop mode.
    DISK_IDLE_SECS_ON_AC=0
    DISK_IDLE_SECS_ON_BAT=2
    # Dirty page values (timeouts in secs).
    MAX_LOST_WORK_SECS_ON_AC=15
    MAX_LOST_WORK_SECS_ON_BAT=60
    # Select a cpu frequency scaling governor: ondemand/powersave/performance/conservative
    # Important:
    # - You *must* disable your distribution's governor settings or conflicts will occur
    # - ondemand is sufficient for *almost all* workloads, you should know what you're doing!
    #CPU_SCALING_GOVERNOR_ON_AC=ondemand
    #CPU_SCALING_GOVERNOR_ON_BAT=ondemand
    # Set the min/max frequency available for the scaling governor.
    # Possible values strongly depend on your cpu. For available frequencies see
    # tlp-stat output, Section "+++ Processor".
    # Hint: Parameters are disabled by default, remove the leading # to enable them,
    # otherwise kernel default values are used.
    #CPU_SCALING_MIN_FREQ_ON_AC=0
    #CPU_SCALING_MAX_FREQ_ON_AC=0
    #CPU_SCALING_MIN_FREQ_ON_BAT=0
    #CPU_SCALING_MAX_FREQ_ON_BAT=0
    # Set the cpu "turbo boost" feature: 0=disable / 1=allow
    # Requires an Intel Core i processor and kernel 3.7 or later.
    # Important:
    # - This may conflict with your distribution's governor settings
    # - A value of 1 does *not* activate boosting, it just allows it
    #CPU_BOOST_ON_AC=1
    #CPU_BOOST_ON_BAT=0
    # Minimize number of used cpu cores/hyper-threads under light load conditions
    SCHED_POWERSAVE_ON_AC=0
    SCHED_POWERSAVE_ON_BAT=1
    # Kernel NMI Watchdog
    # 0=disable (default, saves power) / 1=enable (for kernel debugging only)
    NMI_WATCHDOG=0
    # Change CPU voltages aka "undervolting" - Kernel with PHC patch required
    # Freq:voltage pairs are written to /sys/devices/system/cpu/cpu0/cpufreq/phc_controls
    # CAUTION: only use this, if you thoroughly understand what you are doing!
    #PHC_CONTROLS="F:V F:V F:V F:V"
    # Hard disk devices, separate multiple devices with spaces (default: sda).
    # Devices can be specified by disk id too (lookup with: tlp diskid).
    DISK_DEVICES="sda sdb"
    # Hard disk advanced power management level: 1(max saving)..254(off)
    # Levels 1..127 may spin down the disk.
    # Separate values for multiple devices with spaces.
    DISK_APM_LEVEL_ON_AC="254 254"
    DISK_APM_LEVEL_ON_BAT="128 128"
    # Hard disk spin down timeout:
    # 0: spin down disabled
    # 1..240: timeouts from 5s to 20min (in units of 5s)
    # 241..251: timeouts from 30min to 5.5 hours (in units of 30min)
    # (see 'man hdparm' for details)
    #DISK_SPINDOWN_TIMEOUT_ON_AC="0 0"
    #DISK_SPINDOWN_TIMEOUT_ON_BAT="0 0"
    # Select io scheduler for the disk devices: noop/deadline/cfq (Default: cfq)
    # Separate values for multiple devices with spaces.
    #DISK_IOSCHED="cfq cfq"
    # SATA aggressive link power management (ALPM):
    # min_power/medium_power/max_performance
    SATA_LINKPWR_ON_AC=max_performance
    SATA_LINKPWR_ON_BAT=min_power
    # PCI Express Active State Power Management (PCIe ASPM):
    # default/performance/powersave
    # Hint: needs kernel boot option pcie_aspm=force on some machines
    PCIE_ASPM_ON_AC=performance
    PCIE_ASPM_ON_BAT=powersave
    # Radeon graphics clock speed (profile method): low/mid/high/auto/default
    # auto = mid on BAT, high on AC; default = use hardware defaults
    # (Kernel >= 2.6.35 only, not with fglrx driver!)
    RADEON_POWER_PROFILE_ON_AC=high
    RADEON_POWER_PROFILE_ON_BAT=low
    # WiFi power saving mode: 1=disable/5=enable
    # (Linux 2.6.32 and later, some adapters only!)
    WIFI_PWR_ON_AC=1
    WIFI_PWR_ON_BAT=5
    # Disable wake on lan: Y/N
    WOL_DISABLE=Y
    # Enable audio power saving for Intel HDA, AC97 devices (timeout in secs).
    # A value of 0 disables / >=1 enables power save.
    SOUND_POWER_SAVE=1
    # Disable controller too (HDA only): Y/N
    SOUND_POWER_SAVE_CONTROLLER=Y
    # Set to 1 to power off optical drive in UltraBay (ThinkPads only)
    # when running on battery. A value of 0 disables this Feature (Default).
    # Drive can be powered on again by releasing (and reinserting) the
    # eject lever or by pressing the disc eject button on newer models.
    # Note: an UltraBay hard disk is never powered off.
    BAY_POWEROFF_ON_BAT=0
    # Optical drive device to power off (default sr0)
    BAY_DEVICE="sr0"
    # Runtime Power Management for pci(e) bus devices
    # (Kernel >= 2.6.35 only): on=disable/auto=enable
    RUNTIME_PM_ON_AC=on
    RUNTIME_PM_ON_BAT=auto
    # Runtime PM for *all* pci(e) bus devices: 0=disable / 1=enable
    # Warning: experimental option, could cause system instabilities
    RUNTIME_PM_ALL=0
    # Set to 0 to disable/1 to enable usb autosuspend feature
    USB_AUTOSUSPEND=1
    # Devices from the following list are excluded from usb autosuspend
    # (separate with spaces). Use lsusb to get the id's.
    # Note: input devices (usbhid) are excluded automatically
    #USB_BLACKLIST="1111:2222 3333:4444"
    # Set to 1 to disable autosuspend before shutdown/0 to do nothing
    # (workaround for usb devices that cause shutdown problems)
    #USB_AUTOSUSPEND_DISABLE_ON_SHUTDOWN=1
    # Restore radio device state (bluetooth, wifi, wwan) from previous shutdown
    # on system startup: 0=disable/1=enable
    # Hint: the parameters DEVICES_TO_DISABLE/ENABLE_ON_STARTUP/SHUTDOWN below
    # are ignored when this is enabled!
    RESTORE_DEVICE_STATE_ON_STARTUP=0
    # Radio devices to disable on startup: bluetooth wifi wwan
    #DEVICES_TO_DISABLE_ON_STARTUP="bluetooth wifi wwan"
    # Radio devices to enable on startup: bluetooth wifi wwan
    #DEVICES_TO_ENABLE_ON_STARTUP="wifi"
    # Radio devices to disable on shutdown: bluetooth wifi wwan
    # (workaround for devices that are blocking shutdown)
    #DEVICES_TO_DISABLE_ON_SHUTDOWN="bluetooth wifi wwan"
    # Radio devices to enable on shutdown: bluetooth wifi wwan
    # (to prevent other operating systems from missing radios)
    #DEVICES_TO_ENABLE_ON_SHUTDOWN="wwan"
    # Radio devices to enable when wireless radio switch is turned on:
    # bluetooth wifi wwan (Ubuntu + ThinkPad only)
    #DEVICES_TO_ENABLE_ON_RADIOSW="wifi wwan"
    # Battery charge thresholds (ThinkPad only, tp-smapi or acpi-call kernel module required)
    # Charging starts when the remaining capacity falls below the START_CHARGE_TRESH
    # value and stops when exceeding the STOP_CHARGE_TRESH value.
    # Main battery (values in %)
    #START_CHARGE_THRESH_BAT0=75
    #STOP_CHARGE_THRESH_BAT0=80
    # Ultrabay or slice battery (values in %)
    #START_CHARGE_THRESH_BAT1=75
    #STOP_CHARGE_THRESH_BAT1=80
    # Set to 1 to disable use of tpacpi-bat on Sandy Bridge or newer Thinkpads
    # and force usage of tp-smapi instead
    #DISABLE_TPACPIBAT=1
    # tlp-rdw - Parameters for the radio device wizard
    # Possible devices: bluetooth/wifi/wwan
    # Hint: parameters are disabled by default, remove the leading # to enable them
    # Radio devices to disable on connect
    DEVICES_TO_DISABLE_ON_LAN_CONNECT="wifi wwan"
    DEVICES_TO_DISABLE_ON_WIFI_CONNECT="wwan"
    DEVICES_TO_DISABLE_ON_WWAN_CONNECT="wifi"
    # Radio devices to enable on disconnect
    DEVICES_TO_ENABLE_ON_LAN_DISCONNECT="wifi wwan"
    #DEVICES_TO_ENABLE_ON_WIFI_DISCONNECT=""
    #DEVICES_TO_ENABLE_ON_WWAN_DISCONNECT=""
    # Radio devices to enable/disable when docked
    #DEVICES_TO_ENABLE_ON_DOCK=""
    #DEVICES_TO_DISABLE_ON_DOCK=""
    # Radio devices to enable/disable when undocked
    #DEVICES_TO_ENABLE_ON_UNDOCK="wifi"
    #DEVICES_TO_DISABLE_ON_UNDOCK=""
    thanks guys
    I love arch
    Last edited by beitme (2013-06-08 10:05:37)

    @ Karol, done
    @ 65kid, here's my logind.conf
    [Login]
    #NAutoVTs=6
    #ReserveVT=6
    #KillUserProcesses=no
    #KillOnlyUsers=
    #KillExcludeUsers=root
    #Controllers=
    #ResetControllers=cpu
    #InhibitDelayMaxSec=5
    #HandlePowerKey=poweroff
    #HandleSuspendKey=suspend
    #HandleHibernateKey=hibernate
    #HandleLidSwitch=ignore
    #PowerKeyIgnoreInhibited=no
    #SuspendKeyIgnoreInhibited=no
    #HibernateKeyIgnoreInhibited=no
    #LidSwitchIgnoreInhibited=yes
    #IdleAction=ignore
    #IdleActionSec=30min

  • Ipod disconnects from iTunes frequently

    recently, i had my computer guy come and install xp pro on my computer. i still have 200 pro, so i have the option to switch. i installed itunes in xp and it pulled all my music over from 2000. the only problem is now, when my ipod is hooked up to itunes, all of a sudden it goes away. it will connect again shortly, but it does this several times while i have it hooked up. i have the latest version of itunes because i installed it from the website. has anyone else had this problem before? any suggestions on what i need to do?

    Make sure your USB hub doesn't overload the iPod max 1000mA!
    Try to enter the target disk mode for ipod.
    http://docs.info.apple.com/article.html?artnum=93651
    If your iPod keeps quitting try to reset it by iTunes.(Restore iPod, all data on your iPod will be lost). If it fails again you may try to phone apple for help.
    Here an apple-help excerpt.
    "estore your iPod by connecting your iPod to your computer, and then in iTunes, select your iPod in the Source pane. Click the Summary tab, and click Restore to restore iPod to its original settings. Follow the onscreen instructions to complete the restore process. (Important: Please note that restoring an iPod will erase all songs and files on your iPod and restore it back to its original settings. Make a backup of any files on your iPod before restoring it. After restoring, you can transfer your music and files from your computer back to your iPod again.)"
    http://www.apple.com/support/ipod/tutorials/troubleshooting.html Skip step2

  • [Solved] preventing standby when closing laptop lid and more.

    To be blunt, I'm on the verge of insanity at this point. I'm no newcomer to Arch, but this has me beat.
    In short I'm not using my asus eepc 1015pem anymore, so I decided to make it a folding machine.
    Everything works as intended except when I close the lid, it automatically goes to sleep and I haven't had any luck finding a solution.
    All in all I have little use for any sort of power management, and things like CPU scaling and such, should obviously not be active.
    So please do let me know where I can find the information I need.
    My arch installation is completely basic and brand new, should that information matter
    Best regards.
    Last edited by zacariaz (2012-10-21 00:37:00)

    2ManyDogs wrote:
    zacariaz wrote:
    WonderWoofy wrote:
    You need to look into the powers of logind.conf (by that I mean the man page). 
    Also, I don't know why you would want to turn frequency scaling off.  If it makes the cpu go full speed, so be it, but if not, it would be nice to not use quite as much power.
    First of all, I want to thank you for the quick reply and secondly mention that this is a very low power device which will be running at full capacity 14/7, thus these think are not needed.
    If it's running at "full capacity" cpu frequency scaling will allow the CPU to run at its top speed. There is no need to remove it. If at any point full speed is not required, even a low-power device will use less power with cpu scaling, and it allows the CPU to rest and cool off a little.
    But hey, it's your box.
    The reason it's important is only due to the doubt that the cpu might somehow be inhibited. If that's not the case, then it doesn't matter obviously.

  • TS1493 files not visible on ipod nano after disconnect from itunes

    I have an iPod Nano (6th generation - 16 Gb) which was purchased in early 2011. All of a sudden all files in all categories (music, audiobooks, podcasts, etc) are no longer visible once it is disconnected from iTunes on my laptop. When reconnected to the laptop the files are visible again in iTunes - so they are still on the device.  I have searched the Apple online support info and that only seems to provide complicated and unhelpful information about redesigating hard drive network maps etc., which is an action I am not prepared to risk for fear of making a bad problem worse, or contacting my "administrator" - which is me!  Can anyone offer any solutions that don't require a PhD in computer science?

    Here are a couple of additional pieces of information that might provide a clue:
    1) At home, my iPod shows up as having the name I used when I registered it. On the second computer, my iPod shows up with the name DATA1.
    2) I have an iPod 4GB mini. At home, that's pretty much the amount of space that shows up in the disk space bar (near the bottom) of iTunes. However, on the second PC, the disk space bar shows 10.35 GB used, 15.66 GB free! Which is just freaky, since it's still a 4GB iPod mini.
    3) According to the iTunes display, everything is transferring absolutely smoothly. Since the iPod is configured to transfer music manually, the Do Not Disconnect sign is flashing throughout, but when I'm done and click on the eject iPod button in the lower right hand corner, it turns off, just the way it's supposed to and I can disconnect my iPod. It's just that my songs aren't visible anywhere on my iPod when I try then to play them.

  • How can i download apps from itunes on my laptop to my ipod touch 1st gen

    i downloaded some apps from itunes on my laptop but they wont go to my ipod

    Please get iPod Touch User Manual - iOS 6
    You have to sync your Touch with iTunes on your computer.

  • I downloaded music to my ipod shuffle from itunes and it still saying saying download music from itunes. But there is music on it when I hook it to the computer but it want play on the shuffle. Someone please help me.

    I downloaded music to my ipod shuffle from itunes and it still saying saying download music from itunes. But there is music on it when I hook it to the computer but it want play on the shuffle. Someone please help me.

    Hello Rod2174,
    I'm sorry to hear you are having issues with your iPod shuffle. I also apologize, I'm a bit unclear on the exact nature of the issue you are describing. If you are having issues transferring music to your iPod or playing music that is on your iPod, you may find the information and articles linked from the following page helpful:
    iPod shuffle - Apple Support
    Sincerely,
    - Brenden

  • TS1363 when i try to update my apps from itunes on my laptop i keep getting an error saying "we could not complete your itunes store request an unknown error occurred (0x800b0101)."

    when i try to update my apps from itunes on my laptop i keep getting an error saying "we could not complete your itunes store request an unknown error occurred (0x800B0101)."  this has been happening for a few weeks ive tried downloading the new version of itunes and checked the firewall settings but it still wont let me upgrade apps??

    Thanks jdnjo.  Your fix also worked in Windows 8!

  • HT204370 my screen is freezing regularly when I try to watch a movie I downloaded earlier from itunes to my laptop

    I downloaded a movie earlier today from itunes to my laptop but the movie and screen are freezing regularly, then catching up with itself, only for it to happen again 20 secs later.  I've checked with my broadband provider and they advise that my speed is 17mps.  Help!!

    I would start by turning home sharing off in iTunes and then turning it back on.  Next I would stop sharing on the apple TV and share again.
    Make sure the mac that hosts iTunes is awake when the apple TV tries to connect.

  • Ipod 7th gen auto disconnects from ITunes

    Hi,
    I got a new IPod Shuffle for Christmas and every time I connect it to ITunes it auto-disconnects after about 30 seconds- does anyone know how to stop this happening?
    Many thanks
    Alex

    Thanks for the welcome and the help!
    I tried putting it in disk mode as you suggested and it's still disconnecting from iTunes right after it syncs.
    I was afraid that I would have to do a restore. I have over 13000 songs on my iPod, many that are no longer in my iTunes library. I used to delete my albums off my hard drive after I ripped them off of CD and transferred them to my iPod. I didn't have the hard drive space back then.
    This is my dilemma. I'm worried that maybe the iPod is damaged and I won't be able to add my music once I've done the restore. Right now it plays fine, I just can't add or delete any more music. Maybe it's time to buy a new one.
    Thanks again!

  • HT201209 If I buy a song from iTunes on my laptop, will it be automatically synced to my iPod?

    I was wondering if I purchase a song from iTunes on my laptop, if it would sync or automatically download to my iPod without my iPod being synced to my laptop.

    No. You have to sync the device with iTunes to transfer the song.

  • HT201272 How do I download previously purchased albums from iTunes when the album has either disappeared from my computer or the tunes are not playable?  The album shows as purchased on the iTunes store, but not available to download to my authorized devi

    How do I download previously purchased albums from iTunes when the album has either disappeared from my computer or the tunes are not playable?  The albums show as purchased on the iTunes store, but not available to download to my authorized device.  I also have albums that appear in my library, but are not able to be added to my iPod from my computer

    When you download something from the iCloud, it is a brand new licensed copy. Your iCloud account just contains a notation that you have this app. It isn't storing an actual copy of the app from your Mac.

  • My laptop computer was stolen six months ago. I had over 100 purchases from itunes on that laptop. I recently got a new laptop. Is there any way I can recover my purchases from itunes on to my new laptop?

    My laptop computer was stolen six months ago. I had over 100 purchases from itunes on that laptop. I recently got a new laptop. Is there any way I can recover my purchases from itunes on to my new laptop?

    I would ask here
    https://discussions.apple.com/community/itunes
    when you buy stuff it's connected to the appleID not the computer
    nor the appletv which have no storage so there is no option to get it from the atv

  • Music is not transferring to old iPod Touch from iTunes.

    Music is not transferring to old iPod Touch from iTunes.  iTunes recognizes the iPod.  I've gone to File>Devices>Sync and File>Devices>Transfer Purchases.  It shows that it is downloading, but once complete and I go back to check, still not there in either case. 
    Also, I updated my Windows XP laptop with the new iTunes 11, all the music is there from before and even added a couple more CDs (thought it was all on the laptop).  I turn the laptop off, come back next day, music is all gone and is now found in iCloud.  I didn't want it to be transferred to iCloud, but I must have missed a checked box or something.  Any idea on how to un-iCloud all of that music that should still be on my laptop?  Otherwise, how do I Home Share from iCloud (Windows XP) to iTunes on Windows 7?
    As for Home Sharing, it's hit or miss.  I found where you are to hit the Alt button to access Home Sharing on my Windows 7 laptop, it worked 1 time and now I can't find the Home Sharing in the Playlist Section or Music, nothing.  Really?!?!  Come on Apple, can't you do better than that!  I'm getting really frustrated here!  It seems I can only Home Share to my Windows XP laptop, but not vice versa - XP to Windows 7.  Really?!?!
    Anyone have any ideas on how I could possibly get this all to work?  Btw, isn't iCloud suppose to automatically download to your iPod anyway?  Well, it doesn't.
    Frustrated!

    Do they play in iTunes?
    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
      least ten seconds, until the Apple logo appears
    - Try unsyncing and resyning

Maybe you are looking for

  • HP Color LaserJet CM6040 MFP Series

    hello Was ist dad für ein Fehler? 32 29-FEB-2012 09:56 114153 49.2F8F 52.081.2 C80F 8911 Device Error 31 29-FEB-2012 09:55 114152 13.05.00 52.081.2 Paper late jam between sensors D and F           0501001A020200080011A122B 30 29-FEB-2012 08:37 114150

  • How can i running servlet in tomcat 4.1

    sir, i want to know ,what are the settings?i have to do before running a servlet i installed tomcat4.1 in C:\Program Files\Apache Group\Tomcat 4.1. but i reffered a lot of tutorial ,i couldnt understand that. and also i set jsdk path;

  • How to apply BRF in Business Transaction?

    Hi Experts, In a business transaction, for example there is the field Last name. I need to apply a BRF in order to check if the field is initial or not. Can anyone suggest how can the link between the field in the business transaction and the BRF obj

  • Activation ios 7

    Hi, I live in Ukraine, there is no support, and I have an invitation that would untie his Iphone

  • Pics & videos won't upload to Facebook with MacPro 10.9.5

    Since we have upgraded to a Macbook Pro version 10.9.5, we can upload photos & videos to our computer from our camera but can no longer upload any of our photos or videos to facebook.  However, the photos on this computer that were copied off of an o