In /dev you do indeed see the hard drives as /sda and /sdb etc.
If you go to /dev/disk/by-id/ you will see a different list by unique device names.
When you mount it, use that name just as you would use /sda.
The advantage of using unique device names instead of names like /sda, is the device is mounted the the same way each time regardless of boot order
or thumb drives left in while rebooting which can change the usb drive order, etc.
Here's the mount command for my Cowen mp3 player (one line):
mount /dev/disk/by-id/usb-COWON_J3_0221001E55027D511123241626337D51-0:0 /media/cowon-j3-main
And to mount the micro Sd in the same device, I go back to /dev/disk/by-id to discover it's name, and mount it like this (one line):
mount /dev/disk/by-id/usb-COWON_J3_EXT_0221001E55027D511123241626337D51-0:1-part1 /media/cowen_j3_card/
You have to make the mount directories first of course. I usually put drives with fixed media in /mnt/ and drives with removable media in /media/. Others do it differently.
Once you have it working right from the command line, you can put it in your file system table (edit /etc/fstab as root) to make mounting it easier.
Here's an excerpt from my fstab that shows how I mount 4 different mp3 players (each 1 line per device and 2 per device if it has a microsd card in it):
# -------- Sansa 4gb e260 in Rockbox mode
/dev/disk/by-id/usb-Rockbox_Internal_Storage_90000000000000000A4B4520213ED0490-0:0-part1 /media/sansa-main auto noauto,users 0 0
/dev/disk/by-id/usb-Rockbox_SD_Card_Slot_90000000000000000A4B4520213ED0490-0:1-part1 /media/sansa-main auto noauto,users 0 0
# -------- Sansa 8gb e280 in Sansa mode
/dev/disk/by-id/usb-SanDisk_Sansa_e280_D008E2146237B49F0000000000000000-0:1-part1 /media/sansa-main auto noauto,users 0 0
# -------- Cowen J3
/dev/disk/by-id/usb-COWON_J3_0221001E55027D511123241626337D51-0:0 /media/cowen_j3_main/ auto noauto,users,rw 0 0
/dev/disk/by-id/usb-COWON_J3_EXT_0221001E55027D511123241626337D51-0:1-part1 /media/cowen_j3_card/ auto noauto,users,rw 0 0
# -------- Cowen S9
/dev/disk/by-id/usb-COWON_S9_1600001E55166FBC1025241539136FBC-0:0 /media/cowen_s9/ auto noauto,users,rw 0 0
Once it is in the fstab, instead of mounting it with the full command as we did above, I can mount it with this shorter way:
mount /media/cowen_s9_main
and it does the same thing.
So to recap:
first, make the mount points (directories) you will use for mounting it.
second, go discover the unique device name in /dev/disk/by-id
third, assemble and run the mount command with your unique name and the mount point you decided on.
Then I usually "ls" the mount point to be sure the device is there and readable.
ls /media/cowen_s9_main
I was more verbose than you may have needed, but others will read this too.
Also, the comments in the fstab excerpt have had the octothorpe (#) removed from the front of them due to the editor here--they need to be there for it to work.