How can I safely remove my USB hard drive in Fedora 17?

In Fedora 17, when I want to plug my USB hard disk out, I can only unmount it. But the problem is that the hard drive won't be powered off so that I can plug it out.

In some other distros like Ubuntu there is a Safely Remove option which powers the hard drive off.

How can I fix that?

2

5 Answers

After a lot of web surfing I came across the solution suggested by someone in askubuntu.com. Thank you everybody. I just needed to install udisks package! To power off my hard disk I have to enter the following command in terminal after unmounting all of its partitions:

udisks --detach /dev/sdX
3

There is no safe removal button for the USB drive. You can eject the USB drive by clicking the small triangle which is on the side of the USB drive.

For ejecting a flash drive follow these steps:

  1. First see the USB drive by entering this command:

    fdisk -l
  2. Assuming your USB drive is /dev/sdb1, eject it with the following command:

    umount /dev/sdb1

    Alternatively:

    eject /dev/sdb1 

This will allow you to safely remove your USB drive.

1

Try

eject /dev/sdX

where X is the letter of your device.

Edit

You can find all available drive letters by using fdisk -l.

6

As of Ubuntu 20.04

udisksctl power-off -b /dev/sdb turns off the LED of an external HDD.

Note: regarding eject, it apparently has multiple methods that it tries until one of them "succeeds" (use -v to see what's going on). Nothing really helped:

  • eject -v /dev/sdb tried CDROM ejection and reported success, but didn't actually do anything (no LED changes, no dmesg messages)
  • eject -v --scsi /dev/sdb (explicitly chosen method) actually succeeded in ejecting, but the drive was detected right back (as evidenced by dmesg)

Enter the following command to power off the hard drive:

hdparm -y /dev/sdx

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like