I have a BASH shell script, in Linux, that mount drives.. I am running as 'root' all the time, and don't even have sudo or su installed, in case matters..
My problem is with UTF-8 filenames and directories, particularly on vfat partitions...
How do I mount each partition type with the correct options for UTF-8 filenames?
TYPE="$(guess_fstype /dev/"${1}" 2>/dev/null)"
# create mount point if it does not exist
[ ! -e /mnt/$1 ] && mkdir -p /mnt/$1
case $TYPE in
vfat) /bin/mount -t vfat /dev/$1 /mnt/$1 -o shortname=mixed,quiet,utf8
success=$? ;;
iso9660) mount -t iso9660 /dev/$1 /mnt/$1 -o utf8
success=$? ;;
ntfs) mount -t ntfs /dev/$1 /mnt/$1
success=$? ;;
unknown) mount /dev/$1 /mnt/$1 -o utf8
success=$? ;;
*) mount -t $TYPE /dev/$1 /mnt/$1
success=$? ;;
esac
man mounthas iocharset in the section for vfat. – thiton Nov 23 '11 at 18:53