home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / textinfo / drtips.arj / 1110.TXT < prev    next >
Encoding:
Text File  |  1991-11-26  |  3.7 KB  |  140 lines

  1. Document 1110
  2. BEGINNERS TIPS
  3.  
  4. Initials:
  5.     BPT
  6.     10/31/91
  7.     GENERAL
  8.  
  9. Keywords:
  10.     BEGINNER
  11.     PATH
  12.     COMMANDS
  13.     BATCH
  14.     HELP
  15.  
  16. Description:
  17.  
  18. Q-      I'm just beginning to explore computers & DOS and want to know
  19.         what I should look at first?
  20.  
  21. A-      The most important concept to grasp is that of PATHS. The next
  22.         item is skill with commands such as TREE, XDIR, etc. And perhaps
  23.         the most fun is in the creation of BATCH files. Then the real
  24.         exploration can begin.
  25.  
  26.  
  27.  
  28. PATH:
  29.  
  30.     The back of the "Users Guide" has an excellent index that 
  31.     will help you find explanations of these primary path commands:
  32.  
  33.         TREE
  34.         CHDIR
  35.         MDIR
  36.         CD \
  37.         CD ..
  38.         PATH
  39.  
  40.     It's important to remember that going into a path is much like
  41.     driving a car up a cul-de-sac to find someones house with a map.
  42.  
  43.     - You start out on a main boulevard that you know (c:\) 
  44.     - take various turns onto side streets (cd \drdos) 
  45.     - and finally find the name your searching for (c:\drdos\tree.exe)
  46.     - To get back home, you must backup and retrace your steps (cd ..)
  47.     or you may know of a shortcut (cd \)
  48.  
  49.  
  50. COMMANDS:
  51.  
  52.     The DR DOS command set is quite a long listing but the first ones
  53.     to get familiar with are:
  54.         
  55.         TREE
  56.         DIR
  57.         REN
  58.         COPY
  59.         DEL
  60.         UNDEL
  61.         
  62.     Some of them, like DEL are quite destructive so exercise caution.
  63.     There are quite often "switches" that will customize the command
  64.     that may suit your purpose better, these can be found by typing
  65.     the command and a /h after it, for instance:
  66.  
  67.         TREE /H
  68.  
  69.     Or you can browse through DOSBOOK, just type:
  70.         
  71.         DOSBOOK
  72.  
  73.  
  74. BATCH FILES:
  75.  
  76.     You could say that the machine (PC) is bi-lingual, 
  77.     there are two types of files it reads:
  78.  
  79.         1.    "Executables" that can only be read
  80.             by the machine it'self, (they just
  81.             look like gobblety gook to us).
  82.  
  83.         2.    "Text" files that do make some sense!
  84.             I say some sense because they often
  85.             contain instructions for our machine.
  86.  
  87.     Most of these files are critical to the happy operation of 
  88.     your PC and should not be changed, but it is certainly ok 
  89.     to go and look at them.
  90.  
  91.     Some of the files that are "Text" based are:
  92.  
  93.         1.    AUTOEXEC.BAT
  94.         2.    CONFIG.SYS
  95.         3.    *.INI
  96.  
  97.         A safe way to look at them is to use the command "TYPE".
  98.         Refer to *** below.
  99. Example:
  100.  
  101.         TYPE AUTOEXEC.BAT /P
  102.  
  103.     There are things listed in your DR DOS "Users Guide" that 
  104.     will show you what can be done or ways to simplify loading 
  105.     programs, all it takes is making a "Batch" file (text file)
  106.     or editing an existing file.  Look in the back of the guide
  107.     under the words:
  108.  
  109.               BATCH
  110.             CONFIGURATION
  111.             AUTOEXEC.BAT
  112.             CONFIG.SYS
  113.             PROMPT
  114.  
  115.     There are examples given in the guide that will get you started
  116.     on your exploration of DOS and the PC.  Best of success to you.
  117.  
  118. ***     To do a DOS command like "TYPE", you must know how to get
  119.     to the command line first.  If a machine has been setup by
  120.     a consultant or store, they sometimes put you in a menu 
  121.     program which gives a list of choices, or straight into an
  122.     application like a data base.  Often, these programs or 
  123.     applications offer a way to get to the COMMAND LINE, or as 
  124.     it's sometimes called, the DOS PROMPT.  Typing EXIT will 
  125.     usually return to you to normal, but if it doesn't rebooting
  126.     the machine will start everything all over again.  There is 
  127.     an important rule regarding rebooting, "NEVER REBOOT IF YOU
  128.     ARE IN THE MIDDLE OF A PROGRAM" you should always exit to 
  129.     the DOS PROMPT or use the "QUIT" option that is usually 
  130.     available from a programs option list.
  131.     
  132.  
  133. Example:
  134.     
  135.     Page  35 to  44 = Paths/Directories
  136.     Page 145 to 352 = Commands
  137.     Page 113 to 136 = Batch commands
  138.     Page 356 to 397 = Config.sys
  139.     Page 294    = Prompt
  140.