私はHFS +形式の外付けハードドライブと一緒にRaspberryを使用していますが、停電後に外付けハードドライブが読み取り専用モードでのみマウントされることがあります。この場合、読み書きモードで再マウントするために、次のコマンドを手動で実行しました。
sudo umount /dev/sda2
sudo fsck.hfsplus /dev/sda2
sudo mount -a
起動するたびにfsck.hfsplusを実行してから、/dev/sda2を自動的にマウントしたいと思います。
現在 /etc/fstab には次の設定があります。
/dev/sda2 /media hfsplus force,rw,uid=osmc,gid=osmc 0 0
外部ディスク(HFS +)をマウントする前にfsck.hfsplusを実行する最良の方法は何ですか?
ベストアンサー1
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
ユーティリティを使用してこれを実行できます。