You are not logged in.

Dear visitor, welcome to KDE-Forum.org. If this is your first visit here, please read the Help. It explains in detail how this page works. To use all features of this page, you should consider registering. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.

Gary Jahns

Beginner

  • "Gary Jahns" started this thread

Posts: 2

Location: Encinitas, California, USA

  • Send private message

1

Wednesday, November 29th 2006, 5:01am

Safely Remove USB drive does not work

I can plug in a USB drive and use it, but when I right-click the drive icon in Konqueror and select "Safely Remove", nothing happens. I have to shut down to get the drive out. I would appreciate any advice on how to get the Safely Remove feature working. I am running Fedora Core 6.

tayral

Beginner

Posts: 12

Location: France

Occupation: Technician

  • Send private message

2

Thursday, November 30th 2006, 10:53am

Hi,

This is propoably because the usb drive is mounted with root permission, and you are logged as a simple user, so you can unmount the device.

To change that :
- search in which name your usb device is mounted. To do that type "mount" in a prompt.
- in general cases, the name of the usb drive is /dev/sda1
- open the /etc/fstab file (with the root permission), and verifiy there are no line for your device (noline start with /dev/sda1 or the name of your device). If yes, enter these data on a new line :
/dev/sda1 /media/cle-usb auto rw,noauto,user 0 2.
- with root permission, you can umount your device (umount /dev/sda1).
- in Konqueror, click or double click on your usb device : the device is mounted. By right clicking on "Safely Remove" on Konqueror, you can now unplug your device.

Regards
French newbie in testing debian

Gary Jahns

Beginner

  • "Gary Jahns" started this thread

Posts: 2

Location: Encinitas, California, USA

  • Send private message

3

Friday, December 1st 2006, 1:04am

Thanks Tayral, I got it working with your instructions. FYI to anyone else that needs to do this: when you do the mount command in the first step, note the mount point. When you get to the line added to fstab, use this mount point instead of Tayral's "cle-usb".

tayral

Beginner

Posts: 12

Location: France

Occupation: Technician

  • Send private message

4

Friday, December 1st 2006, 9:00am

Yes,

I forgot that. The mount point must exist (in my exemple /media/cle-usb). If not, you must create the directory with the command mkdir.
French newbie in testing debian