home *** CD-ROM | disk | FTP | other *** search
/ 300 Favorite Games / 300GAMES.iso / 182 / bbbhelp.doc < prev    next >
Text File  |  1989-04-23  |  10KB  |  225 lines

  1.  
  2.  
  3.      Use of public domain and shareware software requires an elementary 
  4. knowledge of & familiarity with various "DOS" (Disk Operating System)  
  5. commands.  There are quite a few, but some of the more important ones that
  6. you will need to know to use both public domain and shareware software are
  7. "COPY", "DISKCOPY", "DIR", "TYPE".
  8.  
  9. None of the disks we distribute are "bootable", which means they do not
  10. have DOS system files on them.  You cannot place a disk in your floppy drive
  11. and turn on the computer.
  12.  
  13.      The first thing to do with the disks is to make a BACKUP copy with either
  14. of the following DOS commands (in both cases, follow the screen directions):
  15.  
  16.      A>DISKCOPY A: B: <enter> - if you have two floppy drives
  17.  
  18.      OR
  19.  
  20.      A>DISKCOPY <enter> - if you have only one floppy drive
  21.  
  22.      In the event that you get some sort of error message when using 
  23. "DISKCOPY", you will then have to use the "COPY" command to make a backup 
  24. of your original disk.
  25.  
  26.   With a two-floppy system, you would do this by placing a FORMATTED disk in
  27. the "B" drive and entering the following command at the "A>" prompt:
  28.  
  29.      A>COPY *.* B:  <enter>
  30.  
  31.   With a hard disk system, you will want to copy the contents of the
  32. original disk to a hard disk sub-directory (or un-arc files to it - see
  33. notes below on un-arcing files).
  34.  
  35.      In either a floppy or hard disk system, DON'T run the program directly
  36. from the original disk.
  37.  
  38.      Now put the original disk away and use the working copy.  The next 
  39. thing to do is see what files are on the disk.  You would do this by 
  40. placing the disk in the "A" drive and entering the following command:
  41.  
  42.      A>DIR <enter> - will display the filenames
  43.  
  44.      OR
  45.  
  46.      A>DIR /P <enter> - if the directory display scrolls off the screen
  47.  
  48.  
  49.      Now you will see many different filenames.  A filename consists of 
  50. two parts: the filename & the extension.  The filename will be on the left 
  51. (up to 8 characters long) & the extension will be just to the right (up to 
  52. 3 characters long).  You will be looking for certain extension names which 
  53. will tell you something about that type of file.
  54.  
  55.        .EXE - an executable program file
  56.        .COM - a command file
  57.        .BAT - a file with "DOS" commands that may call a program file
  58.        .BAS - a "BASIC" program. Needs GWBASIC or BASICA to run the file
  59.        .ARC - an archived file - needs to be un-arced; contains many files
  60.        .DOC - A DOCUMENTATION FILE - instructions about the program - READ 
  61.               THIS
  62.        .TXT - A DOCUMENTATION FILE - instructions about the program - READ 
  63.               THIS
  64.  
  65.      You may also see files with names like INFO.DOC or READ.ME or README.1ST
  66. or just README.  These are documentation files that will tell you about the
  67. program or how to install / start the program.
  68.  
  69.      IT IS VERY IMPORTANT THAT YOU READ DOCUMENTATION FILES FIRST BEFORE 
  70. TRYING TO RUN THE PROGRAM !!!
  71.  
  72. ==============================================================================
  73.  
  74. There are a number of ways to view/read documentation files.
  75.  
  76.  
  77. 1) With your program disk in the A: drive, enter the following command from  
  78. the A: drive:
  79.  
  80.      A>TYPE filename.ext <enter> - where filename would be README.DOC or 
  81. whatever the filename is that you wish to display.
  82.  
  83.      This will display the documentation to the screen.  To stop the text 
  84. from scrolling by too fast to be read, press "CTRL-S" (the CTRL key and "S" 
  85. key at the same time) - then any other key to resume scrolling. 
  86.  
  87.  
  88. 2) Use the MORE command with TYPE to display 23 lines at a time.  The display
  89. will pause and wait for you to press any key before the next 23 lines are
  90. displayed.  To use this command, at the A prompt, enter either of the 
  91. following commands:
  92.  
  93.      A> TYPE filename.ext | more <enter>
  94.  
  95.      OR
  96.  
  97.      A> MORE < A:filename.ext <enter>
  98.  
  99.  
  100. 3) Use a text file viewing utility, such as LIST.COM.  With it, you can not 
  101. only pause the screen display; you can also browse the file both forwards and
  102. backwards, or print selected screens to the printer.
  103.  
  104. Another option is to print out the full text file to the printer.  To obtain a
  105. hard copy of the documentation, turn on your printer, and enter either of 
  106. the following commands at the prompt:
  107.  
  108.      A> PRINT A:filename.ext <enter> - where filename.ext would be README.DOC or 
  109. whatever file you wish to print.
  110.  
  111.      OR
  112.  
  113.      A> TYPE A:filename.ext > PRN <enter>
  114.  
  115. ==============================================================================
  116.  
  117. An "EXE", "COM", or "BAT" file extension means that when you simply enter 
  118. the filename, the computer will do something.  For instance, if the filename 
  119. were "POKER.EXE", you would simply enter the following at the "A" prompt:
  120.  
  121.      A>POKER <enter> - the poker program would now be "running" and you 
  122. would be playing it.  This also holds true for "COM" files.  A "BAT" file may 
  123. call a program or it may just display a documentation file. "BAT" files can 
  124. do many different things, such as run a number of programs in succession, or
  125. install a program automatically.  (You may TYPE a .BAT file to see what it
  126. does.)
  127.  
  128. ==============================================================================
  129.  
  130. Another type of file (a little tricky to run) is a "BASIC" file.  These types 
  131. have the ".BAS" extension.  Any file with this extension must be run with the 
  132. "BASIC" interpreter.  That simply means that you must have a copy of 
  133. "GWBASIC.EXE" if you have a clone, or "BASICA.COM" if you have an "IBM".
  134. These 2 files (GWBASIC or BASICA & the ".BAS" file) must be on the same disk,
  135. or must be able to find each other (for instance, through a DOS PATH command
  136. to a hard disk subdirectory C:\DOS that contains all the DOS commands as well
  137. as BASIC.)
  138.  
  139. For instance, if your copy of "GWBASIC" is on your DOS disk in the A: drive,
  140. and your "BAS" file is on the B: drive, you would enter the following command
  141. from the "B" prompt if the filename was "POKER.BAS":
  142.  
  143.      B>A:GWBASIC POKER <enter> - You must put the "A:" in the command line so
  144. that the computer knows where to find your "BASIC" program.
  145.  
  146.      An easier way to do this is to simply copy "GWBASIC.EXE" to the disk 
  147. that contains the "BAS" files. When both files are together & this disk was in 
  148. the "A" drive you would enter the following command:
  149.  
  150.      A>GWBASIC POKER <enter> - the poker program would now be "running" & 
  151. you would be playing the game.
  152.  
  153. With a hard disk containing a path command such as path=C:\DOS in the
  154. autoexec.bat file (for automatic execution at boot up), and BASIC in that
  155. subdirectory, execution is much easier.  At the A>, enter the following
  156. command:
  157.  
  158.      A>BASICA POKER <enter>
  159.  
  160.  
  161. One final note: If after the BASIC program has run, the display leaves you
  162. with an OK prompt, just type "SYSTEM" to be returned to DOS.
  163.  
  164. ==============================================================================
  165.  
  166.      Another important file is one with an ".ARC" extension.  This means that 
  167. it contains many smaller files in a compressed or squashed format.  It CANNOT
  168. be run directly by typing the filename.  You MUST "un-arc" the files first, 
  169. usually to a hard disk - or to a second floppy drive.  Note: If you have only 
  170. one floppy drive (and no hard drive), and a disk contains arc-ed files, you 
  171. will probably NOT be able to un-arc the arc-ed files to the same floppy.  
  172. That is why we STRONGLY recommend that you have a minimum of at least two disk 
  173. drives: either two floppy drives, or one floppy and a hard disk.  [We try to 
  174. include an un-arc utility - usually either PKXARC.COM (v. 3.5) or PKXARC.EXE 
  175. (v. 3.6) or the latest version - renamed PKUNPAK.EXE (v. 3.61) - with any 
  176. disk with .ARC files.  Sometimes, authors provide an un-arc utility as part
  177. of the install program.]
  178.  
  179. For example, to unarc TEST.ARC, use the following command at the "A" prompt:
  180. (The program PKXARC must either be in the path statement, or on the disk in A:)
  181.      
  182.      A>PKXARC TEST B: <enter> - this would extract ALL the files that are in
  183. TEST.ARC and place them on a disk in the "B" drive.  You must have a 
  184. formatted blank disk in the "B" drive before issuing this command.
  185.  
  186.      If you have a hard drive you could copy the ".ARC" files & the program 
  187. "PKXARC.EXE" to your hard drive (C:) & enter the following command:
  188.  
  189.      C>PKXARC TEST <enter> - this will extract all the files from an 
  190. archived state, and leave the arced file(s) *.ARC intact.
  191.  
  192.      OR you could directly un-arc the program files from the floppy to C:,
  193. leaving the .ARC file on the floppy.
  194.  
  195.      If the disk containing the archived files and the PKXARC program is
  196. in A:, and you want to have the unarchived ready-to-run program files in a
  197. sub-directory on the hard disk, first make the sub-directory on C: - i.e.,
  198. at the root level of C:, type: md\PROGRAM (or any other name) - then at
  199. A:>, type PKXARC TEST C:\PROGRAM, and the program will do the rest.
  200.  
  201. There are numerous command line options for use with the PKXARC/PKUNPAK 
  202. program.  To see the options, just type PKXARC <enter> or PKUNPAK <enter> 
  203. at the prompt for a full screen of information on how to use PKXARC/PKUNPAK
  204. to un-arc arc-ed files.
  205.  
  206. ==============================================================================
  207.  
  208.      Hopefully this file will help enable you to understand & use your disks. 
  209. If it all sounds incredibly complicated, then we strongly suggest you purchase
  210. the following disks:
  211.  
  212.          #25  - BEGINNERS - A tutorial on using PD & Shareware software.
  213.          #99  - TUTOR (v.4.41) - An excellent program to teach you about your
  214.                 computer, and the use of "DOS" commands.
  215.          #112 - DOS HELP - Help screens for "DOS" ver. 3.3 commands.
  216.  
  217.  
  218.  
  219. BEST BITS & BYTES
  220. P. O. BOX 8225
  221. VAN NUYS, CA 91409
  222. (818) 764-9503
  223.  
  224.  
  225.