<br />> Hi,<br />> How do I mount a USB drive after booting up
FC3?<br />> <br />> Thanks,<br />> Charles Li<br />> <br /><br
/>Assuming it doesn't "just work" for you, the trick is that FC
thinks it's a SCSI device.  I got mine to work using something like
this:<br /><br />mkdir /media/usbdisk<br />chmod 777 /media/usbdisk   #
setting permissions for ease of use<br />mount -t vfat /dev/sda1
/media/usbdisk<br /><br />If you have a USB disk that is an NTFS volume, I
am not sure how far you can get, because I haven't worked on NTFS support.
 But I found I could build a new filesystem with<br /><br />mkfs -t ext3
/dev/sda   <br /><br />Then it was easy to mount.<br /><br />Erik<br /><br
/>