Try manually mounting it (as root) before editing your /etc/fstab file. One common mistake is to try to mount the disk instead of a partition. You may have better luck using the partitioner program to mount the filesystem. It might identify the encoding used and select the proper options for you such as "nls=" or "utf8".
Before that, see if you can see the partition using konqueror.
Enter "sysinfo:/" in the address bar. All of the partitions should be listed. It could be listed by its label, if it has one, or as something like "120 GM Media". The second column will indicate the filesystem. You haven't told us the device (e.g. /dev/sdb1) or the filesystem (e.g. ext3). You can try right-clicking on the partition in the sysinfo:/ page and select mount.
Also, you can use the fdisk command to list the partitions on the disk, and the file command to indicate the filesystem on a partition.
sudo /usr/fdisk -l /dev/sda
sudo file -s /dev/sda1
If you decide to create an entry in /etc/fstab instead of using automount, I would recommend using certain options.
For a vfat or ntfs formatted partition use the user,uid,gid,dmask,fmask and noauto options. This will allow you to set the ownership and permissions on the partition. It will be the same for the entire partition. The noauto option will prevent a boot up failure if the drive isn't present (being an external drive).
Also, instead of a device name such as /dev/sda1, use either "UUID=" or "LABEL=" entries. You can discover the filesystem UUID number using udevinfo.
udevinfo -q env -n /dev/sda1
Here is an example:
Code:
udevinfo -q env -n /dev/sda1
ID_VENDOR=Maxtor_6
ID_MODEL=Y250P0
ID_REVISION=YAR4
ID_SERIAL=Maxtor_6_Y250P0_0332005C
ID_TYPE=disk
ID_BUS=usb
ID_PATH=pci-0000:00:02.2-usb-0:1:1.0-scsi-0:0:0:0
ID_EDD=int13_dev81
ID_FS_USAGE=filesystem
ID_FS_TYPE=xfs
ID_FS_VERSION=
ID_FS_UUID=b545812a-57af-43e8-bbd8-f9b43dd25fc8
ID_FS_LABEL=NetDisk
ID_FS_LABEL_SAFE=NetDisk
I could use either "UUID=b545812a-57af-43e8-bbd8-f9b43dd25fc8" or "LABEL=NetDisk" in the first column of the /etc/fstab entry for this filesystem.
If you do add an entry to /etc/fstab, you may need to manually mount it with a mount command, as in: "mount/media/greatmusic" or "mount /mnt/greatmusic" instead of doing so graphically. Maybe if you use a mount point in /mnt/ instead it won't conflict with an automatic mountpoint under /media/.