Como desativar o fsck automático e forçado em discos em uma invasão de software do Linux?

1

Esta é a entrada / etc / fstab de um sistema raid / dev / md4 que é controlado com mdadm e webmin em um servidor do Ubuntu 10.04 64:

/dev/md4                                  /mnt/md4        ext3    relatime        0       0

Nós tentamos desativar o fsck forçado automático nos testes, já que preferimos implementar nossa própria rotina de fsck programada, definindo o último parâmetro da linha como 0 (ZERO).

Mas descobrimos que a verificação forçada e automática ainda ocorre nos discos reais subjacentes, digamos sdb1 e sdc1.

Como podemos desligar isso?

    
por mit 22.12.2010 / 16:44

1 resposta

3

Veja a página do manual de tune2fs :

-c max-mount-counts
    Adjust the number of mounts after which the filesystem will be checked
    by e2fsck(8).  If max-mount-counts is 0 or -1, the number of times the
    filesystem is mounted will be disregarded by e2fsck(8) and the kernel.

-i  interval-between-checks[d|m|w]
    Adjust the maximal time between two filesystem checks.  No postfix or d
    result in days, m in months, and w in weeks.  A value of zero will
    disable the time-dependent checking.

Então tune2fs -c 0 -i 0 /dev/sdx1

    
por 22.12.2010 / 16:49