web-dev-qa-db-ja.com

`gparted`でパーティションを拡張した後の` ext4lazyinit`

大きな(現在は2 TiB)を拡張しましたext4-gpartedを使用して、左側の通常のHDDのパーティション。完了するまでに5時間かかりましたが、うまくいきました。ここで、ファイルシステムをマウントした後、ext4lazyinitはバックグラウンドで実行されており、その特定のHDDに4〜6KiBの速度で書き込みます。何してるの?インターネットは言う、ext4lazyinit何かをゼロにします。データについて心配する必要がありますか?

2
LukeLR

Gpartedは、新しいext4スペースのより高速な「レイジー」フォーマットを実行したに違いありません。マウントすると、作業が終了します。 mke2fsのこれらのオプションは次のことを説明する必要があります。

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.
2
Xen2050