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

操作系统开发

开发平台:

C/C++

  1. PARTITION(8)              Minix Programmer's Manual               PARTITION(8)
  2. NAME
  3.      partition - make a partition table
  4. SYNOPSIS
  5.      partition [-mf] device [type:]size[+*] ...
  6. DESCRIPTION
  7.      Partition makes a partition table on device using  the  types  and  sizes
  8.      given.   It  may be used in combination with repartition(8) for automatic
  9.      installation of Minix.
  10.      You may give up to four type:size[+*] specifications for the  partitions.
  11.      You  may also specify holes before, between, and after the partitions.  A
  12.      hole differs from a partition specification by not having a type.
  13.      The first hole is by default 1 sector  to  make  space  for  the  primary
  14.      bootstrap and the partition table.  The other holes are 0.
  15.      The type field is the type of the partitition in hexadecimal.   The  size
  16.      field  is  the partition's size in sectors.  The + or * may optionally be
  17.      added to indicate that the partition must  be  expanded  to  contain  any
  18.      leftover space on the device or to mark the partition active.
  19.      Partitions are padded out to cylinder boundaries, except  for  the  first
  20.      one,  it  starts  on  track  1.   Some operating systems care about this.
  21.      Minix and MS-DOS do not.
  22. OPTIONS
  23.      -m   Minix only, no need to pad partitions.   This  is  the  default  for
  24.           subpartition tables.
  25.      -f   Force making a partition table even if the device is too small.
  26. EXAMPLE
  27.      partition /dev/hd0 01:16384 81:40000 81:2880* 06:20000+
  28.      Partitions disk 0 into an 8 Mb DOS partition, 20 Mb Minix /usr,  1.44  Mb
  29.      Minix / (active), and a DOS partition of at least 10 Mb at the end of the
  30.      disk.  (06:0+ would have been ok too, it's just a sanity check.)
  31. SEE ALSO
  32.      hd(4), part(8), repartition(8).
  33. AUTHOR
  34.      Kees J. Bot (kjb@cs.vu.nl)
  35.                                                                              1