'ext4lazyinit' depois de estender a partição com 'gparted'

2

Acabei de estender uma grande (agora 2 TiB) ext4 de partição em um disco rígido normal para a esquerda, usando gparted . Demorou 5 horas para completar, mas correu bem. Agora, depois de montar o sistema de arquivos, ext4lazyinit está rodando em segundo plano, escrevendo naquele HDD específico com velocidades de 4-6 KiB. O que isso está fazendo? A Internet diz que ext4lazyinit zera algo. Eu tenho que me preocupar com meus dados?

    
por LukeLR 21.03.2018 / 02:58

1 resposta

2

O Gparted deve ter feito um formato "preguiçoso" mais rápido do novo espaço ext4, e agora, ao montar, está finalizando o trabalho. Essas opções de mke2fs devem explicar:

lazy_itable_init[= <0 to disable, 1 to enable>]
                      If  enabled  and  the  uninit_bg feature is enabled, the
                      inode table will not be  fully  initialized  by  mke2fs.
                      This speeds up filesystem initialization noticeably, but
                      it  requires  the  kernel  to  finish  initializing  the
                      filesystem  in  the  background  when  the filesystem is
                      first mounted.  If  the  option  value  is  omitted,  it
                      defaults to 1 to enable lazy inode table zeroing.

lazy_journal_init[= <0 to disable, 1 to enable>]
                      If  enabled,  the journal inode will not be fully zeroed
                      out by mke2fs.  This speeds up filesystem initialization
                      noticeably,  but  carries  some small risk if the system
                      crashes before the journal has been overwritten entirely
                      one  time.   If the option value is omitted, it defaults
                      to 1 to enable lazy journal inode zeroing.
    
por 21.03.2018 / 04:08