if you are talking about flash drive then here is another solution,
Here the command i have used is
fdisk -l, which will show the list of hard disk or flash drive added to your PC.The red line actually shows my 16MB flash drive.
Code:
# fdisk -l
Disk /dev/hda: 5334 MB, 5334106112 bytes
255 heads, 63 sectors/track, 648 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/hda1 * 1 13 104391 83 Linux
/dev/hda2 14 648 5100637+ 8e Linux LVM
Disk /dev/sda: 16 MB, 16056320 bytes
1 heads, 31 sectors/track, 1011 cylinders
Units = cylinders of 31 * 512 = 15872 bytes
Device Boot Start End Blocks Id System
/dev/sda1 2 1011 15655 c W95 FAT32 (LBA)
To mount this flash drive:
Code:
# mount /dev/sda1 /mnt
# cd /mnt
In /mnt you will find your flash drives directories and files.
Hope this will work for you.