home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / ccdos / ccbaaahlp.txt < prev    next >
Text File  |  2020-01-01  |  1KB  |  32 lines

  1. Bootstrapping:
  2.  
  3. Getting CC-DOS Kermit onto an CC-DOS or MS-DOS system initially when you don't 
  4. have a diskette to read it from, but you do have it on line on another computer
  5. ...  is called "bootstrapping."  The method used with MS-DOS Kermit is to 
  6. download (somehow) a version of the appropriate .EXE (executable binary) file 
  7. that has been encoded in all printable characters by the MSBMKB.C program.  
  8. Such a file is called a "BOO file".  The result is then decoded on the PC 
  9. using a short Basic (or C, or Pascal) program.
  10.  
  11.  CCBMKB.C     The "BOO File Maker" (runs on CC-DOS Systems with Lattice C)
  12.  CCBOOT.FOR   The mainframe side of a BOO-file downloader (in Fortran)
  13.  CCBPCB.BAS   The PC side of the BOO-file downloader (in Microsoft Basic)
  14.  CCBPCT.C     Like CCBPCT.BAS, but written in C for speed
  15.  CCV*.BOO     The BOO files for each version of CC-DOS Kermit, e.g. CCVIBM.BOO.
  16.  
  17. The bootstrapping procedure is described in detail in the MS-DOS chapter of
  18. the Kermit User Guide.
  19.  
  20. Briefly, here's what to do (assuming you already have some method of
  21. downloading files onto your PC, and you have BASIC):
  22.  
  23. 1. Get CCBPCT.BAS
  24. 2. Get CCBPCT.BOO
  25. 3. Enter BASIC, load CCBPCT.BAS, and run it on CCBPCT.BOO.
  26. 4. There should be a program CCBPCT.EXE on your disk.
  27. 5. Run CCBPCT on the ccvxxx.BOO file for you system, e.g. "ccbpct ccvibm.boo".
  28. 6. You should now have CCVIBM.EXE on your disk.  You can rename it to
  29.    KERMIT.EXE if you want to (or even K.EXE).
  30.  
  31. ------------------------------
  32.