|
FC5的ext3分区中文文件名乱码,但是系统所在的ext3分区正常。
NTFS分区是用mount /dev/hdc4 /mnt/hdc4 -t ntfs -o iocharset=utf8
加载的,中文文件名可正常显示。
用mount -t ext3 /dev/hdc1 /mnt/hdc1 -o iocharset=utf8
mount -t ext3 /dev/hdc1 /mnt/hdc1 -o iocharset=cp936
都不行,提示出错。
/etc/sysconfig/i18n文件内容如下:
LANG="zh_CN.UTF-8"
SYSFONT="none"
错误信息:
root@localhost .su]# mount -t ext3 /dev/hdc1 /mnt/hdc1 -o iocharset=utf8
mount: wrong fs type, bad option, bad superblock on /dev/hdc1,
missing codepage or other error
In some cases useful info is found in syslog - try
dmesg | tail or so
[root@localhost .su]# mount -t ext3 /dev/hdc1 /mnt/hdc1 -o iocharset=cp936
mount: wrong fs type, bad option, bad superblock on /dev/hdc1,
missing codepage or other error
In some cases useful info is found in syslog - try
dmesg | tail or so |
|