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