Death of a USB device... natural causes or foul play?

I've had a little usb flash drive mp3 player for years. The last time that I mounted it (mount -o umask=0 ...) to replace some songs, the songs were correctly copied but umount hung when I tried to dismount it.
After about 5 minutes I killed umount and checked that the device was unmounted, which it was. After removing the device, I turned it on to check it but it wouldn't proceed past the initial logo screen.
I can no longer mount the device. Here's the dmesg output from multiple attempts:
[ 101.066671] usb 6-2: new full speed USB device number 2 using uhci_hcd
[ 101.515930] usbcore: registered new interface driver uas
[ 101.520972] Initializing USB Mass Storage driver...
[ 101.521079] scsi10 : usb-storage 6-2:1.0
[ 101.521176] usbcore: registered new interface driver usb-storage
[ 101.521182] USB Mass Storage support registered.
[ 102.903338] usb 6-2: reset full speed USB device number 2 using uhci_hcd
[ 103.020004] usb 6-2: device descriptor read/64, error -71
[ 103.240002] usb 6-2: device descriptor read/64, error -71
[ 103.450003] usb 6-2: reset full speed USB device number 2 using uhci_hcd
[ 103.620002] usb 6-2: device descriptor read/64, error -71
[ 103.840000] usb 6-2: device descriptor read/64, error -71
[ 104.050005] usb 6-2: reset full speed USB device number 2 using uhci_hcd
[ 104.463350] usb 6-2: device not accepting address 2, error -71
[ 104.570003] usb 6-2: reset full speed USB device number 2 using uhci_hcd
[ 104.983340] usb 6-2: device not accepting address 2, error -71
[ 104.983365] usb 6-2: USB disconnect, device number 2
[ 105.090003] usb 6-2: new full speed USB device number 3 using uhci_hcd
[ 105.260002] usb 6-2: device descriptor read/64, error -71
[ 105.480006] usb 6-2: device descriptor read/64, error -71
[ 105.690003] usb 6-2: new full speed USB device number 4 using uhci_hcd
[ 105.806673] usb 6-2: device descriptor read/64, error -71
[ 106.080003] usb 6-2: device descriptor read/64, error -71
[ 106.290002] usb 6-2: new full speed USB device number 5 using uhci_hcd
[ 106.703342] usb 6-2: device not accepting address 5, error -71
[ 106.810006] usb 6-2: new full speed USB device number 6 using uhci_hcd
[ 107.223340] usb 6-2: device not accepting address 6, error -71
[ 107.223350] hub 6-0:1.0: unable to enumerate USB device on port 2
[ 847.596593] usb 6-2: new full speed USB device number 7 using uhci_hcd
[ 847.781385] scsi11 : usb-storage 6-2:1.0
[ 869.493259] usb 6-2: reset full speed USB device number 7 using uhci_hcd
[ 879.739928] usb 6-2: reset full speed USB device number 7 using uhci_hcd
[ 895.993259] usb 6-2: reset full speed USB device number 7 using uhci_hcd
[ 896.243260] usb 6-2: reset full speed USB device number 7 using uhci_hcd
[ 906.489922] usb 6-2: reset full speed USB device number 7 using uhci_hcd
[ 906.636310] scsi 11:0:0:0: Device offlined - not ready after error recovery
[ 1240.346582] usb 6-2: USB disconnect, device number 7
[ 1242.973223] usb 6-1: new full speed USB device number 8 using uhci_hcd
[ 1243.141696] scsi12 : usb-storage 6-1:1.0
[ 1265.439888] usb 6-1: reset full speed USB device number 8 using uhci_hcd
[ 1275.693217] usb 6-1: reset full speed USB device number 8 using uhci_hcd
[ 1291.943223] usb 6-1: reset full speed USB device number 8 using uhci_hcd
[ 1292.193219] usb 6-1: reset full speed USB device number 8 using uhci_hcd
[ 1302.439883] usb 6-1: reset full speed USB device number 8 using uhci_hcd
[ 1302.586484] scsi 12:0:0:0: Device offlined - not ready after error recovery
I get the same messages on a different system.
I've tried removing the ehci-hcd module as recommended in the Linux USB FAQ and in several threads concerning similar issues. I've even taken the device apart to see if anything was broken, fried or disconnected, but I didn't notice anything.
Before I give up and accept that it's an irreparable hardware failure, is there anything that I should try?
I should also mention that I swapped some songs recently, so if this was caused by recent kernel changes, then they were probably introduced in 2.6.39.3. I've found the following in the kernel changelog, which may be relevant:
commit b8680d130d565da6eb07567bd6ff20b73f747498
Author: Alan Stern <[email protected]>
Date: Wed Jul 6 17:03:45 2011 -0400
USB: additional regression fix for device removal
commit ca5c485f55d326d9a23e4badd05890148aa53f74 upstream.
Commit e534c5b831c8b8e9f5edee5c8a37753c808b80dc (USB: fix regression
occurring during device removal) didn't go far enough. It failed to
take into account that when a driver claims multiple interfaces, it may
release them all at the same time. As a result, some interfaces can
get released before they are unregistered, and we deadlock trying to
acquire the bandwidth_mutex that we already own.
This patch (asl478) handles this case by setting the "unregistering"
flag on all the interfaces before removing any of them.
Signed-off-by: Alan Stern <[email protected]>
Tested-by: Éric Piel <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
commit 042fe1a2805b175b318db0fa10cf8c9df192fa7c
Author: Alan Stern <[email protected]>
Date: Fri Jul 1 16:43:02 2011 -0400
USB: fix regression occurring during device removal
commit e534c5b831c8b8e9f5edee5c8a37753c808b80dc upstream.
This patch (as1476) fixes a regression introduced by
fccf4e86200b8f5edd9a65da26f150e32ba79808 (USB: Free bandwidth when
usb_disable_device is called). usb_disconnect() grabs the
bandwidth_mutex before calling usb_disable_device(), which calls down
indirectly to usb_set_interface(), which tries to acquire the
bandwidth_mutex.
The fix causes usb_set_interface() to return early when it is called
for an interface that has already been unregistered, which is what
happens in usb_disable_device().
Signed-off-by: Alan Stern <[email protected]>
Tested-by: Sarah Sharp <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
commit 8c603fc5c6608bac3e3df537f8f4a70a24e4edd0
Author: Alan Stern <[email protected]>
Date: Wed Jun 15 16:29:16 2011 -0400
USB: don't let the hub driver prevent system sleep
commit cbb330045e5df8f665ac60227ff898421fc8fb92 upstream.
This patch (as1465) continues implementation of the policy that errors
during suspend or hibernation should not prevent the system from going
to sleep.
In this case, failure to turn on the Suspend feature for a hub port
shouldn't be reported as an error. There are situations where this
does actually occur (such as when the device plugged into that port
was disconnected in the recent past), and it turns out to be harmless.
There's no reason for it to prevent a system sleep.
Also, don't allow the hub driver to fail a system suspend if the
downstream ports aren't all suspended. This is also harmless (and
should never happen, given the change mentioned above); printing a
warning message in the kernel log is all we really need to do.
Signed-off-by: Alan Stern <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
commit c4c3048b2bda6562bcdf5507bb9c6c248a87f675
Author: Alan Stern <[email protected]>
Date: Wed Jun 15 16:27:43 2011 -0400
USB: don't let errors prevent system sleep
commit 0af212ba8f123c2eba151af7726c34a50b127962 upstream.
This patch (as1464) implements the recommended policy that most errors
during suspend or hibernation should not prevent the system from going
to sleep. In particular, failure to suspend a USB driver or a USB
device should not prevent the sleep from succeeding:
Failure to suspend a device won't matter, because the device will
automatically go into suspend mode when the USB bus stops carrying
packets. (This might be less true for USB-3.0 devices, but let's not
worry about them now.)
Failure of a driver to suspend might lead to trouble later on when the
system wakes up, but it isn't sufficient reason to prevent the system
from going to sleep.
Signed-off-by: Alan Stern <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
commit a96e5158f0cab04b29e9236f04214c056efe3a04
Author: Sarah Sharp <[email protected]>
Date: Sun Jun 5 23:22:22 2011 -0700
USB: Free bandwidth when usb_disable_device is called.
commit fccf4e86200b8f5edd9a65da26f150e32ba79808 upstream.
Tanya ran into an issue when trying to switch a UAS device from the BOT
configuration to the UAS configuration via the bConfigurationValue sysfs
file. Before installing the UAS configuration, set_bConfigurationValue()
calls usb_disable_device(). That function is supposed to remove all host
controller resources associated with that device, but it leaves some state
in the xHCI host controller.
Commit 0791971ba8fbc44e4f476079f856335ed45e6324
usb: allow drivers to use allocated bandwidth until unbound
added a call to usb_disable_device() in usb_set_configuration(), before
the xHCI bandwidth functions were invoked. That commit fixed a bug, but
also introduced a bug that is triggered when a configured device is
switched to a new configuration.
usb_disable_device() goes through all the motions of unbinding the drivers
attached to active interfaces and removing the USB core structures
associated with those interfaces, but it doesn't actually remove the
endpoints from the internal xHCI host controller bandwidth structures.
When usb_disable_device() calls usb_disable_endpoint() with reset_hardware
set to true, the entries in udev->ep_out and udev->ep_in will be set to
NULL. Usually, when the USB core installs a new configuration,
usb_hcd_alloc_bandwidth() will drop all non-NULL endpoints in udev->ep_out
and udev->ep_in before adding any new endpoints. However, when the new
UAS configuration was added, all those entries were null, so none of the
old endpoints in the BOT configuration were dropped.
The xHCI driver blindly added the UAS configuration endpoints, and some of
the endpoint addresses overlapped with the old BOT configuration
endpoints. This caused the xHCI host to reject the Configure Endpoint
command. Now that the xHCI driver code is cleaned up to reject a
double-add of active endpoints, we need to fix the USB core to properly
drop old endpoints in usb_disable_device().
If the host controller driver needs bandwidth checking support, make
usb_disable_device() call usb_disable_endpoint() with
reset_hardware set to false, drop the endpoints from the xHCI host
controller, and then call usb_disable_endpoint() again with
reset_hardware set to true.
The first call to usb_disable_endpoint() will cancel any pending URBs and
wait on them to be freed in usb_hcd_disable_endpoint(), but will keep the
pointers in udev->ep_out and udev->ep in intact. Then
usb_hcd_alloc_bandwidth() will use those pointers to know which endpoints
to drop.
The final call to usb_disable_endpoint() will do two things:
1. It will call usb_hcd_disable_endpoint() again, which should be harmless
since the ep->urb_list should be empty after the first call to
usb_disable_endpoint() returns.
2. It will set the entries in udev->ep_out and udev->ep in to NULL, and call
usb_hcd_disable_endpoint(). That call will have no effect, since the xHCI
driver doesn't set the endpoint_disable function pointer.
Note that usb_disable_device() will now need to be called with
hcd->bandwidth_mutex held.
This should be backported to kernels as old as 2.6.32.
Signed-off-by: Sarah Sharp <[email protected]>
Reported-by: Tanya Brokhman <[email protected]>
Cc: [email protected]
Cc: Alan Stern <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
Does anyone know if any of those changes could kill a USB flash drive?
Linux fun fact #3487: if you remove the uhci-hcd module, your usb keyboard and mouse stop working (luckily I still have an old non-usb keyboard)
Last edited by Xyne (2011-07-22 11:49:37)

