FSCK.MINIX(8) | Administración del sistema | FSCK.MINIX(8) |
NOMBRE¶
fsck.minix - check consistency of Minix filesystem
SINOPSIS¶
fsck.minix [opciones] dispositivo
DESCRIPCIÓN¶
fsck.minix realiza una comprobación de consistencia para el sistema de ficheros MINIX de Linux.
The program assumes the filesystem is quiescent. fsck.minix should not be used on a mounted device unless you can be sure nobody is writing to it. Remember that the kernel can write to device when it searches for files.
The device name will usually have the following form:
/dev/hda[1-63] | IDE disk 1 |
/dev/hdb[1-63] | IDE disk 2 |
/dev/sda[1-15] | SCSI disk 1 |
/dev/sdb[1-15] | SCSI disk 2 |
If the filesystem was changed, i.e., repaired, then fsck.minix will print "FILE SYSTEM HAS BEEN CHANGED" and will sync(2) three times before exiting. There is no need to reboot after check.
AVISO¶
fsck.minix should not be used on a mounted filesystem. Using fsck.minix on a mounted filesystem is very dangerous, due to the possibility that deleted files are still in use, and can seriously damage a perfectly good filesystem! If you absolutely have to run fsck.minix on a mounted filesystem, such as the root filesystem, make sure nothing is writing to the disk, and that no files are "zombies" waiting for deletion.
OPCIONES¶
-l, --list
-r, --repair
-a, --auto
-v, --verbose
-s, --super
-m, --uncleared
-f, --force
-h, --help
-V, --version
DIAGNÓSTICOS¶
Hay numerosos mensajes de diagnóstico. Los mencionados aquí son los más comúnmente vistos en el uso normal.
Si el dispositivo no existe, fsck.minix mostrará "unable to read super block" ("incapaz de leer el súper-bloque"). Si el dispositivo existe pero no es un sistema de ficheros MINIX, fsck.minix imprimirá "bad magic number in super-block" ("mal numéro mágico en el súper-bloque").
ESTADO DE SALIDA¶
El código de salida devuelto por fsck.minix es la suma de los siguientes:
0
3
4
7
8
16
AUTORES¶
Linus Torvalds <torvalds@cs.helsinki.fi>. Exit status values by Rik Faith <faith@cs.unc.edu> Added support for filesystem valid flag: Dr. Wettstein <greg%wind.uucp@plains.nodak.edu>. Check to prevent fsck of mounted filesystem added by Daniel Quinlan <quinlan@yggdrasil.com>. Minix v2 fs support by Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>, updated by Nicolai Langfeldt <janl@math.uio.no>. Portability patch by Russell King <rmk@ecs.soton.ac.uk>.
VÉASE TAMBIÉN¶
fsck(8), fsck.ext2(8), mkfs(8), mkfs.ext2(8), mkfs.minix(8), reboot(8)
INFORMAR DE ERRORES¶
For bug reports, use the issue tracker at <https://github.com/util-linux/util-linux/issues>.
DISPONIBILIDAD¶
La orden fsck.minix forma parte del paquete util-linux, el cual puededescargarse de Linux Kernel Archive <https://www.kernel.org/pub/linux/utils/util-linux/>.
2024-03-27 | util-linux 2.39.3 |