Solve the problem that the Chinese name of the U disk displayed garbled characters under Linux

        When mounting a USB flash drive under Linux, garbled characters may appear if the files or directories in the USB flash drive are in Chinese.
Solution: You
        need to specify the character set encoding (preferably utf8) when mounting .
E.g:
        mount -o iocharset=utf8 /dev/sdb4 /media/udisk

Published 32 original articles · won praise 1 · views 4551

Guess you like

Origin blog.csdn.net/hezhanran/article/details/101438909