Whoa there! Stop what you're doing!
Boot into RedHat.
Insert flash drive.
Type cdrecord -scanbus.
Check to see if there's any mention of a removable drive there.
Look to see if the usb-storage module has been loaded by typing lsmod (that was a little L) as root.
If so, then check to see if you have any scsi drives listed in /dev:
ls /dev/sd*
If you have, then mount that as your drive. You shouldn't have to be playing around with looped filesystems at all!
mount -t vfat /dev/sda1 /mnt/flash
Of course, the directory /mnt/flash needs to be made first.
|