FDISK.8
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:2k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. FDISK(8)                  Minix Programmer's Manual                   FDISK(8)
  2. NAME
  3.      fdisk - partition a hard disk [IBM]
  4. SYNOPSIS
  5.      fdisk [-hm] [-sn] [file]
  6. OPTIONS
  7.      -h   Number of disk heads is m
  8.      -s   Number of sectors per track is n
  9. EXAMPLES
  10.      fdisk /dev/hd0      # Examine disk partitions
  11.      fdisk -h9 /dev/hd0  # Examine disk with 9 heads
  12. DESCRIPTION
  13.      When fdisk starts up, it reads in the partition table  and  displays  it.
  14.      It then presents a menu to allow the user to modify partitions, store the
  15.      partition table on a file, or load it from a  file.   Partitions  can  be
  16.      marked  as MINIX, DOS or other, as well as active or not.  Using fdisk is
  17.      self-explanatory. However, be aware that repartitioning a disk will cause
  18.      information  on  it  to  be  lost.  Rebooting  the  system immediately is
  19.      mandatory after changing partition sizes and parameters.   MINIX,  XENIX,
  20.      PC-IX,  and  MS-DOS all have different partition numbering schemes.  Thus
  21.      when using multiple systems on the same disk, be careful.
  22.      Note that MINIX, unlike MS-DOS , cannot  access  the  last  sector  in  a
  23.      partition  with  an odd number of sectors.  The reason that odd partition
  24.      sizes do not cause a problem with MS-DOS is that  MS-DOS  allocates  disk
  25.      space  in units of 512-byte sectors, whereas MINIX uses 1K blocks.  Fdisk
  26.      has a variety of other features that can be seen by typing h.
  27.      Fdisk normally knows the geometry of the device  by  asking  the  driver.
  28.      You can use the -h and -s options to override the numbers found.
  29. SEE ALSO
  30.      part(8).
  31.                                                                              1