1.\" Copyright (C) 2001 Matthew Dillon. All rights reserved. 2.\" Copyright (C) 2012 Eitan Adler. 3.\" 4.\" Redistribution and use in source and binary forms, with or without 5.\" modification, are permitted provided that the following conditions 6.\" are met: 7.\" 1. Redistributions of source code must retain the above copyright 8.\" notice, this list of conditions and the following disclaimer. 9.\" 2. Redistributions in binary form must reproduce the above copyright 10.\" notice, this list of conditions and the following disclaimer in the 11.\" documentation and/or other materials provided with the distribution. 12.\" 13.\" THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND 14.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 15.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 16.\" ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE 17.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 18.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 19.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 20.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 21.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 22.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 23.\" SUCH DAMAGE. 24.\" 25.Dd January 23, 2025 26.Dt TUNING 7 27.Os 28.Sh NAME 29.Nm tuning 30.Nd performance tuning under FreeBSD 31.Sh SYSTEM SETUP - DISKLABEL, NEWFS, TUNEFS, SWAP 32The swap partition should typically be approximately 2x the size of 33main memory 34for systems with less than 4GB of RAM, or approximately equal to 35the size of main memory 36if you have more. 37Keep in mind future memory 38expansion when sizing the swap partition. 39Configuring too little swap can lead 40to inefficiencies in the VM page scanning code as well as create issues 41later on if you add more memory to your machine. 42On larger systems 43with multiple disks, configure swap on each drive. 44The swap partitions on the drives should be approximately the same size. 45The kernel can handle arbitrary sizes but 46internal data structures scale to 4 times the largest swap partition. 47Keeping 48the swap partitions near the same size will allow the kernel to optimally 49stripe swap space across the N disks. 50Do not worry about overdoing it a 51little, swap space is the saving grace of 52.Ux 53and even if you do not normally use much swap, it can give you more time to 54recover from a runaway program before being forced to reboot. 55.Pp 56It is not a good idea to make one large partition. 57First, 58each partition has different operational characteristics and separating them 59allows the file system to tune itself to those characteristics. 60For example, 61the root and 62.Pa /usr 63partitions are read-mostly, with very little writing, while 64a lot of reading and writing could occur in 65.Pa /var/tmp . 66By properly 67partitioning your system fragmentation introduced in the smaller more 68heavily write-loaded partitions will not bleed over into the mostly-read 69partitions. 70.Pp 71Properly partitioning your system also allows you to tune 72.Xr newfs 8 , 73and 74.Xr tunefs 8 75parameters. 76The only 77.Xr tunefs 8 78option worthwhile turning on is 79.Em softupdates 80with 81.Dq Li "tunefs -n enable /filesystem" . 82Softupdates drastically improves meta-data performance, mainly file 83creation and deletion. 84We recommend enabling softupdates on most file systems; however, there 85are two limitations to softupdates that you should be aware of when 86determining whether to use it on a file system. 87First, softupdates guarantees file system consistency in the 88case of a crash but could very easily be several seconds (even a minute!\&) 89behind on pending write to the physical disk. 90If you crash you may lose more work 91than otherwise. 92Secondly, softupdates delays the freeing of file system 93blocks. 94If you have a file system (such as the root file system) which is 95close to full, doing a major update of it, e.g.,\& 96.Dq Li "make installworld" , 97can run it out of space and cause the update to fail. 98For this reason, softupdates will not be enabled on the root file system 99during a typical install. 100There is no loss of performance since the root 101file system is rarely written to. 102.Pp 103A number of run-time 104.Xr mount 8 105options exist that can help you tune the system. 106The most obvious and most dangerous one is 107.Cm async . 108Only use this option in conjunction with 109.Xr gjournal 8 , 110as it is far too dangerous on a normal file system. 111A less dangerous and more 112useful 113.Xr mount 8 114option is called 115.Cm noatime . 116.Ux 117file systems normally update the last-accessed time of a file or 118directory whenever it is accessed. 119This operation is handled in 120.Fx 121with a delayed write and normally does not create a burden on the system. 122However, if your system is accessing a huge number of files on a continuing 123basis the buffer cache can wind up getting polluted with atime updates, 124creating a burden on the system. 125For example, if you are running a heavily 126loaded web site, or a news server with lots of readers, you might want to 127consider turning off atime updates on your larger partitions with this 128.Xr mount 8 129option. 130However, you should not gratuitously turn off atime 131updates everywhere. 132For example, the 133.Pa /var 134file system customarily 135holds mailboxes, and atime (in combination with mtime) is used to 136determine whether a mailbox has new mail. 137You might as well leave 138atime turned on for mostly read-only partitions such as 139.Pa / 140and 141.Pa /usr 142as well. 143This is especially useful for 144.Pa / 145since some system utilities 146use the atime field for reporting. 147.Sh STRIPING DISKS 148In larger systems you can stripe partitions from several drives together 149to create a much larger overall partition. 150Striping can also improve 151the performance of a file system by splitting I/O operations across two 152or more disks. 153The 154.Xr gstripe 8 155and 156.Xr ccdconfig 8 157utilities may be used to create simple striped file systems. 158Generally 159speaking, striping smaller partitions such as the root and 160.Pa /var/tmp , 161or essentially read-only partitions such as 162.Pa /usr 163is a complete waste of time. 164You should only stripe partitions that require serious I/O performance, 165typically 166.Pa /var , /home , 167or custom partitions used to hold databases and web pages. 168Choosing the proper stripe size is also 169important. 170File systems tend to store meta-data on power-of-2 boundaries 171and you usually want to reduce seeking rather than increase seeking. 172This 173means you want to use a large off-center stripe size such as 1152 sectors 174so sequential I/O does not seek both disks and so meta-data is distributed 175across both disks rather than concentrated on a single disk. 176.Sh SYSCTL TUNING 177.Xr sysctl 8 178variables permit system behavior to be monitored and controlled at 179run-time. 180Some sysctls simply report on the behavior of the system; others allow 181the system behavior to be modified; 182some may be set at boot time using 183.Xr rc.conf 5 , 184but most will be set via 185.Xr sysctl.conf 5 . 186There are several hundred sysctls in the system, including many that appear 187to be candidates for tuning but actually are not. 188In this document we will only cover the ones that have the greatest effect 189on the system. 190.Pp 191The 192.Va vm.overcommit 193sysctl defines the overcommit behaviour of the vm subsystem. 194The virtual memory system always does accounting of the swap space 195reservation, both total for system and per-user. 196Corresponding values 197are available through sysctl 198.Va vm.swap_total , 199that gives the total bytes available for swapping, and 200.Va vm.swap_reserved , 201that gives number of bytes that may be needed to back all currently 202allocated anonymous memory. 203.Pp 204Setting bit 0 of the 205.Va vm.overcommit 206sysctl causes the virtual memory system to return failure 207to the process when allocation of memory causes 208.Va vm.swap_reserved 209to exceed 210.Va vm.swap_total . 211Bit 1 of the sysctl enforces 212.Dv RLIMIT_SWAP 213limit 214(see 215.Xr getrlimit 2 ) . 216Root is exempt from this limit. 217Bit 2 allows to count most of the physical 218memory as allocatable, except wired and free reserved pages 219(accounted by 220.Va vm.stats.vm.v_free_target 221and 222.Va vm.stats.vm.v_wire_count 223sysctls, respectively). 224.Pp 225The 226.Va kern.ipc.maxpipekva 227loader tunable is used to set a hard limit on the 228amount of kernel address space allocated to mapping of pipe buffers. 229Use of the mapping allows the kernel to eliminate a copy of the 230data from writer address space into the kernel, directly copying 231the content of mapped buffer to the reader. 232Increasing this value to a higher setting, such as `25165824' might 233improve performance on systems where space for mapping pipe buffers 234is quickly exhausted. 235This exhaustion is not fatal; however, and it will only cause pipes 236to fall back to using double-copy. 237.Pp 238The 239.Va kern.ipc.shm_use_phys 240sysctl defaults to 0 (off) and may be set to 0 (off) or 1 (on). 241Setting 242this parameter to 1 will cause all System V shared memory segments to be 243mapped to unpageable physical RAM. 244This feature only has an effect if you 245are either (A) mapping small amounts of shared memory across many (hundreds) 246of processes, or (B) mapping large amounts of shared memory across any 247number of processes. 248This feature allows the kernel to remove a great deal 249of internal memory management page-tracking overhead at the cost of wiring 250the shared memory into core, making it unswappable. 251.Pp 252The 253.Va vfs.vmiodirenable 254sysctl defaults to 1 (on). 255This parameter controls how directories are cached 256by the system. 257Most directories are small and use but a single fragment 258(typically 2K) in the file system and even less (typically 512 bytes) in 259the buffer cache. 260However, when operating in the default mode the buffer 261cache will only cache a fixed number of directories even if you have a huge 262amount of memory. 263Turning on this sysctl allows the buffer cache to use 264the VM Page Cache to cache the directories. 265The advantage is that all of 266memory is now available for caching directories. 267The disadvantage is that 268the minimum in-core memory used to cache a directory is the physical page 269size (typically 4K) rather than 512 bytes. 270We recommend turning this option off in memory-constrained environments; 271however, when on, it will substantially improve the performance of services 272that manipulate a large number of files. 273Such services can include web caches, large mail systems, and news systems. 274Turning on this option will generally not reduce performance even with the 275wasted memory but you should experiment to find out. 276.Pp 277The 278.Va vfs.write_behind 279sysctl defaults to 1 (on). 280This tells the file system to issue media 281writes as full clusters are collected, which typically occurs when writing 282large sequential files. 283The idea is to avoid saturating the buffer 284cache with dirty buffers when it would not benefit I/O performance. 285However, 286this may stall processes and under certain circumstances you may wish to turn 287it off. 288.Pp 289The 290.Va vfs.hirunningspace 291sysctl determines how much outstanding write I/O may be queued to 292disk controllers system-wide at any given time. 293It is used by the UFS file system. 294The default is self-tuned and 295usually sufficient but on machines with advanced controllers and lots 296of disks this may be tuned up to match what the controllers buffer. 297Configuring this setting to match tagged queuing capabilities of 298controllers or drives with average IO size used in production works 299best (for example: 16 MiB will use 128 tags with IO requests of 128 KiB). 300Note that setting too high a value 301(exceeding the buffer cache's write threshold) can lead to extremely 302bad clustering performance. 303Do not set this value arbitrarily high! 304Higher write queuing values may also add latency to reads occurring at 305the same time. 306.Pp 307The 308.Va vfs.read_max 309sysctl governs VFS read-ahead and is expressed as the number of blocks 310to pre-read if the heuristics algorithm decides that the reads are 311issued sequentially. 312It is used by the UFS, ext2fs and msdosfs file systems. 313With the default UFS block size of 32 KiB, a setting of 64 will allow 314speculatively reading up to 2 MiB. 315This setting may be increased to get around disk I/O latencies, especially 316where these latencies are large such as in virtual machine emulated 317environments. 318It may be tuned down in specific cases where the I/O load is such that 319read-ahead adversely affects performance or where system memory is really 320low. 321.Pp 322The 323.Va vfs.ncsizefactor 324sysctl defines how large VFS namecache may grow. 325The number of currently allocated entries in namecache is provided by 326.Va debug.numcache 327sysctl and the condition 328debug.numcache < kern.maxvnodes * vfs.ncsizefactor 329is adhered to. 330.Pp 331The 332.Va vfs.ncnegfactor 333sysctl defines how many negative entries VFS namecache is allowed to create. 334The number of currently allocated negative entries is provided by 335.Va debug.numneg 336sysctl and the condition 337vfs.ncnegfactor * debug.numneg < debug.numcache 338is adhered to. 339.Pp 340There are various other buffer-cache and VM page cache related sysctls. 341We do not recommend modifying these values. 342.Pp 343The 344.Va net.inet.tcp.sendspace 345and 346.Va net.inet.tcp.recvspace 347sysctls are of particular interest if you are running network intensive 348applications. 349They control the amount of send and receive buffer space 350allowed for any given TCP connection. 351The default sending buffer is 32K; the default receiving buffer 352is 64K. 353You can often 354improve bandwidth utilization by increasing the default at the cost of 355eating up more kernel memory for each connection. 356We do not recommend 357increasing the defaults if you are serving hundreds or thousands of 358simultaneous connections because it is possible to quickly run the system 359out of memory due to stalled connections building up. 360But if you need 361high bandwidth over a fewer number of connections, especially if you have 362gigabit Ethernet, increasing these defaults can make a huge difference. 363You can adjust the buffer size for incoming and outgoing data separately. 364For example, if your machine is primarily doing web serving you may want 365to decrease the recvspace in order to be able to increase the 366sendspace without eating too much kernel memory. 367Note that the routing table (see 368.Xr route 8 ) 369can be used to introduce route-specific send and receive buffer size 370defaults. 371.Pp 372As an additional management tool you can use pipes in your 373firewall rules (see 374.Xr ipfw 8 ) 375to limit the bandwidth going to or from particular IP blocks or ports. 376For example, if you have a T1 you might want to limit your web traffic 377to 70% of the T1's bandwidth in order to leave the remainder available 378for mail and interactive use. 379Normally a heavily loaded web server 380will not introduce significant latencies into other services even if 381the network link is maxed out, but enforcing a limit can smooth things 382out and lead to longer term stability. 383Many people also enforce artificial 384bandwidth limitations in order to ensure that they are not charged for 385using too much bandwidth. 386.Pp 387Setting the send or receive TCP buffer to values larger than 65535 will result 388in a marginal performance improvement unless both hosts support the window 389scaling extension of the TCP protocol, which is controlled by the 390.Va net.inet.tcp.rfc1323 391sysctl. 392These extensions should be enabled and the TCP buffer size should be set 393to a value larger than 65536 in order to obtain good performance from 394certain types of network links; specifically, gigabit WAN links and 395high-latency satellite links. 396RFC1323 support is enabled by default. 397.Pp 398The 399.Va net.inet.tcp.always_keepalive 400sysctl determines whether or not the TCP implementation should attempt 401to detect dead TCP connections by intermittently delivering 402.Dq keepalives 403on the connection. 404By default, this is enabled for all applications; by setting this 405sysctl to 0, only applications that specifically request keepalives 406will use them. 407In most environments, TCP keepalives will improve the management of 408system state by expiring dead TCP connections, particularly for 409systems serving dialup users who may not always terminate individual 410TCP connections before disconnecting from the network. 411However, in some environments, temporary network outages may be 412incorrectly identified as dead sessions, resulting in unexpectedly 413terminated TCP connections. 414In such environments, setting the sysctl to 0 may reduce the occurrence of 415TCP session disconnections. 416.Pp 417The 418.Va net.inet.tcp.delayed_ack 419TCP feature is largely misunderstood. 420Historically speaking, this feature 421was designed to allow the acknowledgement to transmitted data to be returned 422along with the response. 423For example, when you type over a remote shell, 424the acknowledgement to the character you send can be returned along with the 425data representing the echo of the character. 426With delayed acks turned off, 427the acknowledgement may be sent in its own packet, before the remote service 428has a chance to echo the data it just received. 429This same concept also 430applies to any interactive protocol (e.g.,\& SMTP, WWW, POP3), and can cut the 431number of tiny packets flowing across the network in half. 432The 433.Fx 434delayed ACK implementation also follows the TCP protocol rule that 435at least every other packet be acknowledged even if the standard 40ms 436timeout has not yet passed. 437Normally the worst a delayed ACK can do is 438slightly delay the teardown of a connection, or slightly delay the ramp-up 439of a slow-start TCP connection. 440While we are not sure we believe that 441the several FAQs related to packages such as SAMBA and SQUID which advise 442turning off delayed acks may be referring to the slow-start issue. 443.Pp 444The 445.Va net.inet.ip.portrange.* 446sysctls control the port number ranges automatically bound to TCP and UDP 447sockets. 448There are three ranges: a low range, a default range, and a 449high range, selectable via the 450.Dv IP_PORTRANGE 451.Xr setsockopt 2 452call. 453Most 454network programs use the default range which is controlled by 455.Va net.inet.ip.portrange.first 456and 457.Va net.inet.ip.portrange.last , 458which default to 49152 and 65535, respectively. 459Bound port ranges are 460used for outgoing connections, and it is possible to run the system out 461of ports under certain circumstances. 462This most commonly occurs when you are 463running a heavily loaded web proxy. 464The port range is not an issue 465when running a server which handles mainly incoming connections, such as a 466normal web server, or has a limited number of outgoing connections, such 467as a mail relay. 468For situations where you may run out of ports, 469we recommend decreasing 470.Va net.inet.ip.portrange.first 471modestly. 472A range of 10000 to 30000 ports may be reasonable. 473You should also consider firewall effects when changing the port range. 474Some firewalls 475may block large ranges of ports (usually low-numbered ports) and expect systems 476to use higher ranges of ports for outgoing connections. 477By default 478.Va net.inet.ip.portrange.last 479is set at the maximum allowable port number. 480.Pp 481The 482.Va kern.ipc.soacceptqueue 483sysctl limits the size of the listen queue for accepting new TCP connections. 484The default value of 128 is typically too low for robust handling of new 485connections in a heavily loaded web server environment. 486For such environments, 487we recommend increasing this value to 1024 or higher. 488The service daemon 489may itself limit the listen queue size (e.g.,\& 490.Xr sendmail 8 , 491apache) but will 492often have a directive in its configuration file to adjust the queue size up. 493Larger listen queues also do a better job of fending off denial of service 494attacks. 495.Pp 496The 497.Va kern.maxfiles 498sysctl determines how many open files the system supports. 499The default is 500typically a few thousand but you may need to bump this up to ten or twenty 501thousand if you are running databases or large descriptor-heavy daemons. 502The read-only 503.Va kern.openfiles 504sysctl may be interrogated to determine the current number of open files 505on the system. 506.Sh LOADER TUNABLES 507Some aspects of the system behavior may not be tunable at runtime because 508memory allocations they perform must occur early in the boot process. 509To change loader tunables, you must set their values in 510.Xr loader.conf 5 511and reboot the system. 512.Pp 513.Va kern.maxusers 514controls the scaling of a number of static system tables, including defaults 515for the maximum number of open files, sizing of network memory resources, etc. 516.Va kern.maxusers 517is automatically sized at boot based on the amount of memory available in 518the system, and may be determined at run-time by inspecting the value of the 519read-only 520.Va kern.maxusers 521sysctl. 522.Pp 523The 524.Va kern.dfldsiz 525and 526.Va kern.dflssiz 527tunables set the default soft limits for process data and stack size 528respectively. 529Processes may increase these up to the hard limits by calling 530.Xr setrlimit 2 . 531The 532.Va kern.maxdsiz , 533.Va kern.maxssiz , 534and 535.Va kern.maxtsiz 536tunables set the hard limits for process data, stack, and text size 537respectively; processes may not exceed these limits. 538The 539.Va kern.sgrowsiz 540tunable controls how much the stack segment will grow when a process 541needs to allocate more stack. 542.Pp 543.Va kern.ipc.nmbclusters 544may be adjusted to increase the number of network mbufs the system is 545willing to allocate. 546Each cluster represents approximately 2K of memory, 547so a value of 1024 represents 2M of kernel memory reserved for network 548buffers. 549You can do a simple calculation to figure out how many you need. 550If you have a web server which maxes out at 1000 simultaneous connections, 551and each connection eats a 16K receive and 16K send buffer, you need 552approximately 32MB worth of network buffers to deal with it. 553A good rule of 554thumb is to multiply by 2, so 32MBx2 = 64MB/2K = 32768. 555So for this case 556you would want to set 557.Va kern.ipc.nmbclusters 558to 32768. 559We recommend values between 5601024 and 4096 for machines with moderates amount of memory, and between 4096 561and 32768 for machines with greater amounts of memory. 562Under no circumstances 563should you specify an arbitrarily high value for this parameter, it could 564lead to a boot-time crash. 565The 566.Fl m 567option to 568.Xr netstat 1 569may be used to observe network cluster use. 570.Pp 571More and more programs are using the 572.Xr sendfile 2 573system call to transmit files over the network. 574The 575.Va kern.ipc.nsfbufs 576sysctl controls the number of file system buffers 577.Xr sendfile 2 578is allowed to use to perform its work. 579This parameter nominally scales 580with 581.Va kern.maxusers 582so you should not need to modify this parameter except under extreme 583circumstances. 584See the 585.Sx TUNING 586section in the 587.Xr sendfile 2 588manual page for details. 589.Sh KERNEL CONFIG TUNING 590There are a number of kernel options that you may have to fiddle with in 591a large-scale system. 592In order to change these options you need to be 593able to compile a new kernel from source. 594The 595.Xr config 8 596manual page and the handbook are good starting points for learning how to 597do this. 598Generally the first thing you do when creating your own custom 599kernel is to strip out all the drivers and services you do not use. 600Removing things like 601.Dv INET6 602and drivers you do not have will reduce the size of your kernel, sometimes 603by a megabyte or more, leaving more memory available for applications. 604.Pp 605.Dv SCSI_DELAY 606may be used to reduce system boot times. 607The defaults are fairly high and 608can be responsible for 5+ seconds of delay in the boot process. 609Reducing 610.Dv SCSI_DELAY 611to something below 5 seconds could work (especially with modern drives). 612.Pp 613There are a number of 614.Dv *_CPU 615options that can be commented out. 616If you only want the kernel to run 617on a Pentium class CPU, you can easily remove 618.Dv I486_CPU , 619but only remove 620.Dv I586_CPU 621if you are sure your CPU is being recognized as a Pentium II or better. 622Some clones may be recognized as a Pentium or even a 486 and not be able 623to boot without those options. 624If it works, great! 625The operating system 626will be able to better use higher-end CPU features for MMU, task switching, 627timebase, and even device operations. 628Additionally, higher-end CPUs support 6294MB MMU pages, which the kernel uses to map the kernel itself into memory, 630increasing its efficiency under heavy syscall loads. 631.Sh CPU, MEMORY, DISK, NETWORK 632The type of tuning you do depends heavily on where your system begins to 633bottleneck as load increases. 634If your system runs out of CPU (idle times 635are perpetually 0%) then you need to consider upgrading the CPU 636or perhaps you need to revisit the 637programs that are causing the load and try to optimize them. 638If your system 639is paging to swap a lot you need to consider adding more memory. 640If your 641system is saturating the disk you typically see high CPU idle times and 642total disk saturation. 643.Xr systat 1 644can be used to monitor this. 645There are many solutions to saturated disks: 646increasing memory for caching, mirroring disks, distributing operations across 647several machines, and so forth. 648.Pp 649Finally, you might run out of network suds. 650Optimize the network path 651as much as possible. 652For example, in 653.Xr firewall 7 654we describe a firewall protecting internal hosts with a topology where 655the externally visible hosts are not routed through it. 656Most bottlenecks occur at the WAN link. 657If expanding the link is not an option it may be possible to use the 658.Xr dummynet 4 659feature to implement peak shaving or other forms of traffic shaping to 660prevent the overloaded service (such as web services) from affecting other 661services (such as email), or vice versa. 662In home installations this could 663be used to give interactive traffic (your browser, 664.Xr ssh 1 665logins) priority 666over services you export from your box (web services, email). 667.Sh SEE ALSO 668.Xr netstat 1 , 669.Xr systat 1 , 670.Xr sendfile 2 , 671.Xr ata 4 , 672.Xr dummynet 4 , 673.Xr eventtimers 4 , 674.Xr ffs 4 , 675.Xr login.conf 5 , 676.Xr rc.conf 5 , 677.Xr sysctl.conf 5 , 678.Xr firewall 7 , 679.Xr hier 7 , 680.Xr ports 7 , 681.Xr boot 8 , 682.Xr bsdinstall 8 , 683.Xr ccdconfig 8 , 684.Xr config 8 , 685.Xr fsck 8 , 686.Xr gjournal 8 , 687.Xr gpart 8 , 688.Xr gstripe 8 , 689.Xr ifconfig 8 , 690.Xr ipfw 8 , 691.Xr loader 8 , 692.Xr mount 8 , 693.Xr newfs 8 , 694.Xr route 8 , 695.Xr sysctl 8 , 696.Xr tunefs 8 697.Sh HISTORY 698The 699.Nm 700manual page was originally written by 701.An Matthew Dillon 702and first appeared 703in 704.Fx 4.3 , 705May 2001. 706The manual page was greatly modified by 707.An Eitan Adler Aq Mt eadler@FreeBSD.org . 708