home *** CD-ROM | disk | FTP | other *** search
/ CD PowerPlay 7 / cdpowerplayissue.iso / temp / rolhelp.txt < prev    next >
Encoding:
Text File  |  1995-05-02  |  13.1 KB  |  347 lines

  1. Crash course on PCs and DOS
  2. ===============================
  3.  
  4. BOOTING UP
  5. ------------------
  6. When the PC is switched on it needs to load the operating system 
  7. (such as MS-DOS) into memory, this is called the boot-up sequence. 
  8. The operating system is a special computer program, and without it, 
  9. the PC just won't work. Dos is loaded either from a floppy disk in 
  10. drive A or most commenly from the hard disk.
  11.  
  12. If you have one floppy disk drive it will be called drive A, if you 
  13. have two, then they are A and B. They can be the same size or different 
  14. sizes. Built into most PCs is a hard disk - a special kind of high 
  15. capacity disk drive that can store a lot of information. You can't take 
  16. this disk out like a floppy, it's fixed. It's called a fixed disk or 
  17. hard disk or hard drive.
  18.  
  19. If you have two floppies and a hard disk, then the hard disk is C. 
  20. However, if you have only one floppy and a hard disk then they are 
  21. normally A and C - there's no B. When you switch the PC on, it looks to 
  22. see if there is a disk in drive A, and if there is, it tries to load Dos 
  23. from it. If Dos isn't on the floppy disk, you'll see an error message on 
  24. the screen, something like "Please insert a system disk in drive A and 
  25. press a key".  You have two options here, either insert a floppy disk 
  26. that contains Dos or remove the floppy disk that is in the drive. If 
  27. there isn't a floppy disk in drive A when you switch on the PC it looks for 
  28. Dos on the hard disk - if you have one. Eventually, you'll end up with 
  29. what's called the Dos prompt.
  30.  
  31. DIRECTORIES
  32. -------------------
  33. You can tell what files (programs, or other information) are stored on 
  34. your disk by typing (in upper or lower case):
  35.  
  36.      DIR
  37.  
  38. or:
  39.  
  40.      DIR /W
  41.  
  42. The name of a file can be up to eight characters long, followed by a full 
  43. stop and then three more characters, like TREE.COM. Some characters on the 
  44. keyboard are special and can't be used in names, * and ? are two.
  45.  
  46. Generally speaking, any file which ends in .EXE, .COM or .BAT is a program
  47. that can be run by typing in its name. You don't need to enter the .EXE, .COM
  48. or .BAT - just the first part of the name.
  49.  
  50. If you think of the disk as a filing cabinet into which you can put files, 
  51. you can imagine how untidy it would become if you just threw everything in. 
  52. You can make drawers and put files of a similar nature in specific drawers. 
  53. They aren't called drawers, of course, but directories (sometimes called 
  54. folders). There are probably some directories already on you disk and these 
  55. are shown when you type DIR with a <DIR> after their name. DOS is a very 
  56. common directory as it is used to hold many files and programs that both you 
  57. and the operating system need to work.
  58.  
  59. To change to a directory type CD followed by its name like this:
  60.  
  61.      CD DOS
  62.  
  63. and to find out what files are in it, type:
  64.  
  65.      DIR
  66.  
  67. To change back to the directory you just came from, (what's called the 
  68. parent directory) type:
  69.  
  70.     CD ..
  71.  
  72.  
  73.  
  74. There can be directories within directories. To change to the parent of all
  75. directories, type:
  76.  
  77.      CD \
  78.  
  79. To make a new directory you use the MD command followed by the name (up to
  80. eight letters), like this:
  81.  
  82.      MD GAMES
  83.  
  84. This will create a directory called GAMES into which you could put all your
  85. games. You can change to this new directory with:
  86.  
  87.      CD GAMES
  88.  
  89. BASIC DOS COMMANDS
  90. ===================
  91.  
  92. BEFORE floppy disks can be used with a PC they have to be specially prepared,
  93. this is called formatting. You format a disk by typing FORMAT at the Dos
  94. prompt followed by the drive letter, like this:
  95.  
  96.      FORMAT A:
  97.  
  98. or:
  99.  
  100.      FORMAT B:
  101.  
  102. Never use C:, only A: or B:. You can copy Dos to the disk so you can boot up
  103. from it by adding a /S to the line, like this:
  104.  
  105.      FORMAT A: /S
  106.  
  107. This then often called a system disk. You can copy files from one disk to
  108. another, such as from C to A using the COPY command. Suppose you wanted to
  109. copy LETTER.TXT, assuming that you're on drive C, you would type:
  110.  
  111.      COPY LETTER.TXT A:
  112.  
  113. If the letter was on drive B and you wanted it on drive A, you would type:
  114.  
  115.      COPY B:\LETTER.TXT A:
  116.  
  117. And if the letter was stored in the DATA directory on drive B and you wanted
  118. to copy it to drive A and call it MYLETTER.DOC, you would type:
  119.  
  120.      COPY B:\DATA\LETTER.TXT A:\MYLETTER.DOC
  121.  
  122. A special form of the command is:
  123.  
  124.      COPY A:\*.*  C:\
  125.  
  126. The *.* means every file, so the line above would copy every file on drive A
  127. (actually the root directory), to drive C.
  128.  
  129. Text files often end .TXT or .DOC. You can often display these on the screen
  130. with the TYPE command. It's best used with MORE which s after each
  131. screenful of text. So, if there's a text file called README.TXT, you could
  132. read it onscreen by typing:
  133.  
  134.      TYPE README.TXT
  135.  
  136.  
  137. To delete a file you use the DEL command followed by the filename. If you
  138. wanted to delete LETTER.TXT, you would type:
  139.  
  140.      DEL LETTER.TXT
  141.  
  142. Remember that LETTER.TXT might be stored in a directory, and if that's the
  143. case, you would have to change to that directory. Instead of a name you could
  144. put *.* and this means every file. It's a dangerous command, but if you 
  145. really do want to delete everything in the current directory, type:
  146.  
  147.      DEL *.*
  148.  
  149. Because it's so dangerous, you are asked if you are sure you want to do this.
  150. Type Y if you are, otherwise N to stop immediately.
  151.  
  152. What to do if the programs on this disk don't work
  153. ===================================================
  154.  
  155. DISK SPACE
  156. ------------
  157. All the programs on this disk have been thoroughly tested on a variety of
  158. different PCs, but for one reason or another, they may not work on your
  159. computer.
  160.  
  161. One reason is lack of space. When extracted from their highly compressed
  162. archives the programs on this disk can occupy as much as 4Mb of disk space.
  163. Before extracting the programs make sure you have sufficient disk space by
  164. typing at the Dos prompt:
  165.  
  166.     CHKDSK C: /F
  167.  
  168. The /F parameter will ensure any errors on your hard disk are fixed. One 
  169. point to bear in mind is that SuperStor, Stacker and other disk compression
  170. utilities fool CHKDSK into reporting more free space than there really is. 
  171. For instance, they may say you have 5Mb free when, in fact, you have only 
  172. 1Mb.
  173.  
  174. If you don't have a hard disk drive, just twin floppies, format a system 
  175. disk with:
  176.  
  177.     FORMAT A: /S
  178.  
  179. and switch on your PC with that in drive A (don't worry about being asked 
  180. for the time or date). Put the MegaDisk in drive B, change to drive B with:
  181.  
  182.     B:
  183.  
  184. and run this menu program again. Many programs require a hard disk drive as
  185. they are very big, but some programs are small enough to run from floppy
  186. disks, even low density 5.25in ones.
  187.  
  188. MEMORY
  189. -------
  190.  
  191. Some programs need a lot of free memory. Even though you may have a PC with
  192. 4Mb or more, the amount free for Dos programs is less than 640k (0.64Mb). 
  193. It's all to do with the way the PC was designed many years ago.
  194.  
  195. You may need to change AUTOEXEC.BAT and CONFIG.SYS to take out all 
  196. unnecessary drivers, TSRs and other stuff which generally bungs up the 
  197. memory. First copy these two files to somewhere safe, like this:
  198.  
  199.     COPY AUTOEXEC.BAT AUTOEXEC.TMP
  200.     COPY CONFIG.SYS CONFIG.TMP
  201.  
  202. Now run a text editor like MS-DOS 5's EDIT and load each file in turn. 
  203. Delete any lines which aren't important then save them. Reboot the PC. 
  204. Generally speaking, most lines can be removed, however, don't take out any 
  205. lines to do with disk compression, such as a SuperStor driver.
  206.  
  207. With MS-DOS 5 and later Dos can be loaded high and drivers and TSRs can be 
  208. put in upper memory. To use these facilities make these three lines the 
  209. first three in CONFIG.SYS:
  210.  
  211.     DEVICE=C:\DOS\HIMEM.SYS
  212.     DEVICE=C:\DOS\EMM386.EXE NOEMS
  213.     DOS=HIGH,UMB
  214.  
  215. Now replace any DEVICE= commands in CONFIG.SYS with DEVICEHIGH= and if any
  216. TSRs are loaded in AUTOEXEC.BAT, add an LH followed by a space to the start 
  217. of the line, like this to load a mouse driver:
  218.  
  219.     LH C:\MOUSE.COM
  220.  
  221. While on the subject of mouse drivers, make sure your is up to date, 
  222. otherwise some software won't work properly. Unless the software 
  223. specifically says don't load a mouse driver, it's a good idea to try it 
  224. with the driver loaded. Many programs benefit from mouse control. It is 
  225. also a good idea to have the mouse line near the start of the file, 
  226. especially if you wish to load it high.
  227.  
  228. Some programs - mainly games - require expanded memory. You can simulate 
  229. this on 386/486 PCs by changing the EMM386.EXE or EMM386.SYS line in 
  230. CONFIG.SYS. If you want 512k of EMS memory change the line to this:
  231.  
  232.     DEVICE=C:\DOS\EMM386.EXE 512
  233.  
  234. If you can't get the memory management right, format a system disk in 
  235. drive A with:
  236.  
  237.     FORMAT A: /S
  238.  
  239. and reboot the PC.
  240.  
  241. Some programs, like databases and contact managers, need the BUFFERS and 
  242. FILES settings changed. You'll need to edit CONFIG.SYS and either change 
  243. the existing lines or add new ones if they aren't there. These settings 
  244. should be sufficient:
  245.  
  246.     BUFFERS=40
  247.     FILES=49
  248.  
  249. You'll need to reboot for these changes to take effect.
  250.  
  251. After fiddling about with CONFIG.SYS AND AUTOEXEC.BAT you may want to 
  252. restore things as they were before. This is easy if you made a backup:
  253.  
  254.     COPY AUTOEXEC.TMP AUTOEXEC.BAT
  255.     COPY CONFIG.TMP CONFIG.SYS
  256.  
  257. INSTALLATION
  258. -------------
  259.  
  260. Some programs can be run as soon as they have been extracted from their
  261. archives on this disk. Others may need further installation. You'll be told 
  262. in the instructions what's required. Look for a file called INSTALL and 
  263. run it if necessary.
  264.  
  265. Windows programs nearly always need further installation. You should run
  266. Windows and then click on Run on the File menu. Type in the drive, 
  267. directory and filename of the program to run - usually SETUP.EXE or 
  268. INSTALL.EXE. Alternatively, click on the Browse button and use the file 
  269. selector to locate the file.
  270.  
  271. You will sometimes need to install the program icon into a group window on 
  272. the desktop. Click on File,New,Program Item,OK,Browse and then use the file
  273. selector to find the file. Double click on it then on OK to get back to the
  274. desktop. You should then see the program icon.
  275.  
  276. VIRUSES
  277. ---------
  278.  
  279. This disk has been thoroughly tested at all stages of production for all 
  280. known viruses. Dr Solomon's Anti Virus Toolkit, Norton Anti Virus, McAfee 
  281. Anti Virus Utilities and Microsoft Anti Virus are always used. It has been 
  282. passed as clear by all of them. However, putting this disk in a PC that is 
  283. already infected with a virus will infect this disk too and may activate a 
  284. virus that has been lying dormant for some time.
  285.  
  286. DOCUMENTATION
  287. ---------------
  288.  
  289. Please set aside some time to read all the available documentation - on disk
  290. such as README.TXT, MANUAL.DOC, ORDER.FRM or whatever, and in the magazine 
  291. in the disk tutorial pages.
  292.  
  293. Many programs come with large manuals which contain detailed instructions,
  294. tutorials and troubleshooting guides. They are often essential if you are
  295. using these programs for any serious application. A small charge is normally
  296. made for printed documentation. See the magazine for manual offers.
  297.  
  298. IF ALL ELSE FAILS
  299. ------------------
  300.  
  301. If you really can't get the software working, ring our technical support
  302. hotline on 01625 858084 out of office hours or ring 01625 878888 between
  303. 9am and 5pm and ask for the PC HOME Disk Editor. 
  304.  
  305.  
  306. THE DIFFERENT TYPES OF SOFTWARE
  307. ================================
  308.  
  309. Public Domain
  310. ------------------
  311.  
  312. These are free and you don't have to pay for them. You can copy them and 
  313. pass on the copies to friends. There is nearly always a text file, 
  314. sometimes called README.TXT or just READ.ME, which gives the programmer's 
  315. name and address. Write to him for the latest version or to pass on any 
  316. constructive comments, good or bad.
  317.  
  318. Shareware
  319. ----------
  320.  
  321. Some programs are shareware. They are free for a short period of time, 
  322. usually about a month. If you like the program and intend to carry on using 
  323. it after a month, then you must pay for it. This usually takes the form of a 
  324. registration fee, which also entitles you to the latest version and 
  325. sometimes a printed manual. There is normally a text file, sometimes called 
  326. README.TXT or just READ.ME, which gives the programmer's name and address. 
  327. There may also be a file called ORDER.FRM which you can print out and fill 
  328. in. Use it to order the latest version or manual or whatever is being 
  329. offered. Feel free to copy and pass on the program in it's unregistered form.
  330.  
  331. Commercial
  332. -----------
  333.  
  334. The third type of program is a commercial package - either the full program 
  335. or a special demonstration version. This is copyright and you must not pass 
  336. on copies to friends or sell it. The full package is normally sold with one 
  337. or more manuals, which are sometimes quite large. It's often essential to get 
  338. the documentation as it contains full instructions describing how to use the 
  339. program.
  340.  
  341. If you have a demonstration version, or a full package that isn't the latest 
  342. version on offer, you can usually upgrade and buy the latest version complete 
  343. with manuals, tutorials and other printed material. We try to negotiate 
  344. special discounts on your behalf. Detail of such offers are usually displayed 
  345. when you either run or install the software in question.
  346.  
  347.