LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Hardware (https://www.linuxquestions.org/questions/linux-hardware-18/)
-   -   Dont know how to detect thumbdrive on fedora2 (https://www.linuxquestions.org/questions/linux-hardware-18/dont-know-how-to-detect-thumbdrive-on-fedora2-285713/)

drush 02-03-2005 06:13 AM

Dont know how to detect thumbdrive on fedora2
 
I am using a usb flashdrive or thumbdrive. how do i get linux to detect it?

qwijibow 02-03-2005 07:52 AM

it probably already has.
just mount it.

after plugging in the usb driver, run dmesg, on the last few lines should be some note about a new usb drive being attached.

if this is the first usb drive you plugin, it will probably be /dev/sda1 if its the second, then /dev/sda2 etc etc

add this to the /etc/fstab to allow non root users to mount it... somthing like this...

Code:

/dev/sda1 /mnt/usbdrive auto noauto,user,sync,dirsync 0 0
the folder /mnt/usbdrive MUST exist, make it with mkdir /mnt/usbdrive

for more into, read "man mount"


All times are GMT -5. The time now is 08:26 AM.