Porting to OS/2: Install compress utils(tar, gzip, bzip, xz) and make
Other than zip, unix world prefer the combination of archiver(tar) and compressor(gzip, bzip, xz). Those utils are also available on OS/2. tar http://www.ecomstation.co.kr/komh/testcase/tar_test.zip Unzip and copy tar.exe to x:\usr\bin. To untar, use 'tar xvf filename'. Usually, filename has .tar as a extension. gzip http://hobbes.nmsu.edu/download/pub/os2/util/archiver/gtar258.zip This zip includes gzip124-32.zip. Unzip it and copy gzip.exe to x:\usr\bin To extract with tar, use 'tar xvzf filename'. Usually, filename has .tar.gz or .tgz as a extension. bzip2 http://hobbes.nmsu.edu/download/pub/os2/util/archiver/bzip2-1.0.6.zip Unzip and copy BZIP2 directories to x:\usr with preserving its directory structures. And move x:\usr\bin\bz2.dll to x:\usr\dll unzip bzip2-1.0.6.zip xcopy /s/e/v/h/t/r BZIP2 x:\usr move x:\usr\bin\bz2.dll x:\usr\dll To extract with tar, use 'tar xvjf filename'. Usually, filename has .tar.bz2 as a ext...