Another useful tool to find out about your drives is the dmesg tool. Although it can be an overkill for the purpose, it's an invaluable tool when your drives are not getting detected in Linux or you're having problems mounting them. dmesg is actually a log file in the /var/log folder where the Linux kernel outputs all messages. This includes a lot of information, warnings and errors, if any.
You can view the dmesg file by typing "dmesg" in the command line. This will display the complete file and scroll through hundreds of lines very quickly. In our case, we will pipe the output of dmesg into less, which will then allow us to view the information much more conveniently. This is done by typing the command like: "dmesg | less"
Here is an example of the dmesg command showing the relevant information about disks.

click to enlarge
As you can see in this screenshot, the Linux kernel has detected a 40GB Maxtor drive at /dev/hda. You can also see the 3 partitions on the disk, hda1, hda2 and hda3. The CDROM has been detected and will be available at /dev/hdd. This information can then be used with the "mount" command to mount a partition like this: "mount /dev/hda2 /mnt/part" where the part folder will then show the contents of the /dev/hda2 partition.