Raspberry Pi – Using External HDD 3.0 with Raspberry Pi 3

external hard drivehard driveraspberry piusb

So I have this raspberry pi 3 with a external HDD 500GB and a usb 3.0. The raspberry has only USB 2.0 ports.

So when I plug the HDD in the raspberry the HDD does not show in the file explorer, the bigger problem is that when I plug it it, all my other devices(mouse, keyboard and flash) instantly die and I have to pull out the HDD to proceed using my mouse and keyboard.

The HDD is working perfectly on my laptop(on both my USB 3.0 and USB 2.0 port).

Can I somehow make my HDD work with my raspberry or will I have to get a new one ?!

Best Answer

I have this raspberry pi 3

with a external HDD 500GB and a usb 3.0.

A external 500GB USB2 harddisk and a USB3 pendrive?
or a 500GB external USB3 harddrive?

When I plug the HDD in the raspberry ... all my other devices(mouse, keyboard and flash) instantly die and I have to pull out the HDD to proceed using my mouse and keyboard.

This is almost centainly because the HDD is drawing more power than the Pi can supply.

The board has a single MicroUSB power connector and a undefined PSU. (Undefined as, you have to provide this yourself. Often an USB charger is used that depending on the model it those can supply between ½A and 3Amp. You did not mention which PSU you are using.

However, that thing needs to power both the rPi (using up to 1Amp) and all pheripherals. A HDD (especially one which spins up) draws a lot of power. It is very likely that you are exceeding your power budget.

Without knowing precisely which PSU is used, which other devices are plugged in and how much your HDD draws it is hard to say though. As a rought figure: 2½ drives tend to draw about 650mWatt.

Citing: https://www.raspberrypi.org/documentation/hardware/raspberrypi/power/README.md

The Raspberry Pi 3 is powered by a +5.1V micro USB supply. Exactly how much
current (mA) the Raspberry Pi requires is dependent on what you connect to
it. We have found that purchasing a 2.5A power supply from a reputable
retailer will provide you with ample power to run your Raspberry Pi.

Typically, the model B uses between 700-1000mA depending on what 
peripherals are connected; The maximum power the Raspberry Pi can use
is 1 Amp. If you need to connect a USB device that will take the power
requirements above 1 Amp, then you must connect it to an externally-
powered USB hub.

The power requirements of the Raspberry Pi increase as you make use of 
the various interfaces on the Raspberry Pi. The GPIO pins can draw 50mA
safely, distributed across all the pins; an individual GPIO pin can only
safely draw 16mA. The HDMI port uses 50mA, the camera module requires
250mA, and keyboards and mice can take as little as 100mA or over 1000mA!
Check the power rating of the devices you plan to connect to the Pi and
purchase a power supply accordingly.

Can I somehow make my HDD work with my raspberry or will I have to get a new one ?

The normal solution for this would be to either plug a PSU into your external drive (many ship with an option for external power but without matching PSU, hoping that they can draw enough power out of an USB interface), or an powered USB hub. In this case that hup will have its own PSU and can supply up to 500mA (USB2) or 900mA (USB3) to the harddrive.

Related Question