mounting a usb key on linux
To mount a usb key on linux first create a folder as your mount target (do this only once!):
mkdir /media/sda
plug the usb key into the computer and execute the following as root
mount /dev/sda1 /media/sda
the drive will now be accessable in /mount/sda and before removing the device type:
umount /media/sda
before removing the key from the computer.