summaryrefslogtreecommitdiff
path: root/sbin/fdisk/fdisk.8
blob: a13cb112bb0f9f7d014e00d0a45987ef52fa1a76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
.\"	$OpenBSD: fdisk.8,v 1.5 1996/09/27 15:27:15 deraadt Exp $
.\"	$NetBSD: fdisk.8,v 1.8 1995/03/18 14:55:34 cgd Exp $
.\"
.Dd April 4, 1993
.Dt FDISK 8
.Os OpenBSD
.Sh NAME
.Nm fdisk
.Nd DOS partition maintenance program
.Sh SYNOPSIS
.Nm
.Op Fl aium
.Op f Ar mbrname
.Op Ar device
.Sh PROLOGUE
In order for the BIOS to boot the kernel, certain conventions must be
adhered to.
Sector 0 of the disk must contain boot code, a MBR partition table,
and a magic number.
These MBR partitions (also known as BIOS partitions) can be used to
break the disk up into several pieces.
The BIOS loads sector 0 into memory, verifies the magic number, and
begins executing the code at the first byte.
The normal DOS MBR boot code searches the MBR partition table for an
`active' partition (indicated by a flag value of 0x80); if one is found,
the boot block from that partition is loaded and replaces the original
boot block.
.Pp
The following options are available:
.Bl -tag -width indent
.It Fl a
To change the active partition.
.It Fl i
Initialize the MBR sector from other information.
.It Fl u
Update, or change, the MBR sector information.
.It Fl m
Force creation of a new MBR sector.
.It Fl f Ar mbrname
Specifies an alternate MBR file.
.El
.Pp
The DOS
.Nm
program can be used to divide space on the disk into partitions and set
one active.
This 
.Nm
program serves a similar purpose to the DOS program.
When called with no special flags, it prints the MBR partition
table of the specified device, ie.
.Bd -literal
    # fdisk wd0
    Using device /dev/rwd0c:
    Parameters extracted from in-core disklabel are:
        cylinders=769 heads=15 sectors/track=33
        sectors/cylinder=495 total=380655
    Parameters to be used for BIOS calculations are:
        cylinders=769 heads=15 sectors/track=33
        sectors/cylinder=495 
    Warning: BIOS sector numbers start at 1 (not 0)
    MBR Partition 0: sysid 166=0xa6 (OpenBSD)
        start 495, size 380160 (185 MB), flag 0x80
        beg: cylinder    1, head   0, sector  1
        end: cylinder  768, head  14, sector 33
    MBR Partition 1: sysid 6=0x06 (Primary 'big' DOS (> 32MB))
        start 380655, size 2475 (1 MB), flag 0x00
        beg: cylinder  764, head   0, sector  1
        end: cylinder  768, head  14, sector 33
    MBR Partition 2: <UNUSED>
    MBR Partition 3: sysid 165=0xa5 (386BSD/FreeBSD/NetBSD)
        start 383130, size 224234 (109 MB), flag 0x00
        beg: cylinder  769, head   0, sector  2
        end: cylinder  197, head  14, sector 33
.Ed
.Pp
This disk is divided into three partitions that happen to fill the disk.
The second partition overlaps the end of the first.
(Used for debugging purposes)
.Bl -tag -width "cyl, sector and head"
.It Em "sysid"
is used to label the partition.
.oS
reserves the
magic number 166 decimal (A6 in hex).
If no 166 partition is found, it will use an older 386BSD partition
(with a magic number of 165).
.It Em "start and size"
fields provide the start address
and size of a partition in sectors.
.It Em "flag 0x80"
specifies that this is the active partition.
.It Em "cyl, sector and head"
fields are used to specify the beginning address
and end address for the partition.
.It Em "Note:"
these numbers are calculated using BIOS's understanding of the disk
geometry and saved in the bootblock.
.El
.Pp
The flags
.Fl i
or
.Fl u
are used to indicate that the partition data is to be updated.
In this mode,
.Nm
will enter a conversational mode.
This mode is designed not to change any data unless you explicitly
tell it to;
.Nm
selects defaults for its questions to guarantee that behavior.
.Pp
It displays each partition and asks if you want to edit it.
If you reply affirmatively,
it will step through each field showing the old value
and asking for a new one.
When you are done with a partition,
.Nm
will display the information again and ask if it is correct.
.Nm
will then procede to the next entry.
.Pp
Getting the
.Em cyl, sector,
and
.Em head
fields correct is tricky.
So by default,
they will be calculated for you;
you can specify them if you choose.
.Pp
After all the partitions are processed,
you are given the option to change the
.Em active
partition.
To change only the
.Em active
partition, you can use the
.Fl a
flag instead.
.Pp
Finally,
when the all the data for the first sector has been accumulated,
.Nm
will ask if you really want to rewrite sector 0.
Only if you reply affirmatively to this question will
.Nm
write anything to the disk.
.Pp
The difference between the
.Fl u
flag and
.Fl i
flag is that
the
.Fl u
flag just edits the fields as they appear on the disk, while the
.Fl i
flag is used to `initialize' sector 0.
The
.Fl i
flag instructs
.Nm
to start by making the first 3 partitions empty, setting the last partition
to use the whole disk for
.oS ,
and marking the last partition active.
.Sh NOTES
The automatic calculation of starting cylinder etc. uses
a set of figures that represent what the BIOS thinks is the
geometry of the drive.
These figures are by default taken from the incore disklabel, but
.Nm
gives you an opportunity to change them.
This allows the user to create a bootblock that can work with drives
that use geometry translation under the BIOS.
.Pp
If you hand craft your disk layout,
please make sure that the
.oS
partition starts on a cylinder boundary.
(This restriction may be changed in the future.)
.Pp
Editing an existing partition is risky, and may cause you to
lose all the data in that partition.
.Pp
You should run this program interactively once or twice to see how it works.
This is completely safe as long as you answer the last question in the negative.
.Sh FILES
.Pa /usr/mdec/mbr
- the default MBR that can be written onto the disk
.Sh SEE ALSO
.Xr disklabel 8
.Sh BUGS
There are subtleties that the program detects that are not explained in
this manual page.