Skip to main content

Disk Construction

The various parts of standard 5.25- and 3.5-inch disks are contained in Figure 1-2. A description of each part is also provided.

  1. Write protect notch--When covered, prevents information from being recorded on the disk; when uncovered, information can be recorded.
  2. Temporary label--An adhesive-backed label allowing the contents of a disk to be identified.
  3. Permanent label--When used, contains disk manufacturer and capacity information.
  4. Exposed recording surface--Metal oxide surface used to magnetically record data. Do not touch!
  5. Protective jacket --House magnetic disk; provides protective cover.
  6. Disk sleeve (envelope)--Used to store disks;prevents  accidental contact with exposed surface.
  7. Protective slide --Protects magnetic media surface; slides open when inserted into a diskette drive (only on 3 1/2-inch diskettes).

Figure 1-2 The Parts of a Floppy Disk

Construction: Almost everyone is familiar with audio recording tape. The tape is a long, flexible acetate or mylar strip coated with ferrous oxide. This coating, which is a powdered iron-like substance, is affected by magnetic fields. Tape recorders are equipped with record and playback heads. The record head places magnetic patterns on the tape. These patterns may be a derivative of voice, music, or even audible computer data. The playback head detects the recorded patterns, which then are amplified several thousand times. The amplified signals is finally reproduced by a speaker.

A disk is similar to a recording tape in substance. Flexible (floppy) disks are also made of ferrous oxide-coated mylar material. Fixed (or hard) disks are made of a more rigid material, but still have the ferrous oxide coating.

The playback and record heads on a disk drive are called read and write heads, although they perform the same functions as their tape recorder counterparts.

Prerecorded tape cassettes containing valuable music programming are protected with a plastic tab. This tab prevents tape recorders from recording over (erasing) the audio information. Flexible disks also can be write protected to keep you from accidentally writing over valuable programs or stored data. Anytime you have a valuable program or data disk, be sure to place an adhesive-backed write protect tab or tape over the write protect notch on the disk.

Disk Organization: Figure 1-3 is a diagram of a disk. Because the 5.25-inch double-sided, double density disk is most common,it is illustrated. Other disks formats vary in tracks, sectors, and data storage density.

Notice that the disk is organized into concentric tracks instead of one continuous track (like the groove in a phonograph record). The tracks are further subdivided into wedge-shaped sectors. Tracks and sectors are not produced in the manufacturing process. They are created magnetically (soft sectored) when a disk is formatted in your computer using the DOS FORMAT command.

There are 40 tracks on each side of a 360K double-sided flexible disk.
These tracks are numbered zero though 39 on side zero (the first side).
Track numbers 40 through 79 are located on side one (the "flip" side) 
of a double-sided diskette.
 
Figure 1-3  Disk Tracks and Sectors

Track number zero is reversed for disk directory information. The other tracks are available for program and file information. You can think of the disk directory as a post office, because it maintains name, address, and other important information about every file stored on the disk. Directory information includes:
  • The file address (where a file begins and ends by track and section location)
  • The filename (assigned by programmers and computer users)
  • The total size of the file in bytes (or characters)
  • The data the file was last saved 
  •                                     The time the file was last saved                                    
NOTE
Before continuing, a few definitions are in order. The term "bytes"
represents a simple computer character. A kilo byte(or KB) is
1,000 bytes. A megabytes (or MB) is one million bytes.


Each sector (or track-sector) on a standard 360K double-density disk stores 512 bytes of information. DOS versions 1.00 through 1.25 have eight sectors per track, while versions 2.00, 2.10, 2.11 have nine sectors per track, DOS version 3.00 offers both the eight and nine sector per track disk configuration in addition to a high capacity disk that contains 15 sectors per track.
The 3.5-inch diskette format was first adopted by a number of laptop computers and then moved to the desktop variety. This storage device was initially rated at 720K capacity. With the introduction of the IBM Model 50 Personal System/2, a 1.44 MB format was offered. Table 1-2 shows total formatted storage capacities. Unless otherwise noted, diskette are the 5.25-inch variety.

Table 1-2  Approximate DOS Storage Capacities
 

Comments

Popular posts from this blog

MEM

MEM The MEM command was introduced in DOS version 4.01 and memory information. The MEM command is entered alone or with a modified slightly in MS-DOS 5.00. MEM is used to display system memory information. The MEM command is entered alone or with a parameter. MEM-Displays to all system memory values, including expanded and extended memory values. MEM PROGRAM--Displays programs presently loaded in memory with used and unused memory. You may use /P if you are using DOS 5.00 MEM/DEBUG--Dispiays a list of programs, device drivers, install drivers, and used unused memory. You may use / if you are using DOS 5.00. MEM CLASSIFY (or MEM /C)-Displays programs and cor-responding memory usage. The largest available memory block is also displayed. You may use /C if you are using DOS 5.00. Typing MEM and pressing Enter displays information similar to the following (typical of DOS 5.00): C:\>MEM                  ...

DOS CONFIGURATION AND AUTOMATIC EXECUTION FILES

The CONFIG.SYS and AUTOEXEC.BAT files can be used to set the way your computer responds to commands. The purpose of each of these files is briefly described. Although these files are not always essential to the proper operation of your computer, there are certain programs that depend on their presence. At this point in your exploration of DOS, you are not expected to make use of these commands. However, it is important to know what they are and how they can be used. When you finish this blog, you may wish to experiment with the effect of these files on the way your computer interacts with certain programs, its operating speed, and the allocation of memory. CONFIG.SYS When your computer is turned on, DOS  checks for a CONFIG.SYS file and adjusts your computor's configuration according to commands contained in that file. The CONFIG.SYS file is always found on the main directory of the DOS book disk. If you have a hard disk system, it is found on drive C, although you can boot from ...