I had a while ago similar problem with USB memory stick. At the end, I don't know why, just formatting it using WinXP helped me.
S-
Last edited by StenM (2011-07-22 17:56:32)

Similar Messages

  • Hwd -e does not list connected USB devices

    USB devices for audio in/out not recognized in hwd -e.
    Desired USB Items appear in KDE INFO CENTER: SOUND.
    KDE MIXER alternate...USB Mixer... shows OUTPUT  PCM icon but no INPUT device  is shown (thus, no device is connected).
    System has udev installed but uncertain whether root permission is provided for the USB devices...namely...USB MIXER and SND-USB.
    Spent many hours in stupid search for ...audio group....and ...optical group...
    when the reference name for the "group" is...audio devices... and ....optical devices...  This is a common problem in searching out posts..improper nomenclature references.
    A listing for ...mixer...is provided but none for ...usb mixer...
    Can I assume that all entries in the udev permissions file permit immediate use by root?  Do they have to be edited to function?  The indications are that root owns them all and doesn't need permission.
    Sure would like to get USB audio running!!!
    Are there special requirements for the USB devices?

    Additional info:
    Tried playing a CD track copied onto the desktop in XMMS.  The display shows it responding in XMMS.  There is no audio from the external USB sound device.
    The mixer in KDe is set to USB Audio mixer (PCM).  An output ICON appears but there is no INPUT icon( No source connected).
    hwsetup -v -n follows:
    root@n6re ~]# hwsetup -v -n
    class:  OTHER
    bus:    PCI
    device: (null)
    driver: via-agp
    desc:   VIA Technologies|VT8367 [KT266]
    class:  OTHER
    bus:    PCI
    device: (null)
    driver: unknown
    desc:   VIA Technologies|VT8367 [KT266 AGP]
    class:  OTHER
    bus:    PCI
    device: (null)
    driver: via-ircc
    desc:   VIA Technologies Inc|VT8233 PCI to ISA Bridge
    class:  OTHER
    bus:    PCI
    device: (null)
    driver: unknown
    desc:   VIA Technologies|VT82C586 IDE [Apollo]
    class:  OTHER
    bus:    USB
    device: (null)
    driver: unknown
    desc:   Linux 2.6.9-ARCH ehci_hcd VIA Technologies, Inc. USB 2.0
    class:  OTHER
    bus:    USB
    device: (null)
    driver: unknown
    desc:   Linux 2.6.9-ARCH uhci_hcd VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1Controller
    class:  OTHER
    bus:    USB
    device: (null)
    driver: unknown
    desc:   Linux 2.6.9-ARCH uhci_hcd VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1Controller (#2)
    class:  OTHER
    bus:    USB
    device: (null)
    driver: unknown
    desc:   Linux 2.6.9-ARCH uhci_hcd VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1Controller (#3)
    class:  OTHER
    bus:    USB
    device: (null)
    driver: unknown
    desc:   Linux 2.6.9-ARCH uhci_hcd VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1Controller (#4)
    class:  OTHER
    bus:    USB
    device: (null)
    driver: keybdev
    desc:   Silitek IBM USB HUB KEYBOARD
    class:  OTHER
    bus:    USB
    device: (null)
    driver: unknown
    desc:   Silitek IBM USB HUB KEYBOARD
    class:  OTHER
    bus:    USB
    device: (null)
    driver: audio
    desc:   USB Audio
    class:  OTHER
    bus:    USB
    device: (null)
    driver: unknown
    desc:   USB Audio
    class:  OTHER
    bus:    USB
    device: (null)
    driver: unknown
    desc:   unknown
    class:  OTHER
    bus:    USB
    device: (null)
    driver: unknown
    desc:   unknown
    class:  NETWORK
    bus:    PCI
    device: eth
    driver: ne2k-pci
    desc:   Realtek|RTL-8029(AS)
    class:  MOUSE
    bus:    USB
    device: input/mice
    driver: mousedev
    desc:   Logitech USB-PS/2 Optical Mouse
    class:  MOUSE
    bus:    PSAUX
    device: psaux
    driver: msintellips/2
    desc:   Generic PS/2 Wheel Mouse
    class:  AUDIO
    bus:    PCI
    device: (null)
    driver: snd-cmipci
    desc:   C-Media Electronics Inc|CM8738
    class:  AUDIO
    bus:    USB
    device: (null)
    driver: audio
    desc:   USB Audio
    class:  AUDIO
    bus:    USB
    device: (null)
    driver: audio
    desc:   USB Audio
    class:  CDROM
    bus:    IDE
    device: hdc
    driver: ignore
    desc:   SONY DVD RW DRU-530A
    class:  CDROM
    bus:    IDE
    device: hdd
    driver: ignore
    desc:   SONY CD-RW CRX320E
    class:  VIDEO
    bus:    PCI
    device: (null)
    driver: Card:ATI Radeon (fglrx)
    desc:   ATI|Radeon 8500 QL (AGP)
    class:  FLOPPY
    bus:    UNKNOWN
    device: fd0
    driver: unknown
    desc:   3.5" 1.44MB floppy drive
    class:  HD
    bus:    IDE
    device: hda
    driver: ignore
    desc:   Maxtor 6Y080L0
    class:  KEYBOARD
    bus:    USB
    device: (null)
    driver: keybdev
    desc:   Silitek IBM USB HUB KEYBOARD
    class:  USB
    bus:    PCI
    device: (null)
    driver: usb-uhci
    desc:   VIA Technologies|VT82C586B USB
    class:  USB
    bus:    PCI
    device: (null)
    driver: usb-uhci
    desc:   VIA Technologies|VT82C586B USB
    class:  USB
    bus:    PCI
    device: (null)
    driver: usb-uhci
    desc:   VIA Technologies|VT82C586B USB
    class:  USB
    bus:    PCI
    device: (null)
    driver: usb-uhci
    desc:   VIA Technologies|VT82C586B USB
    class:  USB
    bus:    PCI
    device: (null)
    driver: ehci-hcd
    desc:   VIA Technologies Inc|VT8235 USB Enhanced Controller
    class:  UNKNOWN
    bus:    PCI
    device: (null)
    driver: ohci1394
    desc:   Texas Instruments|TSB43AB21 IEEE-1394 Controller (PHY/Link) 1394a-2000
    [root@n6re ~]#

  • IPhone causes problems on other USB devices?

    Is anyone having problems with external USB hard drives or any other USB peripheral when his iPhone is connected to a Windows PC or sometime after that?
    I'm having some problems with external USB hard drives when the Windows system is continuously hammering them for more than a half-hour. The problem is not easily reproducable, and I don't know the cause.
    It probably has nothing to do with the iPhone. But one possibility I have to consider is that the iPhone draws enough current (or something else I haven't thought of) that interefers with the USB communications.

    What I meant in my previous post was that the USB wouldn't allow the iPhone to draw more current than the USB can safely provide, unless it was defective. I have an external hardrive, a wireless mouse, my printer and my iPhone connected directly to my laptop's USB ports and have not seen any problems with any of them. In several years of using USB devices, I've not seen any problems that I could assign to the USB ports/controllers... they just seem to work all the time. Will be interested as to your findings.

  • Connecting Nano to PC causes other USB devices to unconnect

    Connecting Nano to PC causes other USB devices to unconnect from USB2 ports. USB2 are on a pci card. Is there anything I can do to stop this from happening?
    Thanks,
    RON C

    Hi
    I have Satellite M70-159 and I didnt notice any strange problem with USB ports. I use a few of them like printer, webcam, USB memory stick, optical mouse and external HDD. The devices are recognized properly and I remove them always without safe remove option.
    Now I have Vista preinstalled and till now there is no problem. If I understood you right USB ports are working well but there is problem with USB modem only. Am I right?
    Try also to contact modem producer support. Maybe is issue like this known and hopefully they have some logical explanation.

  • Does Mac format cause USB device not recongized ?

    Hi, I have beengiven a 2nd hand Ipod.
    When i try to connect to any windows PC I get "USB device not recongized ".
    When I look at the setting, there is nothing to say it is windows formatted, S/n and Mdel are the last things displayed.
    If its MAC formatted would that cause my error message.
    If so how to I reformatto windows files systems if I don't have a MAC and my PCs don't recognize the Ipod ?
    I've trie placing the ipod in 'disk mode' but the PC don't recongze it either ( I'm using the same USB port as my windows formatted Ipod nano and the same cable. Is the Ipod toast ?

    Well, you need to check if iTunes recognizes the iPod. If it does then great. You just need to click the restore button, and then just sync it to your computer. This will format it so you can use it on Windows.
    If not, there might be some problem with the iPod. Go to your nearest Apple Store and get them to check it for you, or the Apple Technical Support Hotline (1-800-APL-CARE)
    Hope I helped,
    Danny

  • USB Device Not Recognized - Caused by iTunes Update???

    I have been reviewing the posts associated with USB Device Not Recognized and many persons have had this problem, but most are within the past 10-12 days. My problem started after installing an iTunes update.
    Can Apple please advise if the latest iTunes update interacts with Windows to cause this problem (which remains even after iTunes is uninstalled).

    Check if any of the tips in this thread can help you.
    http://talk.sonymobile.com/message/328564#328564
     - Community Manager Sony Xperia Support Forum
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • Ejecting iPod causes other USB devices to be ejected at the same time.

    When ejecting an iPod Nano 4g from iTunes under Windows Vista, all other USB devices attached to the computer are also ejected at the same time (external hard drives, thumb drives, scanners, etc.). Is there a way to prevent this from happening?

    Express is slow ethernet.. 10/100 only. The max speed of any connection to a USB hard disk is limited severely by the 100mbit..
    USB is always slow btw.. This is actually a poor way to share a drive. A cheap NAS.. ie ethernet to Sata directly is far far superior and a single disk NAS can be had cheaply.. you will never get close with USB in network situations.
    If you use a hub though, you can plug multiple disks into an Extreme.. I guess the network speed is at least no worse than the USB hub -- ethernet devices which are lousy as a whole.
    Never forget you have the fastest ethernet adapters and fastest possible connectors already on computers on the network.. people are so utterly mesmerized by NAS they forget.. a FW800 or better USB3 if you have a newer computer shared to the network from a computer has much higher throughput and is much cheaper than even the very low end network stand alone boxes.

  • USB devices cause a crash at Lion login screen

    Since I have installed MacOS X Lion I am experiencing regular crashes at the login screen at startup.
    These crashes occur virtually always when
    + a USB device that was connected at the previous shutdown is missing at next launch
    + a USB device that was not connected at previous shutdown is connected at next launch
    The type of the device does not make a difference.
    I have had this with USB sticks, but also with my Wacom graphics tablet and a regular USB hard disk (connected via two USB ports).
    This is extremely annoying and I had hoped this would be fixed with the latest Lion upgrade, but it is not.
    Anyone out there has an idea for an easy fix?

    Guys -
    am I really the only person who sees this?
    This is a serious issue and I also see it happening upon connecting certain USB devices (e.g. today a Garmin nüvi 1250) while running Lion. Non of the OS updates since I posted this helped.
    I feel like I am running Windows here...

  • USB devices causing G5 meltdown

    A friend purchased a used G5 Dual 2.5GHz running a fresh install of 10.4.x. The machine runs fine when no USB devices are attached, but consistently crashes when a USB device is connected. Both the Maxtor external HDD and Pro Tools external audio Interface (Mbox2) result in the same behavior. The computer attempts to go to sleep and never wakes up, with the fans humming at full strength. Without the USB devices attached the machine can go to sleep without problems.
    This occurs with both the front USB ports and the rear (Althoug I assume these are connected to the same controller?) The keyboard and mouse can remain connected without issues. It would appear that the USB hardware is the original.
    Thoughts, next troubleshooting steps?
    Much appreciated,
    Jon

    Ah, the good ol' cinema display. We may have Yahtzee.
    That would most likely be your problem. The hubs built into those monitors are prone to failure. It is especially bad if you chain a mouse of the keyboard ports.
    Try leaving the hub connections from the monitor disconnected and plug the mouse and keyboard each into its own USB port on the Mac and try that. If it works and you still need a hub try a standalone powered USB hub.

  • HT202731 Unstable operation when 2 or more USB devices connected to usb port on a MacBook Pro running Yosemite

    I have tried connecting a number of devices to my MacBook Pro but I have found if I try to connect 2 or more using either usb ports or a usb hub the computer reports 'disk not ejected properly' and sometimes it will fail to recognise the device and remove it from the desktop or it stalls operation and I have to turn the computer off at the power button.
    I have tried erasing the hard drive and reinstalling the operating system.
    I have done various types of reset suggested by apple support.
    The computer has been to an Apple dealer who has tested the hardware but found nothing due to the intermittent nature of the problem.
    I have operated the computer with only the software originally installed on it present.
    Could it be possible that a virus could be present on the usb devices I am trying to connect?
    My computer is a MacBook Pro (13-inch, Mid 2012)
    Processor 2.5 GHz Intel Core i5
    Memory 4 GB 1600 MHz DDR3
    Startup Disk Macintosh HD
    Graphics Intel HD Graphics 4000 1024 MB
    Operating System X Yosemite 10.10.1
    Devices I have connected to USB ports all USB 3.0 compatible in a variety of combinations:-
    7 port superspeed USB 3.0 hub (powered).
    4 port Inateck USB 3.0 portable hub (not powered).
    Buffalo ultra portable 500Gb USB 3.0 hard drive.
    Seagate Expansion portable 500Gb USB 3.0 hard drive.
    Seagate Expansion desktop 2Tb USB 3.0 hard drive (powered).
    Seagate Expansion desktop 3Tb USB 3.0 hard drive (powered).
    ScanDisk Cruiser Edge 16Gb USB stick.
    ScanDisk Cruiser Edge 32Gb USB stick.
    Hewlett Packard 16Gb USB stick. (This causes an instant crash now.)

    Why?
    - Because when I'm editing/ rendering lots of HD video everyday, I don't want to share system resources between virtual machines... I want the entire system's resources devoted to what I'm doing.
    - I don't want to spend anymore money than I have to in order to buy one of the faster virtual systems. Not to mention, I've had a bad experience with Parralels in the past and I'd rather not use one again.
    - I really don't want to clutter up my system anymore than I have to for a project that's only going to take a few weeks.
    - I don't mind swapping hard drives... it takes two minutes, and I have an empty ssd just sitting on the shelf.
    So, back to my original question. Can I just swap the computer's drives, then install Ubuntu on the second drive and be good to go without any harm to my MacBook Pro or OSX on the other drive (which wouldn't be connected when Ubuntu is running)?
    Thanks.

  • My Mac Mini doesn't start up when usb devices are plugged in.

    My Mac Mini doesn't start up when usb devices are plugged in.
    It just shows the "White screen of Death" when 1 or more usb ports are used.

    Haha. I just restarted it and it worked. Instead of turning it off and on. But thanks.
    By the way:
    Note: It is possible that the SMC could encounter an issue that may cause unusual system behavior typically related to the symptoms described below. In some cases, resetting the SMC may be the only correct method to resolve the issue, however, an SMC reset should only be attempted after all other standard troubleshooting has been performed.
    So I hope it is fixed for now. But could someone also post another solution?

  • Usb 6501 unresponsive causing BSOD(Blue Screen Error)

    There are a lot posts about the same issue but mine is a little peculiar so i decided to post it.
    I am using two usb DAQ in the same pc(usb-6501, usb-6001), connected to the usb port on the back. The usb-6501 is used to obtain digital inputs from read switches, Sensors through an ssr. The usb-6001 is used to control 2 double valve solenoid, 1 dc motor, 2 indicator lamps. usb-6001 is also used to read analog values of current(using hall effect sensor) and voltage(using potentiometer).
    At first i was facing problems with the usb-6001(the usb-6501 was working fine at this point) resetting during operation accompanied by BSOD. Then i learned it was due to my relay, which requires 30 mA of current to switch so i used the ULN2003a to interface the usb-6001 with the relays and after that the application was running perfectly for 4 days.
    Now the usb-6501 is having the same problem and when i perform "Self Test" from NI MAX it shows "Error Code:50405" and i am able to reset the device from NI MAX only sometimes, other times i would have to unplug the USB device then plug it back in. As the application is used for an automated test rig the customer is frustrated by this problem. Once the card becomes unresponsive(or after the card is reset) BSOD occours.
    I have checked all the device drivers and OS for any errors but they are fine. i have even tried changing the ram to solve the BSOD with no use.
    System Details:
    Windows 7 SP1
    NI MAX 14.0
    power saving is disabled 
    I have attached the latest mini dump files as they might help in finding out the reason behind this problem(File extensions changed for the purpouse of uploading).
    I need to know: Is there any permanent solution for this problem? and what is the reason for this problem.
    Attachments:
    060115-12480-01.txt ‏315 KB
    053015-12324-01.txt ‏315 KB
    052615-17440-01.txt ‏315 KB

    Additional info : i did an analysis of the dump files and this is the result
    0: kd> !analyze -v
    * Bugcheck Analysis *
    DRIVER_IRQL_NOT_LESS_OR_EQUAL (d1)
    An attempt was made to access a pageable (or completely invalid) address at an
    interrupt request level (IRQL) that is too high. This is usually
    caused by drivers using improper addresses.
    If kernel debugger is available get stack backtrace.
    Arguments:
    Arg1: fffff88009fe10b1, memory referenced
    Arg2: 0000000000000002, IRQL
    Arg3: 0000000000000000, value 0 = read operation, 1 = write operation
    Arg4: fffff8800657922e, address which referenced memory
    Debugging Details:
    READ_ADDRESS: GetPointerFromAddress: unable to read from fffff800032c30e8
    fffff88009fe10b1
    CURRENT_IRQL: 2
    FAULTING_IP:
    nifslk+822e
    fffff880`0657922e 0fb650ff movzx edx,byte ptr [rax-1]
    CUSTOMER_CRASH_COUNT: 1
    DEFAULT_BUCKET_ID: VISTA_DRIVER_FAULT
    BUGCHECK_STR: 0xD1
    PROCESS_NAME: System
    TRAP_FRAME: fffff80000b9c6b0 -- (.trap 0xfffff80000b9c6b0)
    NOTE: The trap frame does not contain all registers.
    Some register values may be zeroed or incorrect.
    rax=fffff88009fe10b2 rbx=0000000000000000 rcx=0000000000000000
    rdx=fffff80000b9c8e0 rsi=0000000000000000 rdi=0000000000000000
    rip=fffff8800657922e rsp=fffff80000b9c840 rbp=fffff88009fe10b1
    r8=0000000000000000 r9=0000000000000000 r10=0000000000000000
    r11=0000000000000000 r12=0000000000000000 r13=0000000000000000
    r14=0000000000000000 r15=0000000000000000
    iopl=0 nv up ei ng nz na po nc
    nifslk+0x822e:
    fffff880`0657922e 0fb650ff movzx edx,byte ptr [rax-1] ds:c8e0:fffff880`09fe10b1=??
    Resetting default scope
    LAST_CONTROL_TRANSFER: from fffff80003091be9 to fffff80003092640
    STACK_TEXT:
    fffff800`00b9c568 fffff800`03091be9 : 00000000`0000000a fffff880`09fe10b1 00000000`00000002 00000000`00000000 : nt!KeBugCheckEx
    fffff800`00b9c570 fffff800`03090860 : fffffa80`06adc250 fffffa80`05c3a060 fffffa80`06adc250 00000000`0000ffff : nt!KiBugCheckDispatch+0x69
    fffff800`00b9c6b0 fffff880`0657922e : fffff880`05d47468 fffff880`01d91f90 00000000`00000000 fffff880`09fe0770 : nt!KiPageFault+0x260
    fffff800`00b9c840 fffff880`05d47468 : fffff880`01d91f90 00000000`00000000 fffff880`09fe0770 fffff880`09fe17a0 : nifslk+0x822e
    fffff800`00b9c848 fffff880`01d91f90 : 00000000`00000000 fffff880`09fe0770 fffff880`09fe17a0 fffff880`09fe10b1 : 0xfffff880`05d47468
    fffff800`00b9c850 00000000`00000000 : fffff880`09fe0770 fffff880`09fe17a0 fffff880`09fe10b1 fffff800`00b9c8e0 : nipalk+0x75f90
    STACK_COMMAND: kb
    FOLLOWUP_IP:
    nifslk+822e
    fffff880`0657922e 0fb650ff movzx edx,byte ptr [rax-1]
    SYMBOL_STACK_INDEX: 3
    SYMBOL_NAME: nifslk+822e
    FOLLOWUP_NAME: MachineOwner
    MODULE_NAME: nifslk
    IMAGE_NAME: nifslk.dll
    DEBUG_FLR_IMAGE_TIMESTAMP: 51f2daeb
    FAILURE_BUCKET_ID: X64_0xD1_nifslk+822e
    BUCKET_ID: X64_0xD1_nifslk+822e
    Can anyone help me with what this means?

  • The USB device Apple Internal Keyboard / Trackpad

    Hello,
    in the console of my rMBP 13 mid 2014 I have a lot of messages of this type:
    The USB device Apple Internal Keyboard / Trackpad (Port 5 of Hub at 0x14000000) may have caused a wake by issuing a remote wakeup (1)
    can please somebody give me some information what this message mean?
    Thanks

    There are 3 checks that can be performed initially:
    - perform a NVRAM reset : About NVRAM and PRAM
    - perform a SMC reset: Intel-based Macs: Resetting the System Management Controller (SMC)
    - perform a Safe Boot : OS X: What is Safe Boot, Safe Mode?  
    - then reboot to normal
    If the issue persists:  run Diagnostics. Using Apple Diagnostics
    and check if any codes come up : Apple Diagnostics: Reference codes
    Cheers

  • I have pluged a portable battery to the USB and my macbook pro stopped working after that, right before it shut down there was a message on the screen that said something like " USB device is withdrawing so much power, please disconnect and connect again?

    I have plugged a portable battery to the USB and my macbook pro stopped working after that, right before it shut down there was a message on the screen that said something like " USB device is withdrawing so much power, please disconnect and connect again?
    if the device I connected have caused this, shouldn't the macbook itself have some type of protection that should prevent this from happening.
    because when I took it to an apple certified maintenance shop, the guy said that now it could only run while connected to the power. it won't run on batteries. and that I have to change the motherboard.
    can I just replace the damaged part only, would apple consider this as a design issue and they could pay for it, or should I just buy a new motherboard for 800$.
    Help.

    BB1B2,
    The problem is in finding a tech shop that will/can do board level repairs on Macs. They are few. And I certainly wouldn't spend $800 on a new logic board - I would replace the computer if I had to pay that much!
    You could call around to a few repair shops and see if they feel competent to isolate the problem and do a board level repair - but I'm afraid, in the end, that your search will be futile.
    Sorry,
    Clinton

  • I have a 3rd generation ipod that will not connect. I keep getting an error message that says "USB Device Not Recognized".  I have tried 3 seperate cables and none of them are working.  Please help!

    It keeps telling me that one of the USB devices for this computer has malfunctioned and windows does not recognize it.  I have tried all of the ports and still am not having any luck.  I have purchased 3 brand new cables and none of them are working.  I have tried to update the driver but it says I am using the most up to date.  I have tried to reset the Ipod by holding the center button and menu button until the apple appears.  I am not sure what else to try.  Any help would be greatly appreciated.  My computer is Windows Vista!

    Hello butterflygirlie,
    Have you tried uninstalling the driver for your iPod from within Device Manager?  After uninstalling it, go ahead and unplug your iPod and plug it back in.  Doing so should cause your system to locate the proper driver for it.
    B-rock

Maybe you are looking for

  • I can anyone help me get the audio to work on my iPad with ios7?

    I just updated to ios7 and the sound will not work with my aps at all.  If I plug in headphones it works.  If I go to the settings and adjust the volume there I can hear it but then when I go the aps it still does not work.  I have done the general s

  • RV220W to RV220W No Webpage Access

    Senario: Cisco Case # 620123711 Using QuickVPN from one RV220W to another RV220W I cannot access the Webpage of the remote router.  Goes to "CERTIFICATE NOT VALID" then click through that, and the the login page will not come up.  Sceen flashes a hin

  • Video Messaging Issues

    Hello All, I am having issues looking at a video message that someone sent to me. I am on a Macbook Pro running (10.9) My skype version is (7.1). In skype it comes up with a link when I click the link it tells me to download it. When i go to download

  • How to drag and drop an Image between two JPanels inside a Split Pane

    I'm tring to do that, and my actual problem is as follows: I drag the Image from the bottomPanel but I can't drop it in the topPanel, I'm using this classes: import java.util.*; import java.awt.*; import java.awt.event.*; import javax.swing.*; import

  • Integration Event webservice problem

    Hi there i'm trying to create a java client to check all contacts deleted in crmod. For that i've created a workflow rule that creates an integration event, everytime a contact is deleted. Now when i try to get those events i'm getting this message: