LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   USB Pendrives (https://www.linuxquestions.org/questions/linux-newbie-8/usb-pendrives-275307/)

cuscus1986 01-08-2005 05:38 AM

USB Pendrives
 
Your going to be sick and tired of me by the end of today. You know you love it really though. :D I have a USB pen drive that I am trying to negotiate into working with Fedora Core 3. The orange light flashes when I plug it into the USB port but it doesn't get mounted. Does it have to be mounted manually or have I missed something?

whipermr5 01-08-2005 05:43 AM

You need to mount it manually. Do a
Code:

mount -t vfat /dev/sda1 /mountpoint
. This assumes that you want to mount it in /mountpoint, and must create that directory. It also assumes that it is the only scsi hardrive connected to your computer, and it has the fat, or fat16, or fat32 filesystem. You can see start->systemtools->hardware browser for all the specifications.

kevinalm 01-08-2005 11:35 AM

mount -t msdos for fat16, vfat is for fat32. Actually, you can probably skip the -t option, as mount _usually_ can figure it out for itself.

blinux1 01-08-2005 01:28 PM

I do not use fedora, but I know that in mandrake 9 you mount it at least partially by yourself. For example, when i put my USB drive in, an icon will show up (/dev/sda1/). However, I still have to click it, and when I do, Mandrake creates a temporary mount point /mnt/removable and mounts it for me. Do you have such capabilities?

minm 01-08-2005 02:16 PM

try /dev/sda


Too see what's really in the device use the command ' "dmesg | grep remov '

and mount that using the mount command
remember to unmount it before physically removing the pen drive

servnov 01-08-2005 04:19 PM

mount /dev/sda1 /where/ever/you/want

Need to be root.

Then, when done:

umount /dev/sda1

cbonar 01-08-2005 04:41 PM

Usefull to know what is the problem :
- unplug your pendrive
- in a console, as root, type :
Code:

tail -f /var/log/messages
- plug your pendrive and observe the messages in the console ; if there's an error, it will probably be printed here


All times are GMT -5. The time now is 01:49 PM.