|
发表于 2010-5-28 14:53:34
|
显示全部楼层
man里- Mount options for vfat
- First of all, the mount options for fat are recognized. The dotsOK option is
- explicitly killed by vfat. Furthermore, there are
- uni_xlate
- Translate unhandled Unicode characters to special escaped sequences.
- This lets you backup and restore filenames that are created with any Uni‐
- code characters. Without this option, a '?' is used when no translation
- is possible. The escape character is ':' because it is otherwise illegal
- on the vfat filesystem. The escape sequence that gets used, where u is
- the unicode character, is: ':', (u & 0x3f), ((u>>6) & 0x3f), (u>>12).
- posix Allow two files with names that only differ in case.
- nonumtail
- First try to make a short name without sequence number, before trying
- name~num.ext.
- utf8 UTF8 is the filesystem safe 8-bit encoding of Unicode that is used by the
- console. It can be be enabled for the filesystem with this option or dis‐
- abled with utf8=0, utf8=no or utf8=false. If `uni_xlate' gets set, UTF8
- gets disabled.
复制代码 |
|