| Commit | Line | Data |
|---|---|---|
| 984263bc | 1 | .\" $FreeBSD: src/sbin/i386/fdisk/fdisk.8,v 1.17.2.11 2002/04/25 16:25:12 trhodes Exp $ |
| a02890e3 | 2 | .\" $DragonFly: src/sbin/i386/fdisk/fdisk.8,v 1.17 2008/09/01 20:13:32 thomas Exp $ |
| 984263bc | 3 | .\" |
| 657a0875 | 4 | .Dd September 1, 2008 |
| 984263bc MD |
5 | .Dt FDISK 8 |
| 6 | .Os | |
| 7 | .Sh NAME | |
| 8 | .Nm fdisk | |
| a02890e3 | 9 | .Nd PC slice table (MBR) maintenance program |
| 984263bc MD |
10 | .Sh SYNOPSIS |
| 11 | .Nm | |
| b13267a5 | 12 | .Op Fl BCIaistu |
| 984263bc | 13 | .Op Fl b Ar bootcode |
| 28e1b113 | 14 | .Op Fl p Ar diskimage |
| 984263bc MD |
15 | .Op Fl 1234 |
| 16 | .Op Ar disk | |
| 984263bc MD |
17 | .Nm |
| 18 | .Fl f Ar configfile | |
| 19 | .Op Fl itv | |
| 20 | .Op Ar disk | |
| 21 | .Sh PROLOGUE | |
| 22 | In order for the BIOS to boot the kernel, | |
| 23 | certain conventions must be adhered to. | |
| a02890e3 | 24 | Sector 0 of the disk must contain an MBR, which contain boot code, |
| 984263bc MD |
25 | a slice table, |
| 26 | and a magic number. | |
| 27 | BIOS slices can be used to break the disk up into several pieces. | |
| a02890e3 TN |
28 | .Dx |
| 29 | slices are called partitions under DOS | |
| 30 | .Dq ( partition | |
| 31 | has another meaning under | |
| 32 | .Dx , | |
| 33 | see | |
| 34 | .Xr disklabel 8 ) . | |
| 35 | .Dx | |
| 36 | supports 30 MBR slices, s1-s4 will be DOS primary partitions, | |
| 37 | s5-s30 will be DOS partitions in extended DOS partitions. | |
| 657a0875 TN |
38 | The BIOS brings in sector 0 and verifies the magic number. |
| 39 | The sector | |
| 984263bc MD |
40 | 0 boot code then searches the slice table to determine which |
| 41 | slice is marked | |
| 42 | .Em active . | |
| 43 | This boot code then brings in the bootstrap from the | |
| 44 | .Em active | |
| 45 | slice and, if marked bootable, runs it. | |
| 46 | Under DOS, | |
| 47 | you can have one or more slices with one | |
| 48 | .Em active . | |
| 49 | The DOS | |
| 50 | .Nm | |
| 51 | program can be used to divide space on the disk into slices and set one | |
| 52 | .Em active . | |
| 53 | .Sh DESCRIPTION | |
| 54 | The | |
| 9bb2a92d | 55 | .Dx |
| 984263bc MD |
56 | program, |
| 57 | .Nm , | |
| 657a0875 TN |
58 | serves a similar purpose to the DOS program. |
| 59 | The first form is used to | |
| 60 | display slice information or to interactively edit the slice table. | |
| 61 | The second is used to write a slice table using a | |
| 984263bc MD |
62 | .Ar configfile |
| 63 | and is designed to be used by other scripts/programs. | |
| 64 | .Pp | |
| 65 | Options are: | |
| 76b2e665 | 66 | .Bl -tag -width indent |
| 984263bc | 67 | .It Fl a |
| 657a0875 TN |
68 | Change the active slice only. |
| 69 | Ignored if | |
| 984263bc MD |
70 | .Fl f |
| 71 | is given. | |
| 72 | .It Fl b Ar bootcode | |
| 73 | Get the boot code from the file | |
| 74 | .Ar bootcode . | |
| 75 | Default is | |
| 76 | .Pa /boot/mbr . | |
| 28e1b113 MD |
77 | .It Fl p Ar diskimage |
| 78 | The disk image is specified as a normal file instead of as a device, | |
| 657a0875 | 79 | which is useful when building emulated disks for vmware, bochs, etc.\& |
| 984263bc | 80 | .It Fl B |
| 657a0875 TN |
81 | Reinitialize the boot code contained in sector 0 of the disk. |
| 82 | Ignored if | |
| 984263bc MD |
83 | .Fl f |
| 84 | is given. | |
| b13267a5 | 85 | .It Fl C |
| fcadbd98 | 86 | Set CHS fields to wrapped values. |
| a02890e3 | 87 | Normally the CHS fields for a slice are set to all 1's if they |
| 657a0875 TN |
88 | would otherwise wrap. |
| 89 | This typically causes BIOSes to properly detect | |
| fcadbd98 TN |
90 | that the disk should be put in Large mode. |
| 91 | This option may be needed on very old PCs. | |
| e0fb398b T |
92 | .It Fl E |
| 93 | Use TRIM to erase the device/partition before creating the file system. The | |
| 94 | underlying device must have the Trim sysctl enabled. Only devices that | |
| 95 | support TRIM will have such a sysctl option (kern.cam.da.X.trim_enabled). For | |
| 96 | use with the | |
| 97 | .Fl I | |
| 98 | or | |
| 99 | .Fl u | |
| 100 | option. | |
| 984263bc MD |
101 | .It Fl f Ar configfile |
| 102 | Set slice values using the file | |
| 103 | .Ar configfile . | |
| 104 | The | |
| 105 | .Ar configfile | |
| 106 | always modifies existing slices, unless | |
| 107 | .Fl i | |
| 108 | is also given, in which case all existing slices are deleted (marked | |
| 657a0875 TN |
109 | as |
| 110 | .Dq unused ) | |
| 111 | before the | |
| 984263bc | 112 | .Ar configfile |
| 657a0875 TN |
113 | is read. |
| 114 | The | |
| 984263bc | 115 | .Ar configfile |
| 657a0875 TN |
116 | can be |
| 117 | .Sq - , | |
| 118 | in which case | |
| 984263bc | 119 | .Ar stdin |
| 657a0875 TN |
120 | is read. |
| 121 | See | |
| 984263bc MD |
122 | .Sx CONFIGURATION FILE , |
| 123 | below, for file syntax. | |
| 124 | .Pp | |
| 125 | .Em WARNING : | |
| 126 | when | |
| 127 | .Fl f | |
| 128 | is used, you are not asked if you really want to write the slices | |
| 657a0875 TN |
129 | table (as you are in the interactive mode). |
| 130 | Use with caution! | |
| 984263bc | 131 | .It Fl i |
| 657a0875 TN |
132 | Initialize sector 0 of the disk. |
| 133 | This implies | |
| 984263bc MD |
134 | .Fl u , |
| 135 | unless | |
| 136 | .Fl f | |
| 137 | is given. | |
| 138 | .It Fl I | |
| 139 | Initialize the contents of sector 0 | |
| 140 | for one | |
| 9bb2a92d | 141 | .Dx |
| 984263bc MD |
142 | slice covering the entire disk. |
| 143 | .It Fl s | |
| e6d78ffd CP |
144 | Print a summary of all slices on the disk and exit. |
| 145 | All other options will be ignored. | |
| 984263bc | 146 | .It Fl t |
| 657a0875 TN |
147 | Test mode; do not write slice values. |
| 148 | Generally used with the | |
| 984263bc | 149 | .Fl f |
| 657a0875 TN |
150 | option to see what would be written to the slice table. |
| 151 | Implies | |
| 984263bc MD |
152 | .Fl v . |
| 153 | .It Fl u | |
| 657a0875 TN |
154 | Is used for updating (editing) sector 0 of the disk. |
| 155 | Ignored if | |
| 984263bc MD |
156 | .Fl f |
| 157 | is given. | |
| 158 | .It Fl v | |
| 657a0875 TN |
159 | Be verbose. |
| 160 | When | |
| 984263bc MD |
161 | .Fl f |
| 162 | is used, | |
| 163 | .Nm | |
| 164 | prints out the slice table that is written to the disk. | |
| 165 | .It Fl 1234 | |
| 657a0875 TN |
166 | Operate on a single fdisk entry only. |
| 167 | Ignored if | |
| 984263bc MD |
168 | .Fl f |
| 169 | is given. | |
| 170 | .El | |
| 171 | .Pp | |
| 172 | The final disk name can be provided as a | |
| 173 | .Sq bare | |
| 174 | disk name only, e.g.\& | |
| 657a0875 | 175 | .Pa da0 , |
| 984263bc MD |
176 | or as a fully qualified device node under |
| 177 | .Pa /dev . | |
| 178 | If omitted, the disks | |
| 657a0875 TN |
179 | .Pa ad0 , |
| 180 | .Pa da0 | |
| 908eb1e8 | 181 | and |
| 657a0875 | 182 | .Pa vkd0 |
| 984263bc MD |
183 | are searched in that order, until one is found to respond. |
| 184 | .Pp | |
| 185 | When called without options, | |
| 186 | .Nm | |
| 187 | prints the sector 0 slice table. | |
| 188 | An example follows: | |
| 189 | .Bd -literal | |
| 190 | ******* Working on device /dev/ad0 ******* | |
| 191 | parameters extracted from in-core disklabel are: | |
| 192 | cylinders=769 heads=15 sectors/track=33 (495 blks/cyl) | |
| 193 | ||
| 194 | parameters to be used for BIOS calculations are: | |
| 195 | cylinders=769 heads=15 sectors/track=33 (495 blks/cyl) | |
| 196 | ||
| 197 | Warning: BIOS sector numbering starts with sector 1 | |
| 198 | Information from DOS bootblock is: | |
| 199 | The data for partition 1 is: | |
| aa0ab232 | 200 | sysid 165,(DragonFly/FreeBSD/NetBSD/386BSD) |
| fca180e3 | 201 | start 495, size 380160 (185 Meg), flag 0 |
| 984263bc MD |
202 | beg: cyl 1/ sector 1/ head 0; |
| 203 | end: cyl 768/ sector 33/ head 14 | |
| 204 | The data for partition 2 is: | |
| 205 | sysid 164,(unknown) | |
| fca180e3 | 206 | start 378180, size 2475 (1 Meg), flag 0 |
| 984263bc MD |
207 | beg: cyl 764/ sector 1/ head 0; |
| 208 | end: cyl 768/ sector 33/ head 14 | |
| 209 | The data for partition 3 is: | |
| 210 | <UNUSED> | |
| 211 | The data for partition 4 is: | |
| 212 | sysid 99,(ISC UNIX, other System V/386, GNU HURD or Mach) | |
| fca180e3 | 213 | start 380656, size 224234 (109 Meg), flag 80 |
| 984263bc MD |
214 | beg: cyl 769/ sector 2/ head 0; |
| 215 | end: cyl 197/ sector 33/ head 14 | |
| 216 | .Ed | |
| 217 | .Pp | |
| 218 | The disk is divided into three slices that happen to fill the disk. | |
| 219 | The second slice overlaps the end of the first. | |
| 220 | (Used for debugging purposes.) | |
| 221 | .Bl -tag -width "cyl, sector and head" | |
| 222 | .It Em "sysid" | |
| 223 | is used to label the slice. | |
| 9bb2a92d | 224 | .Dx |
| 984263bc MD |
225 | reserves the |
| 226 | magic number 165 decimal (A5 in hex). | |
| 227 | .It Em start No and Em size | |
| 228 | fields provide the start address | |
| 229 | and size of a slice in sectors. | |
| 230 | .It Em "flag 80" | |
| 231 | specifies that this is the active slice. | |
| 232 | .It Em cyl , sector No and Em head | |
| 233 | fields are used to specify the beginning and end addresses of the slice. | |
| 234 | .It Em Note : | |
| 235 | these numbers are calculated using BIOS's understanding of the disk geometry | |
| 236 | and saved in the bootblock. | |
| 237 | .El | |
| 238 | .Pp | |
| 239 | The | |
| 240 | .Fl i | |
| 241 | and | |
| 242 | .Fl u | |
| 243 | flags are used to indicate that the slice data is to be updated. | |
| 244 | Unless the | |
| 245 | .Fl f | |
| 246 | option is also given, | |
| 247 | .Nm | |
| 248 | will enter a conversational mode. | |
| 249 | In this mode, no changes will be written to disk unless you explicitly tell | |
| 250 | .Nm | |
| 251 | to. | |
| 252 | .Pp | |
| 253 | .Nm Fdisk | |
| 254 | will display each slice and ask whether you want to edit it. | |
| 255 | If you say yes, | |
| 256 | .Nm | |
| 257 | will step through each field, show you the old value, | |
| 258 | and ask you for a new one. | |
| 259 | When you are done with the slice, | |
| 260 | .Nm | |
| 261 | will display it and ask you whether it is correct. | |
| 262 | .Nm Fdisk | |
| 263 | will then proceed to the next entry. | |
| 264 | .Pp | |
| 265 | Getting the | |
| 266 | .Em cyl , sector , | |
| 267 | and | |
| 268 | .Em head | |
| 269 | fields correct is tricky, so by default, | |
| 270 | they will be calculated for you; | |
| 271 | you can specify them if you choose to though. | |
| 272 | .Pp | |
| 273 | After all the slices are processed, | |
| 274 | you are given the option to change the | |
| 275 | .Em active | |
| 276 | slice. | |
| 277 | Finally, when all the new data for sector 0 has been accumulated, | |
| 278 | you are asked to confirm whether you really want to rewrite it. | |
| 279 | .Pp | |
| 280 | The difference between the | |
| 281 | .Fl u | |
| 282 | and | |
| 283 | .Fl i | |
| 284 | flags is that | |
| 285 | the | |
| 286 | .Fl u | |
| 287 | flag just edits (updates) the fields as they appear on the disk, | |
| 288 | while the | |
| 289 | .Fl i | |
| 657a0875 TN |
290 | flag is used to |
| 291 | .Dq initialize | |
| 292 | sector 0; | |
| 984263bc | 293 | it will set up the last BIOS slice to use the whole disk for |
| 9bb2a92d | 294 | .Dx |
| 984263bc MD |
295 | and make it active. |
| 296 | .Sh NOTES | |
| 657a0875 | 297 | The automatic calculation of starting cylinder etc.\& uses |
| 984263bc MD |
298 | a set of figures that represent what the BIOS thinks the |
| 299 | geometry of the drive is. | |
| 300 | These figures are taken from the in-core disklabel by default, | |
| 301 | but | |
| 302 | .Nm | |
| 303 | initially gives you an opportunity to change them. | |
| 304 | This allows you to create a bootblock that can work with drives | |
| 305 | that use geometry translation under the BIOS. | |
| 306 | .Pp | |
| 307 | If you hand craft your disk layout, | |
| 308 | please make sure that the | |
| 9bb2a92d | 309 | .Dx |
| 984263bc MD |
310 | slice starts on a cylinder boundary. |
| 311 | A number of decisions made later may assume this. | |
| 312 | (This might not be necessary later.) | |
| 313 | .Pp | |
| 314 | Editing an existing slice will most likely result in the loss of | |
| 315 | all data in that slice. | |
| 316 | .Pp | |
| 317 | You should run | |
| 318 | .Nm | |
| 319 | interactively once or twice to see how it works. | |
| 320 | This is completely safe as long as you answer the last question | |
| 657a0875 TN |
321 | in the negative. |
| 322 | There are subtleties that | |
| 984263bc MD |
323 | .Nm |
| 324 | detects that are not fully explained in this manual page. | |
| 325 | .Sh CONFIGURATION FILE | |
| 326 | When the | |
| 327 | .Fl f | |
| 328 | option is given, a disk's slice table can be written using values | |
| 329 | from a | |
| 330 | .Ar configfile . | |
| 331 | The syntax of this file is very simple; | |
| 332 | each line is either a comment or a specification, as follows: | |
| 333 | .Bl -tag -width Ds | |
| 334 | .It Xo | |
| 335 | .Ic # | |
| 336 | .Ar comment ... | |
| 337 | .Xc | |
| 657a0875 TN |
338 | Lines beginning with a |
| 339 | .Sq # | |
| 340 | are comments and are ignored. | |
| 984263bc MD |
341 | .It Xo |
| 342 | .Ic g | |
| 343 | .Ar spec1 | |
| 344 | .Ar spec2 | |
| 345 | .Ar spec3 | |
| 346 | .Xc | |
| 657a0875 TN |
347 | Set the BIOS geometry used in slice calculations. |
| 348 | There must be | |
| 984263bc MD |
349 | three values specified, with a letter preceding each number: |
| 350 | .Bl -tag -width Ds | |
| 351 | .Sm off | |
| 352 | .It Cm c Ar num | |
| 353 | .Sm on | |
| 354 | Set the number of cylinders to | |
| 355 | .Ar num . | |
| 356 | .Sm off | |
| 357 | .It Cm h Ar num | |
| 358 | .Sm on | |
| 359 | Set the number of heads to | |
| 360 | .Ar num . | |
| 361 | .Sm off | |
| 362 | .It Cm s Ar num | |
| 363 | .Sm on | |
| 364 | Set the number of sectors/track to | |
| 365 | .Ar num . | |
| 366 | .El | |
| 367 | .Pp | |
| 368 | These specs can occur in any order, as the leading letter determines | |
| 369 | which value is which; however, all three must be specified. | |
| 370 | .Pp | |
| 371 | This line must occur before any lines that specify slice | |
| 372 | information. | |
| 373 | .Pp | |
| 374 | It is an error if the following is not true: | |
| 375 | .Bd -literal -offset indent | |
| aa0d550a SW |
376 | 1 \(<= number of cylinders |
| 377 | 1 \(<= number of heads \(<= 256 | |
| 378 | 1 \(<= number of sectors/track < 64 | |
| 984263bc MD |
379 | .Ed |
| 380 | .Pp | |
| 381 | The number of cylinders should be less than or equal to 1024, but this | |
| 657a0875 TN |
382 | is not enforced, although a warning will be printed. |
| 383 | Note that a bootable | |
| 9bb2a92d | 384 | .Dx |
| 657a0875 TN |
385 | slice (the |
| 386 | .Dq Pa / | |
| 387 | file system) must lie completely within the | |
| a02890e3 TN |
388 | first 1024 cylinders, if |
| 389 | .Dq packet | |
| 390 | mode isn't used, see | |
| 391 | .Xr boot0cfg 8 ; | |
| 392 | if this is not true, booting may fail. | |
| 984263bc MD |
393 | Non-bootable slices do not have this restriction. |
| 394 | .Pp | |
| 395 | Example (all of these are equivalent), for a disk with 1019 cylinders, | |
| 396 | 39 heads, and 63 sectors: | |
| 397 | .Bd -literal -offset indent | |
| 398 | g c1019 h39 s63 | |
| 399 | g h39 c1019 s63 | |
| 400 | g s63 h39 c1019 | |
| 401 | .Ed | |
| 402 | .It Xo | |
| 403 | .Ic p | |
| 404 | .Ar slice | |
| 405 | .Ar type | |
| 406 | .Ar start | |
| 407 | .Ar length | |
| 408 | .Xc | |
| 409 | Set the slice given by | |
| 410 | .Ar slice | |
| 411 | (1-4) to type | |
| 412 | .Ar type , | |
| 413 | starting at sector | |
| 414 | .Ar start | |
| 415 | for | |
| 416 | .Ar length | |
| 417 | sectors. | |
| 418 | .Pp | |
| 419 | Only those slices explicitly mentioned by these lines are modified; | |
| 657a0875 TN |
420 | any slice not referenced by a |
| 421 | .Cm p | |
| 422 | line will not be modified. | |
| 984263bc MD |
423 | However, if an invalid slice table is present, or the |
| 424 | .Fl i | |
| 425 | option is specified, all existing slice entries will be cleared | |
| 657a0875 TN |
426 | (marked as unused), and these |
| 427 | .Cm p | |
| 428 | lines will have to be used to | |
| 429 | explicitly set slice information. | |
| 430 | If multiple slices need to be | |
| 431 | set, multiple | |
| 432 | .Cm p | |
| 433 | lines must be specified; one for each slice. | |
| 984263bc MD |
434 | .Pp |
| 435 | These slice lines must occur after any geometry specification lines, | |
| 436 | if one is present. | |
| 437 | .Pp | |
| 438 | The | |
| 439 | .Ar type | |
| 440 | is 165 for | |
| 9bb2a92d | 441 | .Dx |
| 657a0875 TN |
442 | slices. |
| 443 | Specifying a slice type of zero is | |
| 984263bc | 444 | the same as clearing the slice and marking it as unused; however, |
| 657a0875 TN |
445 | dummy values (such as |
| 446 | .Sq 0 ) | |
| 447 | must still be specified for | |
| 984263bc MD |
448 | .Ar start |
| 449 | and | |
| 450 | .Ar length . | |
| 451 | .Pp | |
| 452 | Note: the start offset will be rounded upwards to a head boundary if | |
| 453 | necessary, and the end offset will be rounded downwards to a cylinder | |
| 454 | boundary if necessary. | |
| 455 | .Pp | |
| 456 | Example: to clear slice 4 and mark it as unused: | |
| 457 | .Bd -literal -offset indent | |
| 458 | p 4 0 0 0 | |
| 459 | .Ed | |
| 460 | .Pp | |
| 461 | Example: to set slice 1 to a | |
| 9bb2a92d | 462 | .Dx |
| 984263bc MD |
463 | slice, starting at sector 1 |
| 464 | for 2503871 sectors (note: these numbers will be rounded upwards and | |
| 465 | downwards to correspond to head and cylinder boundaries): | |
| 984263bc MD |
466 | .Bd -literal -offset indent |
| 467 | p 1 165 1 2503871 | |
| 468 | .Ed | |
| 469 | .Pp | |
| 470 | .It Xo | |
| 471 | .Ic a | |
| 472 | .Ar slice | |
| 473 | .Xc | |
| 474 | Make | |
| 475 | .Ar slice | |
| 657a0875 TN |
476 | the active slice. |
| 477 | Can occur anywhere in the config file, but only | |
| 984263bc | 478 | one must be present. |
| 78753989 CP |
479 | If no |
| 480 | .Cm a | |
| 481 | line is present, all slices of the disk are made inactive. | |
| 984263bc MD |
482 | .Pp |
| 483 | Example: to make slice 1 the active slice: | |
| 484 | .Bd -literal -offset indent | |
| 485 | a 1 | |
| 486 | .Ed | |
| 487 | .El | |
| 488 | .Sh FILES | |
| 489 | .Bl -tag -width /boot/mbr -compact | |
| 490 | .It Pa /boot/mbr | |
| 491 | The default boot code | |
| 492 | .El | |
| 47154af3 TN |
493 | .Sh COMPATIBILITY |
| 494 | Due to the use of 32 bit to store the number of sectors in the MBR, | |
| 4575c128 | 495 | .Nm |
| 47154af3 TN |
496 | can at most use 2^32 - 1 sectors. |
| 497 | For the prevalent sector size of 512B this means a maximum of 2TB. | |
| 498 | Larger disks should be partitioned using | |
| 499 | .Xr gpt 8 . | |
| 500 | .Pp | |
| 501 | The MBR that | |
| 502 | .Nm | |
| 503 | manipulates, is used by many different OSs, but the exact requirements seems to differ, | |
| 504 | it can be a hassle to get multiple OSs to recognize the same MBR. | |
| 505 | Some OSs will require that slices are located at cylinder boundaries. | |
| 984263bc MD |
506 | .Sh SEE ALSO |
| 507 | .Xr boot0cfg 8 , | |
| 508 | .Xr disklabel 8 , | |
| 47154af3 | 509 | .Xr gpt 8 , |
| 984263bc MD |
510 | .Xr newfs 8 |
| 511 | .Sh BUGS | |
| a02890e3 TN |
512 | Only slices s1-s4 |
| 513 | .Pq primary DOS partitions | |
| 514 | can be changed by | |
| 515 | .Nm , | |
| 516 | s5-s30 | |
| 517 | .Pq slices in extended DOS partitions | |
| 518 | can't be changed by | |
| 519 | .Nm . | |
| 520 | .Pp | |
| 984263bc MD |
521 | The default boot code will not necessarily handle all slice types |
| 522 | correctly, in particular those introduced since MS-DOS 6.x. | |
| 523 | .Pp | |
| 524 | The entire program should be made more user-friendly. | |
| 525 | .Pp | |
| 526 | Most users new to | |
| 9bb2a92d | 527 | .Dx |
| 984263bc MD |
528 | do not understand the difference between |
| 529 | .Ar slice | |
| 530 | and | |
| 531 | .Ar partition | |
| 532 | causing difficulty to adjust. | |
| 533 | .Pp | |
| 534 | You cannot use this command to completely dedicate a disk to | |
| 9bb2a92d | 535 | .Dx . |
| 984263bc MD |
536 | The |
| 537 | .Xr disklabel 8 | |
| 538 | command must be used for this. |