home *** CD-ROM | disk | FTP | other *** search
- Crash course on PCs and MS-DOS
- ===============================
-
-
- BOOTING UP
- -----------
- When the PC is switched on it needs to load the operating system (such as MS-
- DOS) into memory. The operating system is a special computer program, and
- without it, the PC just won't work. Dos is loaded either from a floppy disk in
- drive A or the hard disk.
-
- If you have one floppy disk drive it will be called drive A, if you have two,
- then they are A and B. They can be the same size or different sizes. Built into
- most PCs is a hard disk - a special kind of high capacity disk drive that can
- store a lot of information. You can't take this disk out like a floppy, it's
- fixed. It's called a fixed disk or hard disk or hard drive.
-
- If you have two floppies and a hard disk, then the hard disk is C. However, if
- you have only one floppy and a hard disk then they are A and C - there's no B.
- When you switch the PC on, it looks to see if there is a disk in drive A, and if
- there is, it tries to load Dos from it. If Dos isn't on the floppy disk, you'll
- see an error message on the screen, something like "Please insert a system disk
- in drive A and press a key".
-
- If there isn't a floppy disk in drive A when you switch on the PC it looks for
- Dos on the hard disk - if you have one. Eventually, you'll end up with what's
- called the Dos prompt, and this looks like this:
-
- A:\>
-
- or:
-
- C:\>
-
- depending on whether Dos is loaded from drive A or C. By the prompt is a
- flashing cursor.
-
-
- DIRECTORIES
- ------------
- You can tell what files (programs, or other information) are stored on your disk
- by typing (in upper or lower case):
-
- DIR
-
- or:
-
- DIR /W
-
- The name of a file can be up to eight characters long, followed by a full stop
- and then three more characters, like TREE.COM. Some characters on the keyboard
- are special and can't be used in names, * and ? are two.
-
- Generally speaking, any file which ends in .EXE, .COM or .BAT is a program that
- can be run by typing in its name. You don't need to enter the .EXE, .COM or .BAT
- - just the first part of the name.
-
- If you think of the disk as a filing cabinet into which you can put files, you
- can imagine how untidy it would become if you just threw everything in. You can
- make drawers and put files of a similar nature in specific drawers. They aren't
- called drawers, of course, but directories (sometimes called folders).
-
- There are probably some directories already on you disk and these are shown when
- you type DIR with a <DIR> after their name. DOS is a very common directory as it
- is used to hold many files and programs that both you and the operating system
- need to work.
-
- To change to a directory type CD followed by its name like this:
-
- CD DOS
-
- and to find out what files are in it, type:
-
- DIR
-
- To change back to the directory you just came from, (what's called the parent
- directory) type:
-
- CD ..
-
- There can be directories within directories. To change to the parent of all
- directories, type:
-
- CD \
-
- To make a new directory you use the MD command followed by the name (up to eight
- letters), like this:
-
- MD GAMES
-
- This will create a directory called GAMES into which you could put all your
- games. You can change to this new directory with:
-
- CD GAMES
-
-
- BASIC DOS COMMANDS
- -------------------
- BEFORE floppy disks can be used with a PC they have to be specially prepared,
- this is called formatting. You format a disk by typing FORMAT at the Dos prompt
- followed by the drive letter, like this:
-
- FORMAT A:
-
- or:
-
- FORMAT B:
-
- Never use C:, only A: or B:. You can copy Dos to the disk so you can boot up
- from it by adding a /S to the line, like this:
-
- FORMAT A: /S
-
- This then often called a system disk. You can copy files from one disk to
- another, such as from C to A using the COPY command. Suppose you wanted to copy
- LETTER.TXT, assuming that you're on drive C, you would type:
-
- COPY LETTER.TXT A:
-
- If the letter was on drive B and you wanted it on drive A, you would type:
-
- COPY B:\LETTER.TXT A:
-
- And if the letter was stored in the DATA directory on drive B and you wanted to
- copy it to drive A and call it MYLETTER.DOC, you would type:
-
- COPY B:\DATA\LETTER.TXT A:\MYLETTER.DOC
-
- A special form of the command is:
-
- COPY A:\*.* C:\
-
- The *.* means every file, so the line above would copy every file on drive A
- (actually the root directory), to drive C.
-
- Text files often end .TXT or .DOC. You can often display these on the screen
- with the TYPE command. It's best used with MORE which pauses after each
- screenful of text. So, if there's a text file called README.TXT, you could read
- it onscreen by typing:
-
- TYPE README.TXT | MORE
-
- To delete a file you use the DEL command followed by the filename. If you wanted
- to delete LETTER.TXT, you would type:
-
- DEL LETTER.TXT
-
- Remember that LETTER.TXT might be stored in a directory, and if that's the case,
- you would have to change to that directory. Instead of a name you could put *.*
- and this means every file. It's a dangerous command, but if you really do want
- to delete everything in the current directory, type:
-
- DEL *.*
-
- Because it's so dangerous, you are asked if you are sure you want to do this.
- Type Y if you are, otherwise N to stop immediately.