openwrt支持USB的ntfs存储时的挂载问题

一开始用的这个挂载命令:

mount -t ntfs /dev/sdb1 /mnt/sdb1/

ls /mnt/sdb1

[   96.790000] ntfs: (device sdb1): ntfs_ucstonls(): Unicode name contains characters that cannot be converted to character set default.  You might want to try to use the mount option nls=utf8.
[   96.820000] ntfs: (device sdb1): ntfs_filldir(): Skipping unrepresentable inode 0x6b2.
[   96.840000] ntfs: (device sdb1): ntfs_ucstonls(): Unicode name contains characters that cannot be converted to character set default.  You might want to try to use the mount option nls=utf8.
[   96.870000] ntfs: (device sdb1): ntfs_filldir(): Skipping unrepresentable inode 0x6c9.
[   96.890000] ntfs: (device sdb1): ntfs_ucstonls(): Unicode name contains characters that cannot be converted to character set default.  You might want to try to use the mount option nls=utf8.
[   96.920000] ntfs: (device sdb1): ntfs_filldir(): Skipping unrepresentable inode 0x6a3.
[   96.970000] ntfs: (device sdb1): ntfs_ucstonls(): Unicode name contains characters that cannot be converted to character set default.  You might want to try to use the mount option nls=utf8.
[   97.000000] ntfs: (device sdb1): ntfs_filldir(): Skipping unrepresentable inode 0xc6b3.
[   97.020000] ntfs: (device sdb1): ntfs_ucstonls(): Unicode name contains characters that cannot be converted to character set default.  You might want to try to use the mount option nls=utf8.
[   97.050000] ntfs: (device sdb1): ntfs_filldir(): Skipping unrepresentable inode 0x650.

最后千辛万苦找到的解决办法:

mount -o nls=utf8 -t ntfs  /dev/sdb1 /mnt/sdb1/

猜你喜欢

转载自blog.csdn.net/yudelian/article/details/85110663