ディスクが多い場合にefsckを実行する短い方法

ディスクが多い場合にefsckを実行する短い方法

すべてのディスクでe2fsck(redhat linux - 7.2)を実行する必要があります。各マシンには22個のディスク(ext4ファイルシステム)があるため、e2fsckを実行するときにマウントポイントフォルダをアンマウントしてからディスクでe2fsckを使用する必要があることを私たち全員が知っているので、各ディスクでこれを行うのに時間がかかります。 。例:

umount /grid/sdb
fsck /dev/sdb
mount /grid/sdb

しかし、このオプションがより速くなることがわかりました。 fstab を使用してこれを行い、6 番目のフィールドを 0 から 1 に変更してからコンピュータを再起動できます。

私が理解したように、すべてのディスクは起動中に自動的に2fsckを実行します。私はここにいますか?/etc/fstab例:

~から

UUID=6f8debb3-aac9-4dfb-877f-463f5132d055 /grid/sdb ext4 defaults,noatime 0 0
UUID=203c24b2-8c07-4a9a-b4e0-1848ac5570d6 /grid/sdc ext4 defaults,noatime 0 0
UUID=941546ac-2168-4130-b51f-f5a255a4e43c /grid/sdd ext4 defaults,noatime 0 0

到着

UUID=6f8debb3-aac9-4dfb-877f-463f5132d055 /grid/sdb ext4 defaults,noatime 1 0
UUID=203c24b2-8c07-4a9a-b4e0-1848ac5570d6 /grid/sdc ext4 defaults,noatime 1 0
UUID=941546ac-2168-4130-b51f-f5a255a4e43c /grid/sdd ext4 defaults,noatime 1 0

fstab(5) のマニュアルページから:

   The sixth field (fs_passno).
          This field is used by the fsck(8) program to determine the order
          in which filesystem checks are done at reboot  time.   The  root
          filesystem  should be specified with a fs_passno of 1, and other
          filesystems should have a fs_passno of 2.  Filesystems within  a
          drive will be checked sequentially, but filesystems on different
          drives will be checked at the same time to  utilize  parallelism
          available in the hardware.  If the sixth field is not present or
          zero, a value of zero is returned and fsck will assume that  the
          filesystem does not need to be checked.

ベストアンサー1

これはほぼ正確です。パス番号2を使用し(ルートファイルシステムではないため)、6番目のフィールドでなければなりません。

UUID=6f8debb3-aac9-4dfb-877f-463f5132d055 /grid/sdb ext4 defaults,noatime 0 2
UUID=203c24b2-8c07-4a9a-b4e0-1848ac5570d6 /grid/sdc ext4 defaults,noatime 0 2
UUID=941546ac-2168-4130-b51f-f5a255a4e43c /grid/sdd ext4 defaults,noatime 0 2

|<-------------- field 1 -------------->| |<- 2 ->| |<>| |<- field 4 -->| ^ ^
                                                     ^                    | |
                                            field 3 -+           field 5 -+ |
                                                                   field 6 -+

おすすめ記事