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
link|improve this question

25% accept rate
man mount has iocharset in the section for vfat. – thiton Nov 23 '11 at 18:53
feedback

1 Answer

What exactly doesn't work? Is it mount, or is it listing files later on? Check your locale, maybe? And I think more or less all filesystems accept utf8 option even if they have specific options for setting charset. Check man mount.

link|improve this answer
could you please post questions as comments. This is not an answer – sehe Nov 23 '11 at 18:54
Well, Check your locale, maybe? is not really a question. I did post a number of suggestions, why is it not an answer if it may be enough to solve the problem? – Michael Krelin - hacker Nov 23 '11 at 18:56
Haha. Now you have a few more options than initially, indeed. Initially you had 'a rant' on how you don't know what doesn't work, and then a blurt saying 'check you locale maybe'. Only. That was a little thin for an answer :) – sehe Nov 23 '11 at 18:58
Well, if I limited my first version to the question about what doesn't work I wouldn't even consider posting it as an answer (after all I'm not all that new here), but I really thought (and still think) that it's most likely shell locale issue. – Michael Krelin - hacker Nov 23 '11 at 19:00
it is mount itself that doesnt work - when browsing through the files and folders, anything with UTF08 characters in the name show as garbaged text.. – scott jarvis Nov 23 '11 at 19:45
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.