1.\" Copyright (c) 1983, 1991, 1993 2.\" The Regents of the University of California. All rights reserved. 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.\" 3. All advertising materials mentioning features or use of this software 13.\" must display the following acknowledgement: 14.\" This product includes software developed by the University of 15.\" California, Berkeley and its contributors. 16.\" 4. Neither the name of the University nor the names of its contributors 17.\" may be used to endorse or promote products derived from this software 18.\" without specific prior written permission. 19.\" 20.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 21.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 24.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 25.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 26.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 27.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 28.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 29.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 30.\" SUCH DAMAGE. 31.\" 32.\" @(#)tunefs.8 8.2 (Berkeley) 12/11/93 33.\" $FreeBSD$ 34.\" 35.Dd May 18, 2002 36.Dt TUNEFS 8 37.Os 38.Sh NAME 39.Nm tunefs 40.Nd tune up an existing file system 41.Sh SYNOPSIS 42.Nm 43.Op Fl A 44.Op Fl a Ar maxcontig 45.Op Fl e Ar maxbpg 46.Op Fl f Ar avgfilesize 47.Op Fl m Ar minfree 48.Op Fl n Cm enable | disable 49.Op Fl o Cm space | time 50.Op Fl p 51.Op Fl s Ar avgfpdir 52.Ar special | file system 53.Sh DESCRIPTION 54The 55.Nm 56utility is designed to change the dynamic parameters of a file system 57which affect the layout policies. 58The 59.Nm 60utility cannot be run on an active file system. 61To change an active file system, 62it must be downgraded to read-only or unmounted. 63.Pp 64The parameters which are to be changed are indicated by the flags 65given below: 66.Bl -tag -width indent 67.It Fl A 68The file system has several backups of the super-block. 69Specifying 70this option will cause all backups to be modified as well as the 71primary super-block. 72This is potentially dangerous - use with caution. 73.It Fl a Ar maxcontig 74Specify the maximum number of contiguous blocks that will 75be laid out before allowing a rotational delay. 76The default value is 16. 77.It Fl e Ar maxbpg 78Indicate the maximum number of blocks any single file can 79allocate out of a cylinder group before it is forced to begin 80allocating blocks from another cylinder group. 81Typically this value is set to about one quarter of the total blocks 82in a cylinder group. 83The intent is to prevent any single file from using up all the 84blocks in a single cylinder group, 85thus degrading access times for all files subsequently allocated 86in that cylinder group. 87The effect of this limit is to cause big files to do long seeks 88more frequently than if they were allowed to allocate all the blocks 89in a cylinder group before seeking elsewhere. 90For file systems with exclusively large files, 91this parameter should be set higher. 92.It Fl f Ar avgfilesize 93Specify the expected average file size. 94.It Fl m Ar minfree 95Specify the percentage of space held back 96from normal users; the minimum free space threshold. 97The default value used is 8%. 98Note that lowering the threshold can adversely affect performance: 99.Bl -bullet 100.It 101Settings of 5% and less force space optimization to 102always be used which will greatly increase the overhead for file 103writes. 104.It 105The file system's ability to avoid fragmentation will be reduced 106when the total free space, including the reserve, drops below 15%. 107As free space approaches zero, throughput can degrade by up to a 108factor of three over the performance obtained at a 10% threshold. 109.El 110.Pp 111If the value is raised above the current usage level, 112users will be unable to allocate files until enough files have 113been deleted to get under the higher threshold. 114.It Fl n Cm enable | disable 115Turn on/off soft updates. 116.It Fl o Cm space | time 117The file system can either try to minimize the time spent 118allocating blocks, or it can attempt to minimize the space 119fragmentation on the disk. 120Optimization for space has much 121higher overhead for file writes. 122The kernel normally changes the preference automatically as 123the percent fragmentation changes on the file system. 124.It Fl p 125Show a summary of what the current tunable settings 126are on the selected file system. 127More detailed information can be 128obtained from the 129.Xr dumpfs 8 130or 131.Xr ffsinfo 8 132utilities. 133.It Fl s Ar avgfpdir 134Specify the expected number of files per directory. 135.El 136.Pp 137At least one of the above flags is required. 138.Sh FILES 139.Bl -tag -width ".Pa /etc/fstab" 140.It Pa /etc/fstab 141read this to determine the device file for a 142specified mount point. 143.El 144.Sh SEE ALSO 145.Xr fs 5 , 146.Xr dumpfs 8 , 147.Xr ffsinfo 8 , 148.Xr newfs 8 149.Rs 150.%A M. McKusick 151.%A W. Joy 152.%A S. Leffler 153.%A R. Fabry 154.%T "A Fast File System for UNIX" 155.%J "ACM Transactions on Computer Systems 2" 156.%N 3 157.%P pp 181-197 158.%D August 1984 159.%O "(reprinted in the BSD System Manager's Manual, SMM:5)" 160.Re 161.Sh BUGS 162This utility should work on active file systems. 163.\" Take this out and a Unix Daemon will dog your steps from now until 164.\" the time_t's wrap around. 165.Pp 166You can tune a file system, but you can't tune a fish. 167.Sh HISTORY 168The 169.Nm 170utility appeared in 171.Bx 4.2 . 172