FORMAT.1
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:2k
源码类别:

操作系统开发

开发平台:

C/C++

  1. FORMAT(1)                 Minix Programmer's Manual                  FORMAT(1)
  2. NAME
  3.      format - format a PC floppy diskette
  4. SYNOPSIS
  5.      format [-v] device [media-size [drive-size]]
  6. DESCRIPTION
  7.      Format allows a user with read-write permission to  device  to  format  a
  8.      floppy.   Either  one  of  the  special  floppy devices must be used, see
  9.      fd(4), or an automatic device may be used with the  size  of  the  floppy
  10.      specified on the command line.  Two sizes must be given when formatting a
  11.      low density diskette in a high density drive.  For example:
  12.           format /dev/at1
  13.           format /dev/fd1 1200
  14.           format /dev/fd1 360 1200
  15.      The first two commands format a 1.2M diskette, the last  formats  a  360k
  16.      diskette  in  a 1.2M drive.  A 1.44M drive knows when it's dealing with a
  17.      low density floppy, so all these commands format a 720k diskette:
  18.           format /dev/fd0 720
  19.           format /dev/fd0 720 1440
  20.           format /dev/ps0
  21.      No sizes may be specified when using a special floppy device, a size must
  22.      be specified when using an automatic device.
  23. OPTIONS
  24.      -v   Verify the process  by  reading  each  track  after  formatting  it.
  25.           Formatting  is normally blind, the controller has no idea whether it
  26.           succeeds or not.  Use -v on a new box of cheap diskettes,  or  on  a
  27.           diskette that may have gone bad.  Verifying will increase formatting
  28.           time by 50%.
  29. SEE ALSO
  30.      mkfs(1), fd(4).
  31. DIAGNOSTICS
  32.      Numbers will be printed on standard output to show that it is busy.   The
  33.      locations  of  bad  sectors are printed on standard error when verifying.
  34.      The exit code is zero unless there are too many bad spots.
  35. AUTHOR
  36.      Kees J. Bot (kjb@cs.vu.nl)
  37.                                                                              1