home *** CD-ROM | disk | FTP | other *** search
/ ZIP KIT / ZIP_KIT.iso / packdisk / answers!.txt next >
Encoding:
Text File  |  1995-07-27  |  7.4 KB  |  203 lines

  1. Installing the Zip Kit from Abacus
  2.  
  3. You have four Menu choices. They are:
  4.  
  5. PKZIP, LHARC & Co. - This is a collection of the BEST DOS-based shareware data compression programs available today. You MUST use these utilities at your DOS prompt.
  6.  
  7.     When you install the PZKIP, LHARC & Co. collection the INSTALL program will copy the following utilities and their respective sub-directories into a directory on your hard drive called PACKDISK: PKZip Ver. 2.04g, ARJ Ver. 2.41, LHArc Ver. 2.13, DIET, LH-ICE, LZ-EXE, PKLITE Ver. 1.03 and ZOO Ver. 2.1. The manuals for each data compression utility will be located in their respective directory.
  8.  
  9. GRAPHIC COMPRESSION - This is a collection of the BEST Windows graphic utilities that you will need to convert, compress and manipulate your graphic files.
  10.  
  11.     This option will allow you to install the following graphic utilities: PaintShop Pro Ver. 3, Graphic WorkShop, VidVue and PhotoWorks.
  12.  
  13. WINZIP 5.6A - This is the premiere data compression utility for Windows 3.xx and Windows for Workgroups. Written by Nico Mak Computing, the printed manual is located in the book PKZIP, LHARC & Co.
  14.  
  15.     This option will allow you to install
  16.  
  17. WINZIP95 - This is the premiere data compression utility for Windows 95. You MUST have Windows 95 or Windows NT to run this shareware utility.
  18.  
  19.     This option will allow you to install
  20.  
  21.  
  22.  
  23. Answer: When you type a command, DOS looks for it in the C:\DOS directory 
  24. and other directories listed in your PATH statement in your AUTOEXEC.BAT 
  25. file located in your C: root directory. If it cannot find what it's looking 
  26. for in the PATH, it won't be able to access it.  Your PATH statement in 
  27. your AUTOEXEC.BAT may look like this:
  28.  
  29. PATH C:\DOS;C:\WINDOWS
  30.  
  31. If you want PKZIP, LHArc and ARJ programs in your PATH, it should look like:
  32.  
  33. PATH C:\DOS;C:\WINDOWS;C:\PACKDISK;C:\PACKDISK\PKZIP
  34.                                 ;C:\PACKDISK\ARJ;C:\PACKDISK\LHA
  35.  
  36. WARNING!  WARNING!  WARNING! WARNING! WARNING! WARNING! WARNING!
  37.  
  38. To change your AUTOEXEC.BAT, you must EDIT your AUTOEXEC.BAT file and 
  39. include the statement above or necessary additional contents. If you 
  40. don't know how to do this, we strongly encourage you to consult your 
  41. DOS manual for the correct syntax to do this. It's not a difficult process, 
  42. but it must be right.  To view your present PATH, 
  43.  
  44. Type
  45.  
  46. type autoexec.bat
  47.  
  48. This will let you see your PATH as it exists now. You won't be able to 
  49. alter it, just view it.
  50.  
  51. WARNING!  WARNING!  WARNING! WARNING! WARNING! WARNING! WARNING!
  52. To give you some idea of what's involved in altering your PATH, here's 
  53. a brief look at the first step.  Don't do anything until you know what 
  54. you're doing. Consult your DOS manual.
  55.  
  56. To change your PATH, you first have to be able to access your autoexec.bat 
  57. file.  To do that, the first thing you'd do is Type
  58.  
  59. edit autoexec. bat
  60.  
  61. Warning:  It's a this point that if you alter anything on the screen, 
  62. the entire operation of your system may change. You could say that this 
  63. screen of your autoexec.bat is like the right side of your computer's brain. 
  64. One could say it's here that your computer is told what to do in terms 
  65. of executing your programs. It is in this screen that you'd make the 
  66. modifications to put PKZIP in your PATH. Consult your DOS manual. Know 
  67. what you're doing before you make any modifications.
  68.  
  69. Question: How do I 'zip' a file?
  70.  
  71. Answer: To compress a file, you must be in the directory where the file 
  72. which you want to compress is located. For example, we want to compress 
  73. a program named TEXT.EXE in the TEXT directory. And, you need to create 
  74. a filename for the file you want to compress.  So, in this example we're 
  75. going to compress a text file from something you did at work and we'll 
  76. create a 'zipped' file called WORK. 
  77.  
  78. At your C:\ prompt type 
  79.  
  80. CD TEXT 
  81.  
  82. and press Enter (now you should be in the TEXT directory)
  83. Next, type (for example: pkzip) 
  84.  
  85. pkzip work.zip text.exe
  86.  
  87. and press Enter 
  88.  
  89. Now you should have a new file called "WORK" where your compressed text will 
  90. stay until you decompress it.  
  91.  
  92. To compress several files in the same directory (in this example all DOC, 
  93. TXT and EXE files) 
  94.  
  95. type: 
  96.  
  97. pkzip work.zip *.doc *.txt *.exe
  98.  
  99. and press Enter 
  100.  
  101. When it is finished you will have a compressed zipped file called WORK.zip.
  102. Also see pages 51-53.
  103.  
  104. Question: How do I 'unzip' or uncompress a file?
  105.  
  106. Answer: If you've downloaded (or somehow received) a program with the 
  107. extention '.ZIP' you need to 'uncompress' this pkzipped file. Let's 
  108. pretend we've download a file like the one we created above called: WORK. 
  109. Type:
  110.  
  111. pkunzip WORK.zip 
  112.  
  113. and press Enter
  114.  
  115. If you've downloaded (or somehow received) a program with the extention 
  116. '.LZH' you need to 'uncompress' this file. Let's continue to use our WORK 
  117. file example. Type:
  118.  
  119. lharc x WORK.LZH
  120.  
  121. and press Enter 
  122.  
  123. If you've downloaded (or somehow received) a program with the extention 
  124. '.ARJ' you need to 'uncompress' this file. Type:
  125.  
  126. arj e WORK.ARJ
  127.  
  128. and press Enter 
  129.  
  130. Question: What is a self-extracting file? How do I create a 
  131. 'self-extracting' pkzip archive file?
  132.  
  133. Answer: A self-extracting compressed file is a file that, when run, 
  134. will uncompress itself into one or more files that are not compressed. 
  135. For example, if you had the file WORK.EXE you would type WORK and 
  136. press Enter. This file would then re-create all of the DOC, TXT and 
  137. EXE files that were contained in it.
  138.  
  139. Answer: To create a self-extracting ZIP file there is a two step process. 
  140. First you must create the zipped archive. After you have a file with the 
  141. ZIP extension on it, you can then create a self-extracting ZIPped file by 
  142. typing:
  143.  
  144. ZIP2EXE filename.zip (in this case)
  145.  
  146. ZIP2EXE WORK.ZIP
  147.  
  148. and press Enter 
  149.  
  150. This will create a file called WORK.exe. When this program is run, 
  151. it will uncompress all files that are contained in it.
  152.  
  153. Answer 2: To create a self-extracting archive using LHA do the following:
  154.  
  155. To create a self-extracting archive do this:
  156. Make sure you have LHAexe in your DOS directory.
  157. Type:
  158.  
  159. LHA a archive -r -x c:\directory\*.*
  160.  
  161. and press Enter 
  162.  
  163. This will create a file called archive.lzh
  164.  
  165. Then type: 
  166.  
  167. LHA s -x1 archive
  168.  
  169. and press Enter 
  170.  
  171. That's it! You will then have a file called archive.exe with all the 
  172. files and sub-directories in it. You may then copy and send it to whomever. 
  173. They, in turn, will run the program and it will create the directory 
  174. with files on their system.
  175. Also see pages 103-104
  176.  
  177. Question: How do I create an archived file that will span more than one disk? For example 2 Mb?
  178.  
  179. Answer: Use the ARJ program to create archives that are larger than 1.4 Mb 
  180. after they are compressed. First, be sure you have a few formatted 
  181. diskettes (in this example 1.44 Mb disks) ready to use. Type the command 
  182. (in the directory that the programs to be compressed is in):
  183.  
  184. ARJ A -VV1440 A:\archive
  185.  
  186. and press Enter 
  187.  
  188. Depending on the final compressed size of the file, you will need several 
  189. disks. For example, a 20 Mb file compressed to 5.5 Mb (or 4 diskettes). 
  190. After you have compressed the file on several diskettes, label each 
  191. according to how they were used. For example 1, 2, 3, 4, 5 etc.
  192.  
  193. To uncompress these files in the directory you are currently in, type the 
  194. following with your disk labeled 1:
  195.  
  196. ARJ e a:\archive
  197.  
  198. and press Enter 
  199.  
  200. After this archive is done, do the same for each disk labeled 2, 3, 4, 5 
  201. etc. Also see pages 145-148.
  202.  
  203.