Linux usb
From John Freier
USB Mount and Unmount
To mount a USB drive in linux
sudo mkdir /mnt/usbdrive -- Create folder if does not exsit all ready. sudo mount /dev/sda1 /mnt/usbdrive
To Unmount a USB drive in linux saftly
sudo umount /mnt/usbdrive