vfat 支持中文

mount -o iocharset=utf8 /dev/sde1 /mnt

可以,但是内核会警告
man 8 mount
查看vfat相关
mount -o utf8 /dev/sda5 /mnt
成功支持中文

最终命令:

mount -o utf8,shortname=mixed,usefree  %1 %2

usefree解决statfs慢的问题

shortname=mixed解决大小写问题

原文地址:https://www.cnblogs.com/cute/p/2090166.html