• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Mounting USB Flash Drive on Fedora

Yohhan

Senior member
How do I mount my 128 MB USB flash drive on Fedora? I looked under /dev/usb but there were quite a few devices listed there.
 
You will need to edit yout /fstab file

Here is how I would do it
as root...$vi /etc/fstab

Now create a entry similar to the below.This assumes your device is named/recognized as /dev/sda1

/dev/sda /mnt/usb_drive vfat noauto,rw,kudzu 0 0

the /mnt/usb_drive can named whatever i.e /mnt/fooboo,
vfat depends on file type if you share the drive between windows and linux vfat is the way to go. Otherwise ext3 ,rfs etc.

Pm me if need be.
 
Back
Top