HFS +でフォーマットされた外付けハードディスクでRaspberryを使用していますが、たとえば停電後、外付けハードディスクが読み取り専用モードでのみマウントされることがあります。この場合、次のコマンドを手動で実行して、読み取り/書き込みで再マウントします。
Sudo umount /dev/sda2 Sudo fsck.hfsplus /dev/sda2 Sudo mount -a
/ dev/sda2が自動的にマウントされる前に、起動時に毎回fsck.hfsplusを実行したい。
現在、/ etc/fstabに次の構成があります。
/dev/sda2 /media hfsplus force,rw,uid=osmc,gid=osmc 0 0
外部ディスク(HFS +)をマウントする前にfsck.hfsplusを実行する最良の方法はどれですか?
Linuxでの通常の方法は、fstab
行の最後の番号を_0
_から_2
_に変更することです。
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.
_
私はHFSを使用していませんが、突然の停電後、定期的にfsckを自動的に実行することを期待しています。毎回fsckを実行するように依頼する方法があるかもしれませんが、それが何であるかはわかりません。 ext *ファイルシステムの場合、これを行うには_tune2fs
_ユーティリティを使用します。