使用源码安装unzip,解决中文乱码问题
为什么中文乱码了?
引用
实验1:在Linux下用zip压缩两个中文名文件并命名为1.zip,
结果1:在windows98下用Winzip打开中文件名没问题。
实验2: 在windows98下用Winzip压缩相同的两个中文名文件并命名为2.zip,
结果2:在Linux下用Unzip打开中文名出来的完全不对,但长度一致。
实验3: 用二进制查看器比较两个压缩文件(1.zip,2.zip),
结果3:发现两个压缩文件中的文件名二进制编码是完全一样的。
实验4: Unzip比较两个压缩文件的信息
结果4: 除文件名不同以外,就是类型(type)不同,一个是Unix,一个是fat。
结论:
winzip存文件名的方法与Unzip完全相同,
问题在Unzip中,它将类型为fat的压缩文件中的文件名作了另外的解释。
下面来看下解决办法:
使用源码安装unzip,解决中文乱码问题
1. 下载unzip-5.52:http://rays.openrays.org/RAYSLX/pool/main/u/unzip/
2. 卸载linux系统自带的unzip:
#rpm -e unzip
3. 解压文件:
#tar zxvf unzip_5.52.orig.tar.gz
4. 进入unzip目录
#cd unzip-5.52
5. 找到文件 unzpriv.h (修改内容大概在文件末尾),修改以下内容:
/* Convert filename (and file comment string) into "internal" charset.
* This macro assumes that Zip entry filenames are coded in OEM (IBM DOS)
* codepage when made on
* -> DOS (this includes 16-bit Windows 3.1) (FS_FAT_)
* -> OS/2 (FS_HPFS_)
* -> Win95/WinNT with Nico Mak's WinZip (FS_NTFS_ && hostver == "5.0")
* EXCEPTIONS:
* PKZIP for Windows 2.5 and 2.6 flag their entries as "FS_FAT_", but the
* filename stored in the local header is coded in Windows ANSI (ISO 8859-1).
* Likewise, PKZIP for UNIX 2.51 flags its entries as "FS_FAT_", but the
* filenames stored in BOTH the local and the central header are coded
* in the local system's codepage (usually ANSI codings like ISO 8859-1).
*
* All other ports are assumed to code zip entry filenames in ISO 8859-1.
*/
#ifndef Ext_ASCII_TO_Native
# define Ext_ASCII_TO_Native(string, hostnum, hostver, isuxatt, islochdr) \
if (((hostnum) == FS_FAT_ && \
!(((islochdr) || (isuxatt)) && \
(hostver) >= 25 && (hostver) <= 26)) || \
(hostnum) == FS_HPFS_ || \
((hostnum) == FS_NTFS_ && (hostver) == 50)) { \
_OEM_INTERN((string)); \
} else { \
_ISO_INTERN((string)); \
}
#endif
注释其他语句,只留_ISO_INTERN((string)),修改如下:
#ifndef Ext_ASCII_TO_Native
# define Ext_ASCII_TO_Native(string, hostnum, hostver, isuxatt, islochdr) \
/* if (((hostnum) == FS_FAT_ && \
* !(((islochdr) || (isuxatt)) && \
* (hostver) >= 25 && (hostver) <= 26)) || \
* (hostnum) == FS_HPFS_ || \
* ((hostnum) == FS_NTFS_ && (hostver) == 50)) { \
* _OEM_INTERN((string)); \
* } else { \ */
_ISO_INTERN((string)); \
/* } */
#endif
6. 复制unix编译文件到当前目录下
#cp unix/Makefile .
7. 安装
#make prefix=/usr linux
#make prefix=/usr install