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

操作系统开发

开发平台:

C/C++

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