Skip to main content

CHKDSK

CHKDSK

The CHKDSK command checks the status of a selected disk. It is an
external DOS command, and it displays several information. These include:
  • The total disk space
  • The total disk space occupied and the number of files
  • The total disk space either lost or considered unusable by the system
  • The amount of disk space available for use
  • The total amount of memory available in your computer
  • The amount of memory occupied by the operating system and memory-resident programs
  • The amount of memory available for use
DOS Version 4.01 also displays the volume serial number, if one
exists, and disk and memory allocation information. The general form
of the CHKDSK command is:
                                                       CHKDSK D:

where D: is the drive letter holding the disk to be checked. For
example, the command CHKDSK B: performs a disk check of the disk
in drive B. If no disk drive is specified, the logged disk drive is
assumed, as is the case with most DOS commands.

The General Form : When CHKDSK is typed and the Enter key
pressed, a message similar to the following is displayed.

A:\>CHKDSK
                     
                                  362496 bytes total disk space
                                  198544 bytes in 15 user files
                                  253952 bytes available on disk
                 
                                1024 bytes in each allocation unit
                                35% total allocation units on disk
                               248 available allocation units on disk

                              655360 total bytes memory
                              525504 bytes free


DOS version 3.00 and later display directory information. DOS 4.01
provides disk allocation information as shown in the following screen
illustration. The number of bytes in each allocation unit varies with the
disk format. For example, a 1.2 MB floppy diskette has 512 bytes in
each allocation unit.

C:\DOS>CHKDSK
                         
                                     30117888 bytes total disk space
                                    53248 bytes in 3 hidden files
                                    51200 bytes in 20 directories
                                   13377536 bytes in 743 user files
                                   16635904 bytes available on disk

                                 2048 bytes in each allocation unit
                                14706 total allocation units on disk
                               8123 available allocation units on disk

                            655360 total bytes memory
                            525504 bytes free

Comments

Popular posts from this blog

FORMAT

The FORMAT  command prepares a new disk for use by organizing the disk into magnetic tracks and sectors that are readable by DOS. when a disk is formatted, any files on that disk are usually lost. because of the plethora of disk types and capacities, new parameters were added to the FORMAT command in DOS  version 4.01. MS-DOS 5.00 introduction a safe FORMAT command and the ability to UNFORMAT unintentially formatted disks. These parameters and others are presented in the following paragraph and table. FORMAT Command Form:   There are a number of FORMAT command forms. These are described in the following list. CAUTION  BE aware that the FORMAT command erases all files from the disk being formatted.     Many computer users  have accidentally formatted the wrong disk. If you have programs or    document files  you wish to keep, do not format the disk! (DOS 5.00 lets you UNFORMAT     disk, but even with this ve...

Path

The PATH command is used to provide access to files located in other directories or on other disks. The PATH command is usually entered as a line in an AUTOEXEC.BAT (or batch) file, which most often contains one or more DOS commands. The AUTOEXEC.BAT file is automatically executed upon system turn-on to run one or more desired programs without the need for user intervention. Other batch  files are executed upon command. When an AUTOEXEC.CAT file is used, each command contained in the file executes as it is encountered. The creation and use of batch files is described in Section 8. To illustrate the PATH command, assume you have a program named GATOR.COM that is located in a sub directory. You are not sure if it is cn disk C or disk A, so you want to search both disks and execute the command when found. To complicate matters, you are not sure if the program is in the SWAMP sub directory or the MUD sub directory. Here is where the PATH command comes to your rescue. To set up a search...

DOS Programs (2)

Internal and External Commands Internal and External Commands:  There are  two kinds of DOS commands. These are called internal and external. The internal commands are loaded into memory when DOS is booted. Internal commands are always available for your use, although they are not seen when you display the disk directory of filenames on your screen. Some internal commands are: COPY                               copies files DEL or ERASE               delete files DIR                                  list are directory of filenames on the logged disk PROMPT                         changes the form of the system prompt REN                      ...