home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / pc / doshelp / helpsb.zoo / help / definit / boot.hlp < prev    next >
Encoding:
Text File  |  1989-01-01  |  3.0 KB  |  56 lines

  1. BOOT 
  2.  
  3. (short for bootstrap) Anything you do to your computer to get it running. 
  4. A boot is finished when the computer prints a prompt on the screen. There 
  5. are two ways to boot a computer: 
  6.  
  7. Cold Boot                   Warm Boot (also called a reboot)
  8.  
  9. A cold or full boot is done every time     A warm boot is done by pressing the
  10. you turn your computer on. If the          keys Ctrl-Alt, and WHILE HOLDING 
  11. computer is already running, turning the   THEM DOWN, pressing the Del key. 
  12. power switch off, waiting a second, then   This will reboot the computer when 
  13. turning it back on will force a cold       it is already running (warm). 
  14. boot.
  15.  
  16. When the switch is thrown, some basic       A warm boot is similar to a cold 
  17. tests are run to see if the hardware is       boot, except that some basic hard-
  18. working OK. One thing that is always       ware tests are skipped. The memory
  19. tested is the memory of the computer.      and other tests are the same.
  20.  
  21.  
  22. Either type of boot will then read in the (hidden) system files from the 
  23. default disk into memory. The default disk drive will be A: if there is a 
  24. diskette in the drive, otherwise it will the hard disk C:.
  25.  
  26. The system files do more testing of the hardware, and read the CONFIG.SYS 
  27. file from the default disk. If there is no CONFIG.SYS, default values for 
  28. configuration options are assumed, and COMMAND.COM had better be on the root 
  29. directory of the default disk. If there is a CONFIG.SYS file, memory is 
  30. allocated for the options specified. The programs named on the DEVICE lines 
  31. in the CONFIG.SYS file are read into memory from disk.
  32.  
  33. [new DOS 4.0] If an INSTALL=SHARE line was not present in the CONFIG.SYS
  34. file, and any disk partition is ≥ 32 Mbytes (32 million characters), the
  35. SHARE program will be read into memory from disk (either from the root 
  36. directory of the default disk if there was no CONFIG.SYS file, or from the 
  37. file specified by the SHELL line). The need for this step is discussed in 
  38. the CONFIG FCBS topic.
  39.  
  40. The system files read the command processor into memory from disk (either 
  41. COMMAND.COM from the root directory of the default disk if there was no 
  42. CONFIG.SYS file, or the program in the file specified by the SHELL line), and 
  43. it begins execution. At this point, DOS is finally running. The first thing 
  44. it does is establish three environment variables, COMSPEC, PATH, and PROMPT, 
  45. for use during normal running of the computer. (See the BATCH topic for a 
  46. discussion of environment variables.)
  47.  
  48. If a file called AUTOEXEC.BAT is present in the root directory of the 
  49. default disk, COMMAND.COM reads it and executes the commands in it. 
  50. AUTOEXEC.BAT may reset the three default environment variables. After the 
  51. commands in AUTOEXEC.BAT are executed, a prompt is printed. If there is no 
  52. file called AUTOEXEC.BAT, COMMAND.COM will usually print the DATE and TIME 
  53. prompts to set the clock of the computer, and then print a prompt. 
  54.  
  55. At this point, the boot process is complete.
  56.