I'm trying to mount a Windows ntfs partition.
This is my /etc/fstab:
Code:
/dev/hdb1 /d ntfs iocharset=utf8,defaults,users 0 0
when I try to mount I get the following errors:
Code:
mount: wrong fs type, bad option, bad superblock on /dev/hdb1,
missing codepage or other error
In some cases useful info is found in syslog - try
dmesg | tail or so
and I did dmesg | tail and I get the followings:
Code:
printk: 131 messages suppressed.
NTFS-fs warning (device hdb1): parse_options(): Option iocharset is deprecated. Please use option nls=<charsetname> in the future.
Unable to load NLS charset utf8
NTFS-fs error (device hdb1): parse_options(): NLS character set utf8 not found.
NTFS-fs warning (device hdb1): parse_options(): Option iocharset is deprecated. Please use option nls=<charsetname> in the future.
Unable to load NLS charset utf8
NTFS-fs error (device hdb1): parse_options(): NLS character set utf8 not found.
NTFS-fs warning (device hdb1): parse_options(): Option iocharset is deprecated. Please use option nls=<charsetname> in the future.
Unable to load NLS charset utf8
NTFS-fs error (device hdb1): parse_options(): NLS character set utf8 not found.
If I remove isocharset=utf8, it mounts perfectly. But I do need to add ischarset=utf8 so I can see files in Koreans.
Can anyone help me? Thanks in advance.