alobo wrote: is there any way of getting TRANSCEND mounted as /media/Transcend
as I had it under ubuntu 9.04?
I might be a bit late in answering this, but if you just want to mount the drive as /media/Transcend, then it doesn't matter what the label is as long as you set up /etc/fstab accordingly.
For example, this website would explain how to deal with your problem:
http://www.mylinuxway.com/how-rename-yo … ume-label/
In addition to mounting by UUID as they do on that website (according to what you posted, your UUID for that drive is D661-7C91), you can also mount by label, so instead of saying UUID=D661-7C91, you could choose to say LABEL=TRANSCEND. It's a matter of preference which way you do it.
So you would back up /etc/fstab:
root-prompt#cp /etc/fstab /etc/fstab_saved
then as root open /etc/fstab, remove a line in it that might mention D661-7C91, /dev/sdb2 or TRANSCEND (it probably doesn't exist though), and put in its place a line like the following (if the line never existed then just put the following as its own line in the file):
UUID=D661-7C91 /media/Transcend vfat default 0 0
or
LABEL=TRANSCEND /media/Transcend vfat default 0 0
Instead of by label or UUID you can also mount by device file name, but that's not as reliable.
Then when that's all done you can plug in your drive. It will probably show up on its own as /media/Transcend, but if it doesn't you can type
just as a regular user, and it should mount as you want it to.