Whamcloud - gitweb
Add project quota support
[tools/e2fsprogs.git] / misc / tune2fs.8.in
1 .\" Revision 1.0 93/06/3 23:00  chk
2 .\" Initial revision
3 .\"
4 .\"
5 .TH TUNE2FS 8 "@E2FSPROGS_MONTH@ @E2FSPROGS_YEAR@" "E2fsprogs version @E2FSPROGS_VERSION@"
6 .SH NAME
7 tune2fs \- adjust tunable filesystem parameters on ext2/ext3/ext4 filesystems
8 .SH SYNOPSIS
9 .B tune2fs
10 [
11 .B \-l
12 ]
13 [
14 .B \-c
15 .I max-mount-counts
16 ]
17 [
18 .B \-e
19 .I errors-behavior
20 ]
21 [
22 .B \-f
23 ]
24 [
25 .B \-i
26 .I interval-between-checks
27 ]
28 [
29 .B \-j
30 ]
31 [
32 .B \-J
33 .I journal-options
34 ]
35 [
36 .B \-m
37 .I reserved-blocks-percentage
38 ]
39 [
40 .B \-o
41 .RI [^]mount-options [,...]
42 ]
43 [
44 .B \-r
45 .I reserved-blocks-count
46 ]
47 [
48 .B \-s
49 .I sparse-super-flag
50 ]
51 [
52 .B \-u
53 .I user
54 ]
55 [
56 .B \-g
57 .I group
58 ]
59 [
60 .B \-C
61 .I mount-count
62 ]
63 [
64 .B \-E
65 .I extended-options
66 ]
67 [
68 .B \-L
69 .I volume-name
70 ]
71 [
72 .B \-M
73 .I last-mounted-directory
74 ]
75 [
76 .B \-O 
77 .RI [^] feature [,...]
78 ]
79 [
80 .B \-Q
81 .I quota-options
82 ]
83 [
84 .B \-T
85 .I time-last-checked
86 ]
87 [
88 .B \-U
89 .I UUID
90 ]
91 [
92 .B \-z
93 .I undo_file
94 ]
95 device
96 .SH DESCRIPTION
97 .BI tune2fs
98 allows the system administrator to adjust various tunable filesystem 
99 parameters on Linux ext2, ext3, or ext4 filesystems.  The current values 
100 of these options can be displayed by using the
101 .B -l
102 option to
103 .BR tune2fs (8)
104 program, or by using the
105 .BR dumpe2fs (8)
106 program.
107 .PP
108 The
109 .I device
110 specifier can either be a filename (i.e., /dev/sda1), or a LABEL or UUID
111 specifier: "\fBLABEL=\fIvolume-name\fR" or "\fBUUID=\fIuuid\fR".  (i.e.,
112 LABEL=home or UUID=e40486c6-84d5-4f2f-b99c-032281799c9d).
113 .SH OPTIONS
114 .TP
115 .BI \-c " max-mount-counts"
116 Adjust the number of mounts after which the filesystem will be checked by 
117 .BR e2fsck (8).  
118 If
119 .I max-mount-counts
120 is 0 or \-1, the number of times the filesystem is mounted will be disregarded 
121 by
122 .BR e2fsck (8)
123 and the kernel.
124 .sp
125 Staggering the mount-counts at which filesystems are forcibly
126 checked will avoid all filesystems being checked at one time
127 when using journaled filesystems.
128 .sp
129 You should strongly consider the consequences of disabling
130 mount-count-dependent checking entirely.  Bad disk drives, cables,
131 memory, and kernel bugs could all corrupt a filesystem without
132 marking the filesystem dirty or in error.  If you are using
133 journaling on your filesystem, your filesystem will
134 .B never
135 be marked dirty, so it will not normally be checked.  A
136 filesystem error detected by the kernel will still force
137 an fsck on the next reboot, but it may already be too late
138 to prevent data loss at that point.
139 .sp
140 See also the
141 .B \-i
142 option for time-dependent checking.
143 .TP
144 .BI \-C " mount-count"
145 Set the number of times the filesystem has been mounted.
146 If set to a greater value than the max-mount-counts parameter
147 set by the 
148 .B \-c
149 option,
150 .BR e2fsck (8) 
151 will check the filesystem at the next reboot.
152 .TP
153 .BI \-e " error-behavior"
154 Change the behavior of the kernel code when errors are detected.
155 In all cases, a filesystem error will cause
156 .BR e2fsck (8)
157 to check the filesystem on the next boot.
158 .I error-behavior
159 can be one of the following:
160 .RS 1.2i
161 .TP 1.2i
162 .B continue
163 Continue normal execution.
164 .TP
165 .B remount-ro
166 Remount filesystem read-only.
167 .TP
168 .B panic
169 Cause a kernel panic.
170 .RE
171 .TP
172 .BI \-E " extended-options"
173 Set extended options for the filesystem.  Extended options are comma
174 separated, and may take an argument using the equals ('=') sign.
175 The following extended options are supported:
176 .RS 1.2i
177 .TP
178 .B clear_mmp
179 Reset the MMP block (if any) back to the clean state.  Use only if
180 absolutely certain the device is not currently mounted or being
181 fscked, or major filesystem corruption can result.  Needs '-f'.
182 .TP
183 .BI mmp_update_interval= interval
184 Adjust the initial MMP update interval to
185 .I interval
186 seconds.  Specifying an
187 .I interval
188 of 0 means to use the default interval.  The specified interval must
189 be less than 300 seconds.  Requires that the
190 .B mmp
191 feature be enabled.
192 .TP
193 .BI stride= stride-size
194 Configure the filesystem for a RAID array with
195 .I stride-size
196 filesystem blocks. This is the number of blocks read or written to disk
197 before moving to next disk. This mostly affects placement of filesystem
198 metadata like bitmaps at
199 .BR mke2fs (2)
200 time to avoid placing them on a single disk, which can hurt the performance.
201 It may also be used by block allocator.
202 .TP
203 .BI stripe_width= stripe-width
204 Configure the filesystem for a RAID array with
205 .I stripe-width
206 filesystem blocks per stripe. This is typically be stride-size * N, where
207 N is the number of data disks in the RAID (e.g. RAID 5 N+1, RAID 6 N+2).
208 This allows the block allocator to prevent read-modify-write of the
209 parity in a RAID stripe if possible when the data is written.
210 .TP
211 .BI hash_alg= hash-alg
212 Set the default hash algorithm used for filesystems with hashed b-tree
213 directories.  Valid algorithms accepted are:
214 .IR legacy ,
215 .IR half_md4 ,
216 and
217 .IR tea .
218 .TP
219 .BI mount_opts= mount_option_string
220 Set a set of default mount options which will be used when the file
221 system is mounted.  Unlike the bitmask-based default mount options which
222 can be specified with the
223 .B -o
224 option,
225 .I mount_option_string
226 is an arbitrary string with a maximum length of 63 bytes, which is
227 stored in the superblock.
228 .IP
229 The ext4 file system driver will first apply
230 the bitmask-based default options, and then parse the
231 .IR mount_option_string ,
232 before parsing the mount options passed from the
233 .BR mount (8)
234 program.
235 .IP
236 This superblock setting is only honored in 2.6.35+ kernels;
237 and not at all by the ext2 and ext3 file system drivers.
238 .TP
239 .B test_fs
240 Set a flag in the filesystem superblock indicating that it may be
241 mounted using experimental kernel code, such as the ext4dev filesystem.
242 .TP
243 .B ^test_fs
244 Clear the test_fs flag, indicating the filesystem should only be mounted
245 using production-level filesystem code.
246 .RE
247 .TP
248 .B \-f
249 Force the tune2fs operation to complete even in the face of errors.  This 
250 option is useful when removing the 
251 .B has_journal
252 filesystem feature from a filesystem which has 
253 an external journal (or is corrupted
254 such that it appears to have an external journal), but that 
255 external journal is not available.   If the filesystem appears to require
256 journal replay, the
257 .B \-f
258 flag must be specified twice to proceed.
259 .sp
260 .B WARNING:
261 Removing an external journal from a filesystem which was not cleanly unmounted
262 without first replaying the external journal can result in
263 severe data loss and filesystem corruption.
264 .TP
265 .BI \-g " group"
266 Set the group which can use the reserved filesystem blocks.
267 The 
268 .I group
269 parameter can be a numerical gid or a group name.  If a group name is given,
270 it is converted to a numerical gid before it is stored in the superblock.
271 .TP
272 .B \-i " \fIinterval-between-checks\fR[\fBd\fR|\fBm\fR|\fBw\fR]"
273 Adjust the maximal time between two filesystem checks. 
274 No suffix or
275 .B d
276 will interpret the number
277 .I interval-between-checks
278 as days,
279 .B m
280 as months, and
281 .B w
282 as weeks.  A value of zero will disable the time-dependent checking.
283 .sp
284 It is strongly recommended that either
285 .B \-c
286 (mount-count-dependent) or
287 .B \-i
288 (time-dependent) checking be enabled to force periodic full
289 .BR e2fsck (8)
290 checking of the filesystem.  Failure to do so may lead to filesystem
291 corruption (due to bad disks, cables, memory, or kernel bugs) going
292 unnoticed, ultimately resulting in data loss or corruption.
293 .TP
294 .B \-j
295 Add an ext3 journal to the filesystem.  If the 
296 .B \-J
297 option is not specified, the default journal parameters will be used to create
298 an appropriately sized journal (given the size of the filesystem) 
299 stored within the filesystem.  Note that you must be using a kernel
300 which has ext3 support in order to actually make use of the journal.
301 .IP
302 If this option is used to create a journal on a mounted filesystem, an
303 immutable file,
304 .BR .journal ,
305 will be created in the top-level directory of the filesystem, as it is
306 the only safe way to create the journal inode while the filesystem is
307 mounted.  While the ext3 journal is visible, it is not safe to
308 delete it, or modify it while the filesystem is mounted; for this
309 reason the file is marked immutable.
310 While checking unmounted filesystems, 
311 .BR e2fsck (8)
312 will automatically move 
313 .B .journal
314 files to the invisible, reserved journal inode.  For all filesystems
315 except for the root filesystem,  this should happen automatically and
316 naturally during the next reboot cycle.  Since the root filesystem is
317 mounted read-only,
318 .BR e2fsck (8)
319 must be run from a rescue floppy in order to effect this transition.
320 .IP
321 On some distributions, such as Debian, if an initial ramdisk is used,
322 the initrd scripts will automatically convert an ext2 root filesystem
323 to ext3 if the  
324 .BR /etc/fstab
325 file specifies the ext3 filesystem for the root filesystem in order to
326 avoid requiring the use of a rescue floppy to add an ext3 journal to
327 the root filesystem.
328 .TP
329 .BR \-J " journal-options"
330 Override the default ext3 journal parameters. Journal options are comma
331 separated, and may take an argument using the equals ('=')  sign.
332 The following journal options are supported:
333 .RS 1.2i
334 .TP
335 .BI size= journal-size
336 Create a journal stored in the filesystem of size
337 .I journal-size
338 megabytes.   The size of the journal must be at least 1024 filesystem blocks
339 (i.e., 1MB if using 1k blocks, 4MB if using 4k blocks, etc.)
340 and may be no more than 10,240,000 filesystem blocks.
341 There must be enough free space in the filesystem to create a journal of
342 that size.
343 .TP
344 .BI location =journal-location
345 Specify the location of the journal.  The argument
346 .I journal-location
347 can either be specified as a block number, or if the number has a units
348 suffix (e.g., 'M', 'G', etc.) interpret it as the offset from the
349 beginning of the file system.
350 @JDEV@.TP
351 @JDEV@.BI device= external-journal
352 @JDEV@Attach the filesystem to the journal block device located on
353 @JDEV@.IR external-journal .
354 @JDEV@The external 
355 @JDEV@journal must have been already created using the command
356 @JDEV@.IP
357 @JDEV@.B mke2fs -O journal_dev 
358 @JDEV@.I external-journal
359 @JDEV@.IP
360 @JDEV@Note that
361 @JDEV@.I external-journal
362 @JDEV@must be formatted with the same block
363 @JDEV@size as filesystems which will be using it.
364 @JDEV@In addition, while there is support for attaching
365 @JDEV@multiple filesystems to a single external journal,
366 @JDEV@the Linux kernel and 
367 @JDEV@.BR e2fsck (8)
368 @JDEV@do not currently support shared external journals yet.
369 @JDEV@.IP
370 @JDEV@Instead of specifying a device name directly,
371 @JDEV@.I external-journal
372 @JDEV@can also be specified by either
373 @JDEV@.BI LABEL= label
374 @JDEV@or
375 @JDEV@.BI UUID= UUID
376 @JDEV@to locate the external journal by either the volume label or UUID
377 @JDEV@stored in the ext2 superblock at the start of the journal.  Use
378 @JDEV@.BR dumpe2fs (8)
379 @JDEV@to display a journal device's volume label and UUID.  See also the
380 @JDEV@.B -L
381 @JDEV@option of
382 @JDEV@.BR tune2fs (8).
383 .RE
384 @JDEV@.IP
385 @JDEV@Only one of the
386 @JDEV@.BR size " or " device
387 @JDEV@options can be given for a filesystem.
388 .TP
389 .B \-l
390 List the contents of the filesystem superblock, including the current
391 values of the parameters that can be set via this program.
392 .TP
393 .BI \-L " volume-label"
394 Set the volume label of the filesystem.  
395 Ext2 filesystem labels can be at most 16 characters long; if
396 .I volume-label 
397 is longer than 16 characters, 
398 .B tune2fs
399 will truncate it and print a warning.  The volume label can be used
400 by
401 .BR mount (8),
402 .BR fsck (8),
403 and
404 .BR /etc/fstab (5)
405 (and possibly others) by specifying
406 .BI LABEL= volume_label
407 instead of a block special device name like
408 .BR /dev/hda5 .
409 .TP
410 .BI \-m " reserved-blocks-percentage"
411 Set the percentage of the filesystem which may only be allocated
412 by privileged processes.   Reserving some number of filesystem blocks 
413 for use by privileged processes is done 
414 to avoid filesystem fragmentation, and to allow system
415 daemons, such as 
416 .BR syslogd (8),
417 to continue to function correctly after non-privileged processes are 
418 prevented from writing to the filesystem.  Normally, the default percentage 
419 of reserved blocks is 5%.
420 .TP
421 .BI \-M " last-mounted-directory"
422 Set the last-mounted directory for the filesystem.
423 .TP
424 .BR \-o " [^]\fImount-option\fR[,...]"
425 Set or clear the indicated default mount options in the filesystem.
426 Default mount options can be overridden by mount options specified 
427 either in 
428 .BR /etc/fstab (5)
429 or on the command line arguments to
430 .BR mount (8).   
431 Older kernels may not support this feature; in particular,
432 kernels which predate 2.4.20 will almost certainly ignore the
433 default mount options field in the superblock.
434 .IP
435 More than one mount option can be cleared or set by separating
436 features with commas.  Mount options prefixed with a 
437 caret character ('^') will be cleared in the filesystem's superblock; 
438 mount options without a prefix character or prefixed with a plus 
439 character ('+') will be added to the filesystem.
440 .IP
441 The following mount options can be set or cleared using
442 .BR tune2fs :
443 .RS 1.2i
444 .TP
445 .B debug
446 Enable debugging code for this filesystem.
447 .TP
448 .B bsdgroups
449 Emulate BSD behavior when creating new files: they will take the group-id
450 of the directory in which they were created.  The standard System V behavior
451 is the default, where newly created files take on the fsgid of the current
452 process, unless the directory has the setgid bit set, in which case it takes 
453 the gid from the parent directory, and also gets the setgid bit set if it is 
454 a directory itself.
455 .TP
456 .B user_xattr
457 Enable user-specified extended attributes.
458 .TP
459 .B acl
460 Enable Posix Access Control Lists.
461 .TP
462 .B uid16
463 Disables 32-bit UIDs and GIDs.  This is for interoperability with
464 older kernels which only store and expect 16-bit values.
465 .TP
466 .B journal_data
467 When the filesystem is mounted with journalling enabled, all data
468 (not just metadata) is committed into the journal prior to being written
469 into the main filesystem.
470 .TP
471 .B journal_data_ordered
472 When the filesystem is mounted with journalling enabled, all data is forced
473 directly out to the main file system prior to its metadata being committed 
474 to the journal.
475 .TP
476 .B journal_data_writeback
477 When the filesystem is mounted with journalling enabled, data may be
478 written into the main filesystem after its metadata has been committed
479 to the journal.  This may increase throughput, however, it may allow old
480 data to appear in files after a crash and journal recovery.
481 .TP
482 .B nobarrier
483 The file system will be mounted with barrier operations in the journal
484 disabled.  (This option is currently only supported by the ext4 file
485 system driver in 2.6.35+ kernels.)
486 .TP
487 .B block_validity
488 The file system will be mounted with the block_validity option enabled,
489 which causes extra checks to be performed after reading or writing from
490 the file system.  This prevents corrupted metadata blocks from causing
491 file system damage by overwriting parts of the inode table or block
492 group descriptors.  This comes at the cost of increased memory and CPU
493 overhead, so it is enabled only for debugging purposes.  (This option is
494 currently only supported by the ext4 file system driver in 2.6.35+
495 kernels.)
496 .TP
497 .B discard
498 The file system will be mounted with the discard mount option.  This will
499 cause the file system driver to attempt to use the trim/discard feature
500 of some storage devices (such as SSD's and thin-provisioned drives
501 available in some enterprise storage arrays) to inform the storage
502 device that blocks belonging to deleted files can be reused for other
503 purposes.  (This option is currently only supported by the ext4 file
504 system driver in 2.6.35+ kernels.)
505 .TP
506 .B nodelalloc
507 The file system will be mounted with the nodelalloc mount option.  This
508 will disable the delayed allocation feature.  (This option is currently
509 only supported by the ext4 file system driver in 2.6.35+ kernels.)
510 .RE
511 .TP
512 .BR \-O " [^]\fIfeature\fR[,...]"
513 Set or clear the indicated filesystem features (options) in the filesystem.
514 More than one filesystem feature can be cleared or set by separating
515 features with commas.  Filesystem features prefixed with a 
516 caret character ('^') will be cleared in the filesystem's superblock; 
517 filesystem features without a prefix character or prefixed with a plus 
518 character ('+') will be added to the filesystem.  For a detailed
519 description of the file system features, please see the man page
520 .BR ext4 (5).
521 .IP
522 The following filesystem features can be set or cleared using
523 .BR tune2fs :
524 .RS 1.2i
525 .TP
526 .B dir_index
527 Use hashed b-trees to speed up lookups for large directories.
528 .TP
529 .B dir_nlink
530 Allow more than 65000 subdirectories per directory.
531 .TP
532 .B extent
533 Enable the use of extent trees to store the location of data blocks in inodes.
534 .TP
535 .B extra_isize
536 Enable the extended inode fields used by ext4.
537 .TP
538 .B filetype
539 Store file type information in directory entries.
540 .TP
541 .B flex_bg
542 Allow bitmaps and inode tables for a block group to be placed
543 anywhere on the storage media.  \fBTune2fs\fR will not reorganize
544 the location of the inode tables and allocation bitmaps, as
545 .BR mke2fs (8)
546 will do when it creates a freshly formatted file system with
547 .B flex_bg
548 enabled.
549 .TP
550 .B has_journal
551 Use a journal to ensure filesystem consistency even across unclean shutdowns.
552 Setting the filesystem feature is equivalent to using the 
553 .B \-j
554 option.
555 .TP
556 .B huge_file
557 Support files larger than 2 terabytes in size.
558 .TP
559 .B large_file
560 Filesystem can contain files that are greater than 2GB.
561 .TP
562 .B resize_inode
563 Reserve space so the block group descriptor table may grow in the
564 future.
565 .B Tune2fs 
566 only supports clearing this filesystem feature.
567 .TP
568 .B mmp
569 Enable or disable multiple mount protection (MMP) feature.
570 .TP
571 .B quota
572 Enable internal file system quota inodes.
573 .TP
574 .B read-only
575 Force the kernel to mount the file system read-only.
576 .TP
577 .B sparse_super
578 Limit the number of backup superblocks to save space on large filesystems.
579 .TP
580 .B uninit_bg
581 Allow the kernel to initialize bitmaps and inode tables lazily, and to
582 keep a high watermark for the unused inodes in a filesystem, to reduce
583 .BR e2fsck (8)
584 time.  This first e2fsck run after enabling this feature will take the
585 full time, but subsequent e2fsck runs will take only a fraction of the
586 original time, depending on how full the file system is.
587 .RE
588 .IP
589 After setting or clearing 
590 .BR sparse_super ,
591 .BR uninit_bg ,
592 .BR filetype ,
593 or
594 .B resize_inode
595 filesystem features,
596 .BR e2fsck (8)
597 must be run on the filesystem to return the filesystem to a consistent state.
598 .B Tune2fs
599 will print a message requesting that the system administrator run
600 .BR e2fsck (8)
601 if necessary.  After setting the 
602 .B dir_index
603 feature, 
604 .B e2fsck -D
605 can be run to convert existing directories to the hashed B-tree format.
606 Enabling certain filesystem features may prevent the filesystem from being
607 mounted by kernels which do not support those features.  In particular, the
608 .BR uninit_bg
609 and
610 .BR flex_bg
611 features are only supported by the ext4 filesystem.
612 .TP
613 .BI \-p " mmp_check_interval"
614 Set the desired MMP check interval in seconds. It is 5 seconds by default.
615 .TP
616 .BI \-r " reserved-blocks-count"
617 Set the number of reserved filesystem blocks.
618 .TP
619 .BI \-Q " quota-options"
620 Sets 'quota' feature on the superblock and works on the quota files for the
621 given quota type. Quota options could be one or more of the following:
622 .RS 1.2i
623 .TP
624 .BR [^]usrquota
625 Sets/clears user quota inode in the superblock.
626 .TP
627 .BR [^]grpquota
628 Sets/clears group quota inode in the superblock.
629 .TP
630 .BR [^]prjquota
631 Sets/clears project quota inode in the superblock.
632 .RE
633 .TP
634 .BI \-T " time-last-checked"
635 Set the time the filesystem was last checked using
636 .BR  e2fsck .
637 The time is interpreted using the current (local) timezone.
638 This can be useful in scripts which use a Logical Volume Manager to make
639 a consistent snapshot of a filesystem, and then check the filesystem 
640 during off hours to make sure it hasn't been corrupted due to 
641 hardware problems, etc.  If the filesystem was clean, then this option can 
642 be used to set the last checked time on the original filesystem.  The format 
643 of 
644 .I time-last-checked
645 is the international date format, with an optional time specifier, i.e.
646 YYYYMMDD[HH[MM[SS]]].   The keyword 
647 .B now
648 is also accepted, in which case the last checked time will be set to the 
649 current time.
650 .TP
651 .BI \-u " user"
652 Set the user who can use the reserved filesystem blocks.
653 .I user
654 can be a numerical uid or a user name.  If a user name is given, it 
655 is converted to a numerical uid before it is stored in the superblock.
656 .TP
657 .BI \-U " UUID"
658 Set the universally unique identifier (UUID) of the filesystem to
659 .IR UUID .
660 The format of the UUID is a series of hex digits separated by hyphens, 
661 like this: 
662 "c1b9d5a2-f162-11cf-9ece-0020afc76f16".  
663 The 
664 .I UUID
665 parameter may also be one of the following:
666 .RS 1.2i
667 .TP
668 .I clear
669 clear the filesystem UUID
670 .TP
671 .I random
672 generate a new randomly-generated UUID
673 .TP
674 .I time
675 generate a new time-based UUID
676 .RE
677 .IP
678 The UUID may be used by
679 .BR mount (8),
680 .BR fsck (8),
681 and
682 .BR /etc/fstab (5)
683 (and possibly others) by specifying
684 .BI UUID= uuid
685 instead of a block special device name like
686 .BR /dev/hda1 .
687 .IP
688 See
689 .BR uuidgen (8)
690 for more information.
691 If the system does not have a good random number generator such as
692 .I /dev/random
693 or
694 .IR /dev/urandom ,
695 .B tune2fs
696 will automatically use a time-based UUID instead of a randomly-generated UUID.
697 .TP
698 .BI \-z " undo_file"
699 Before overwriting a file system block, write the old contents of the block to
700 an undo file.  This undo file can be used with e2undo(8) to restore the old
701 contents of the file system should something go wrong.  If the empty string is
702 passed as the undo_file argument, the undo file will be written to a file named
703 tune2fs-\fIdevice\fR.e2undo in the directory specified via the
704 \fIE2FSPROGS_UNDO_DIR\fR environment variable.
705
706 WARNING: The undo file cannot be used to recover from a power or system crash.
707 .SH BUGS
708 We haven't found any bugs yet.  That doesn't mean there aren't any...
709 .SH AUTHOR
710 .B tune2fs 
711 was written by Remy Card <Remy.Card@linux.org>.  It is currently being
712 maintained by Theodore Ts'o <tytso@alum.mit.edu>.
713 .B tune2fs
714 uses the ext2fs library written by Theodore Ts'o <tytso@mit.edu>.
715 This manual page was written by Christian Kuhtz <chk@data-hh.Hanse.DE>.
716 Time-dependent checking was added by Uwe Ohse <uwe@tirka.gun.de>.
717 .SH AVAILABILITY
718 .B tune2fs
719 is part of the e2fsprogs package and is available from 
720 http://e2fsprogs.sourceforge.net.
721 .SH SEE ALSO
722 .BR debugfs (8),
723 .BR dumpe2fs (8),
724 .BR e2fsck (8),
725 .BR mke2fs (8),
726 .BR ext4 (5)