|
发表于 2005-8-6 17:36:02
|
显示全部楼层
先确认你的 locale 是 UTF-8 还是 GB*
UTF-8 的 locale 下
mount /dev/hda1 /C -o iocharset=utf8,umask=0
可以在 /etc/fstab 里加一行
/dev/hda1 /C auto auto,user,umask=0,iocharset=utf8 0 0
还有 , 要先 mkdir /C
建立挂载点
GB* 的 locale 下
mount /dev/hda1 /C -o iocharset=gbk,umask=0 |
|