When I go to mount the USB drive in VirtualBox and use the command:
mount -t auto /dev/sdb /mnt
it returns:
mount: you must specify the file system type.
Not a linux guy so I'm sure this is supremely noobish.
Pipesnake,
it should be
mount -t auto /dev/sdb
1 /mnt
which means mount the first partition of your device sdb.
then a
ls -l /mnt
should show you the content of your device (usb key).
spiccioli