Can't eject iPod

I get this message "the disk "ipod" is in use and could not be ejected. Try quiting applications..."
I will get this even with everything closed. Any ideas?

I get this often!
I even get it when there is no applications running!
The only successful method I have had is to run up iTunes then shut it down.
Before now I have had to do this once or twice, before my ipod will unmount.
I hope this is helpful.
Apple Mac G4 744 (AGP)   Mac OS X (10.4.3)   bit of a pensioner!

Similar Messages

  • Can't Eject IPOD Classic 80gig

    I need some help and can't find any elsewhere so I am trying here. I can't eject my Ipod from Itunes without turning my computer off. It says that it can't eject because there is shared files on my Ipod. I deleated all files with Itunes and still got the can't eject due to shared files message. I try to restore to original settings and got the message that I couldn't restore due to shared files on my Ipod. Can anybody help me with this. I am using Vista 64bit.
    Thanks in advanvce
    Will

    wwrice. I saw this thread and it helped me solve my problem. www.discussions.apple.com/thread.jspa?threadID=2385677
    I hope this link works!

  • Can't eject iPod & syncing doesn't work

    I'm using iPod nano 4G. I've activated "Sync Music" and created a playlist to sync it. There was a lot of songs in the playlist so I unchecked all then started to check and sync them part by part. But it pauses syncing after a while. In itunes it says "Syncing iPod don't disconnect" but it doesn't sync any songs. I can't eject the ipod nor can quit iTunes. When I click "eject" I see "Ok to disconnect" on the ipod screen for a moment but it immediately disappear and says "eject before disconnecting". Somehow i find a way to disconnect it every time. But it happens so often. How can I get rid of this? Thanks for help.

    wwrice. I saw this thread and it helped me solve my problem. www.discussions.apple.com/thread.jspa?threadID=2385677
    I hope this link works!

  • Thunar without XFCE, can't eject iPod and other travails.. [solved]

    I'm trying to get my Thunar set up to where it automatically shows my ipod when plugged in, but I can right click the icon to unmount it as well.
    I used the udev wiki to add a set of rules for automounting usb devices, so my ipod now automatically loads, but there are two problems.
    1. There are two icons for the ipod in the Thunar shortcuts pane. One says Apple iPod and shows an error on left click of 'Failed to mount "Apple iPod Music Player" - Given device "/org/freedesktop/Hal/devices/ volume_part1_size_41094144" is not a volume or drive.'
    2. The second icon shows the name of my ipod and I can click it to view the drive, great, but on right clicking and choosing Unmount Volume, it shows an error of 'Failed to unmount "iPod" - The volume "iPod" was probably mounted manually on the command line.'
    And a seperate, but perhaps related problem is when I press the eject button on my CDROM drive, an error shows as 'Failed to eject "/org/freedesktop/Hal/devices/storage_mode_DVD_RW_ND_3540A". Right clicking the icon in Thunar and choosing eject does work for this, though I'd prefer to be able to use the eject button.
    Does anyone have any ideas on a way to fix these problems?
    Thanks!
    Last edited by oksana (2007-08-21 22:39:03)

    Nonono...there's a bug with thunar-volman and ipods that causes them to load twice and whinge about it.  Note that loading two devices is, as far as I know, the intended outcome, since ipods have a mysterious second partition for storing the hopes and dreams of steve jobs himself.  I don't really know what it's for, but you can use an hal policy file (fdi file) to prevent hal from loading it.
    The bug has to do with thunar-volman trying to load it and failing.  You can view the bug here:
    http://bugzilla.xfce.org/show_bug.cgi?id=2789
    Actually, that's a command.  You'll need the first two diffs for the fix: thunar-volman-mount-only-mountable.diff and thunar-vfs-add-is-mountable.diff
    First, we'll fix thunar with the following PKGBUILD:
    # $Id: PKGBUILD,v 1.8 2007/06/01 22:28:43 tobias Exp $
    # Contributor: Andrew Simmons <[email protected]>
    pkgname=thunar
    pkgver=0.8.0
    pkgrel=5
    pkgdesc="new modern file manager for Xfce"
    arch=(i686 x86_64)
    license=('GPL' 'LGPL')
    url="http://thunar.xfce.org"
    groups=('xfce4')
    depends=('exo>=0.3.2' 'shared-mime-info' 'pcre' \
    'desktop-file-utils' 'libexif' 'hal' 'fam' \
    'startup-notification')
    makedepends=('intltool' 'pkgconfig' 'gtk-doc')
    patchname=thunar-vfs-add-is-mountable
    options=('!LIBTOOL')
    install=${pkgname}.install
    source=(http://www.xfce.org/archive/xfce-4.4.1/src/Thunar-${pkgver}.tar.bz2
    thunar-vfs-add-is-mountable.diff )
    md5sums=('9f7b0945d6a235391049f6818fb4d188' 'e16532876e24ec10549b274baf262f73' )
    build() {
    cd ${startdir}/src/Thunar-${pkgver}
    cp $startdir/$patchname.diff $startdir/src/Thunar-${pkgver}
    patch -Np0 -i ${startdir}/src/Thunar-${pkgver}/${patchname}.diff || return 1
    ./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib/xfce4 \
    --localstatedir=/var --disable-static \
    --disable-gnome-thumbnailers --enable-exif --enable-pcre
    make || return 1
    make DESTDIR=${startdir}/pkg install
    sed -i 's:x-directory/gnome-default-handler;::' ${startdir}/pkg/usr/share/applications/Thunar-folder-handler.desktop
    Stick thunar-vfs-add-is-mountable.diff in the same directory, and add the install file (call it thunar.install):
    post_install() {
    update-desktop-database -q
    gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
    post_upgrade() {
    post_install $1
    post_remove() {
    update-desktop-database -q
    gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
    op=$1
    shift
    $op $*
    and makepkg -i to install it.  Now let's tackle thunar-volman.
    First the PKGBUILD:
    # $Id: PKGBUILD,v 1.6 2007/04/16 18:41:24 tobias Exp $
    # Contributor: Tobias Kieslich <tobias (at) archlinux.org>
    pkgname=thunar-volman
    pkgver=0.1.2
    pkgrel=4
    pkgdesc="automatic management for removeable devices in thunar"
    arch=(i686 x86_64)
    url="http://xfce-goodies.berlios.de/"
    license="GPL"
    groups=('xfce4-goodies')
    depends=('thunar>=0.8')
    makedepends=('intltool' 'pkgconfig')
    options=('NOLIBTOOL')
    patchname=thunar-volman-mount-only-mountable
    install=${pkgname}.install
    source=(http://download.berlios.de/xfce-goodies/${pkgname}-${pkgver}.tar.bz2 thunar-volman-mount-only-mountable.diff)
    md5sums=('910de35c398f70b66b38803bdfdd26f1' 'b7ee9150294f772ed08129fd08328b9d')
    build() {
    cd ${startdir}/src/${pkgname}-${pkgver}
    cp $startdir/$patchname.diff $startdir/src/${pkgname}-${pkgver}
    patch -Np0 -i $startdir/src/${pkgname}-${pkgver}/$patchname.diff
    ./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib/xfce4 \
    --localstatedir=/var --disable-static
    make || return 1
    make DESTDIR=${startdir}/pkg install
    Then add the thunar-volman-mount-only-mountable.diff file, and the install file (call it thunar-volman.install):
    post_install() {
    gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
    post_upgrade() {
    post_install $1
    post_remove() {
    gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
    op=$1
    shift
    $op $*
    and makepkg -i again.
    They also provide an fdi in the bug report to prevent the extra piece from mounting, but I haven't gotten it to work.  At least the bugs are gone.
    BTW I found these trolling through the ubuntu gutsy launchpad.

  • Can't eject ipod shuffle. Says files in use by another system...what do do?

    I can add files to my shuffle, but I get a continuously blinking orange light while it's plugged in to my computer. When I try to eject, I get the above message. All software is updated. I would like to restore at this point, but the instructions say to "click the summary button," which I don't see. Any ideas?

    Hello oldskoolshuffleuser,
    Thank you for contacting Apple support Communities. Did you by chance enable your iPod as a storage drive? That could also account for the flashing orange light.
    Using your iPod as a storage drive
    http://support.apple.com/kb/HT1478
    Regards,
    Jeff D.

  • Can't Eject iPod Classic in iTunes 10

    After syncing my 160G iPod Classic with iTunes 10, I could not eject the iPod Classic in iTunes 10. It says the iPod is being used by another Application (when there is NONE except iTunes 10). I had to quit iTunes 10, and eject the iPod Classic via Finder Window. There were a couple of times where I had to perform OPTION-APPLE-ESC before I could eject the iPod Classic. Is there something wrong with this version of iTunes - anybody having same problem? Or could it be my PPC iBook G4? <Don't think so.>
    With all the complaints I've read about iTunes 10 (yah, the icon does look horrible, Steve, despite what you may say - it looks soooooo 'bland'), I suspect it's the latest-but-no-longer-greatest software, iTunes 10.
    Any suggestions/assistance is greatly appreciated.
    Else, I may go back to the earlier version, where I had no problems at all.
    Much thanks in advance.
    Regards.

    I'm having a similar problem ... nothing but problems with iTunes 10
    In my case, my iPod nano is showing up as a device in Finder and even when I eject it from iTunes it remains in the Finder for some time. When I reconnect the nano then iTunes starts playing music, but the nano does not appear in iTunes (although it shows up again in Finder.)
    I have to restart iTunes for the nano to show up again. Disk use is not enabled. I've also had problems with the nano occasionally showing up with the incorrect info (image etc.) in the Summary window.
    I had none of these problems until I upgraded to iTunes 10 (other than it showing up in the Finder.)
    I suspect it will not be easy to go back to iTunes 10 because iTunes 10 upgraded the iTunes Library (as far as I remember.)

  • I can not eject my ipod from itunes

    I just move from ipod photo to a new ipod video but after synchronizing with Itunes and try to eject it there is a message display that says that the Ipod can not be ejected because it is been used by other application. I hope someone can help me with this
    Thanks

    This happened to me today. Are you using the iPod as a hard drive? If you are, then maybe there's something on your iPod that is open. You can't eject iPod if there's something on it that's open.

  • Keyboard shortcut to eject iPod?

    I'm trying to figure out if there is (or how to create) a keyboard shortcut to eject my 30GB iPod 5G, either native to OSX Tiger or possibly using the program Quicksilver. Can anyone help me?
    In this support document, Apple states that "you can also eject iPod by choosing a menu command in iTunes, or by using a keyboard shortcut," but they don't mention what that shortcut is!
    http://support.apple.com/kb/HT1853
    Thanks!

    That is helpful, but not exactly what I was looking for - is there a way to activate this shortcut without making iTunes the active window?
    No. A keyboard shortcut is simply a way to access a menu option FROM WITHIN THE APPLICATION without having to access the menu itself. Mac applications menus are contextual in nature. The same keyboard shortcut may have different actions associated with them depending on the application and/or window within the application that is currently active. It is like yelling "Hey, you!" in a room full of people. How is any single person to know to whom you are yelling?

  • I have an ipod that I have been using for iTunes, when I connect now to sync, and hit the eject ipod, I get a warning it can't eject due to applications being used in another program. I am having trouble disconnecting. Help!

    I am having a problem with the new iTunes store. I can connect my ipod, and it will show that it is syncing. Once the sync is complete on iTunes, my ipod still shows that it is connected, do not eject. I have not had a problem with this until the new verision of iTunes. When I go to eject my ipod, it tells me that it can't eject due to application being used in another program. I did receive an ipad 2 for Christmas, that I also sync with iTunes, but only the ipad shows up in my devices on the site, what happened to my ipod device and how to add it back to devices? Help is greatly appreciated. Thanks.

    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

  • ITunes 10.7 can not eject my ipod nano 4

    When I bought iPhone5, I update my iTunes to 10.7.21 to identify iPhone5.
    But the new version iTunes can not eject my ipod nano 4 normally.
    When I tried to eject iPod nano 4, the "usb mass message is uninstalled" message shows, bu the ipod nano 4 still existed in iTunes.
    Then my Windows 7 system can not shut down successfully.
    Can you fix this bug right now?

    I'm having the same problem, including it not syncing my playlists. Also, I have the iBooks app installed and it won't sync my books?? I paid for those and thyey show up in my iTunes, just not on my touch.

  • I can not eject my ipod as the device icon no longer shows up

    I can not eject my ipod from Itunes as the device icon no longer shows up in Itunes.  I looked on line but none of the solutions were possible to follow as the various options indicated just weren't there!

    Hello scheherazada,
    Thank you for using Apple Support Communities. 
    Here is an article for you to start with your troubleshooting to get your  iPod recognized. 
    iPod: Appears in Windows but not in iTunes - Apple Support
    Regards,
    Jeff D. 

  • HT201412 My computer is frozen with my iPod plugged in trying to sync. How can I eject it safely?

    My computer is frozen and my iPod is plugged in, trying to sync. I can't eject my iPod with a frozen laptop. Any suggestions on how to unplug it without losing all my music?

    All you can do is force close iTunes, disconnect the iPod, reboot the computer and see is you can sync or if a restore is required.

  • ITunes 11 freezing while transfering music, and can't eject it, so I need to disconnect the cable, then iTunes works just fine and my iPod Shuffle is in restoring mode. I've been having this issue for weeks, and never had it before with iTunes 10.

    iTunes 11 freezes and can't eject my iPod, so I need to disconnect the cable, then iTunes works just fine and my iPod Shuffle is in restoring mode. I've been having this issue for weeks, and never had it before with iTunes 10. Please tell me at least a way to eject it without losing all my data and being forced to format/restore the iPod.    I've got 2GB iPod Shuffle 2nd generation(:D)

    As a test, shut down (power off) your computer and disconnect all USB devices including hub (except for standard keyboard and mouse if normally used).  If your computer is a laptop, connect its power adapter (so that it's not running on battery power).  Do this to reset the shuffle
    http://support.apple.com/kb/HT1655
    Start up the computer, run iTunes, and connect the shuffle to a direct USB port on the computer.  Does this problem recur when the shuffle is the only USB device?
    If it does (as another test), select the shuffle in iTunes, so that its Settings screen is showing.  Check the box for Enable disk use, and Apply.  Does that make any difference regarding this problem?

  • Can't restore iPod because it doesn't appear on desktop

    I connected my ipod to my Mac, it showed up on the desktop but not in iTunes. The ipod window said Do not Disconnect. I waited a few minutes, then chose Eject iPod. I restarted the mac, reconnected iPod using a different FireWire port. The iPod no longer appeared on the desktop, and the Do Not Disconnect warning was still there. I switched to USB connection. No go. I ran Disk Utility Repair Permissions on my HD and restarted.
    I've been downloading a lot of podcasts lately, don't know if that's the cause of this problem. I'm using iTunes 7.1.1 and Mac OS 10.4.9.
    I found a solution for this problem in Archives, but it's dated 12/05, and I'm wondering if it still applies. Part of the solution says to run disk utility, select the ipod, then select Format. But I don't see Format as a choice on version 10.5.6 of Disk Utility. Maybe what was Format in 2005 is now called something else? Like maybe Partition? Here's the post (by john madson) from 2005:
    "i can fix this but you will need a mac let me explain
    when the last system update for mac os x tiger came through after you are done installing the update the update says it is optimizing the hard drive well it optimizes the hard drive on the ipod as well and cause the internal drive on the ipod to malfunction but this isn't apples fault this is caused by user error im sorry to say
    in order to fix this on the mac
    here is what you need
    1.the latest apple ipod updater software (will explain why later in this)
    2. of course a apple ipod mini usb cable
    3. apple ipod mini
    4. mac os x panther or tiger
    1.start up the mac computer
    2. connect the ipod to the computer don't worry if it doesn't appear on the desktop
    3.go into utilites by double clicking on the hard drive icon and select utility
    4.run disk utility
    5.you will notice the ipod will apear in the disk utility program but not on the desktop
    6. select the ipod in the left pane
    7. select format
    8. tell it to format it in a mac os extended partition
    9.once this is done you will notice the ipod will apear as a removable hard drive but. do not disconnect the ipod
    10. run the apple ipod updater
    11.reinstall the latest updated firmware
    12.unplug the ipod
    13. replug in the ipod
    14. you will notice the ipod will apear as a ipod icon on the desktop
    WARNING:AFTER YOU FORMAT IF YOU DISCONNECT THE IPOD THIS WILL BRICK THE IPOD WHEN YOU FORMAT THE IPOD USING DISK UTILITY IT ERASES EVERYTHING INCLUDING THE IPODS OS SO YOU NEED TO RUN THE UPDATER IMMEDIATLY TO GET THE IPOD WORKING AGAIN
    THE FIRST TIME THE IPOD IS RECONNECTED AFTER RUNNING THE IPOD UPDATER RE RUN THE UPDATER SELECT RESTORE THEN IT WILL FORMAT AND SET UP THE IPOD CORRECTLY
    FOLLOW INSTRUCTION CAREFULLYNEXT SYSTEM UPDATE DO NOT HAVE THE IPOD CONNECTED TO THE COMPUTER DURING UPDATE"
    G5 Quad 2.5GHz   Mac OS X (10.4.9)  
    G5 Quad 2.5GHz   Mac OS X (10.4.5)  

    One more thing: I reset my iPod (toggled Hold, etc.). It appeared in iTunes but not on the desktop, with the message "If your experiencing problems with your iPod, you can restore its original settings by clicking restore." Which I did. Got a window asking if I wanted iTunes to check for a new software update. I said yes. Got an exclamation-point msg "There was a problem downloading iPod software. The requested resource was not found. "
    G5 Quad 2.5GHz   Mac OS X (10.4.5)  

  • Can't update iPod, "required file is in use."

    Whenever I connect my iPod to either my work computer (a PowerMac G4) or my laptop (a PowerBook G4) I get an alert message in iTunes that reads, 'The iPod "Thomas's iPod Mini" could not be updated. The required file is in use.' This message sometimes pops up every few minutes and is VERY annoying. FYI, I have my iTunes Library on an external USB hard disk, but I don't think that has anything to do with it.
    Does anyone know what is going on?
    PowerBook G4 1Ghz   Mac OS X (10.4.8)   iPod Mini 4Gb

    I think I solved it (my mac inf. below):
    I opened preferences in Norton AntiVirus v.10.1.1(003) and went to Auto Protect "Safe Zones" added my iPod to the "Everywhere EXCEPT in:" field from the mounted volumes area and alls well so far even with auto protect enabled.
    I don't even get the problem on ejecting the iPod from iTunes anymore ('can't eject because iPod is in use by another program').
    hope this helps.
    (anyone got a suggestion on how I can quiet down my mac's windtunnel like cooling fans?)
    my mac inf.:
    Machine Name: Power Mac G4
    Machine Model: PowerMac3,6
    CPU Type: PowerPC G4 (3.3)
    Number Of CPUs: 2
    CPU Speed: 1.42 GHz
    L2 Cache (per CPU): 256 KB
    L3 Cache (per CPU): 2 MB
    Memory: 1 GB
    Bus Speed: 167 MHz
    Boot ROM Version: 4.6.0f1
    Powermac G4 (windtunnel)   Mac OS X (10.4.8)   my mac's fans are too loud!

Maybe you are looking for

  • Can't see shares between Windows XP PCs and iMac

    I have an Intel iMac running 10.4.9. I have 2 Windows XP-based PCs. One Windows PC and the iMac are connected wirelessly. The other Windows PC is on wired Ethernet. On both the Windows PCs and iMac the firewalls are disabled. The machines are on the

  • Lost video ipod

    my friend told me there was a way to find stolen or lost i pods... what do u do. cause i lost my video ipod and.. apparently i seriously need to find it.

  • Gmail, Mozilla etc. blocked!

    After updating another program I can't now access some websites including Google and Mozilla! For Google and Mozilla it allowed be to select:- 'I understand the risks' ad continue. But for Gmail it showed no option to continue! As all was working bef

  • Unable to sync contacts from iPhone to Address Book...works the other way

    I am unable to have changes on my iPhone reflect in my Mac's address book. For example, I would delete a contact on the iphone, but it stays there in the Mac's address book after sync. The worst part is that now on subsequent syncs, the contact is ne

  • Validate date format

    I am getting a date it MMDDYY format, want to check if it is in the right format and then change to normal format. is there any FM for this? point will be rewarded