Hard Drive Active Protection System
ハードディスクアクティブプロテクションシステム (Hard Drive Active Protection System, HDAPS) はハードドライブを突然の衝撃から保護します (ノートパソコンを机から落としたりバンバン叩いたりするなど)。ディスクのヘッドを停止することで、衝撃によってドライブのプラッタにぶつからないようにすることで保護します。これによって致命的な問題が発生するのを防ぎます。
目次
衝撃検出
ハードウェアが何らかの衝撃検出をサポートしている必要があります。ノートパソコンのマザーボードに加速度計などが搭載されていれば OK です。ハードウェアが検出に対応していたら、次に、ハードウェアが検出したものをオペレーティングシステムに伝える手段が必要になります。このセクションでは加速度計の状態を OS に伝えるドライバーについて説明します。ドライバーを使うことによって衝撃を検出して保護することが可能です。
tp_smapi
tp_smapi は ThinkPad ノートパソコンのドライバーのセットです。サポートされている ThinkPad を使っている場合、たとえ HDAPS を使う予定がなくても、ドライバーをインストールすることを強く推奨します。たくさんある便利なことの一つとして、tp_smapi は加速度計の出力をジョイスティックデバイス /dev/input/js#
として表します。
tp_smapi を community リポジトリからインストールしてください。インストール後、tp_smapi
を /etc/modules-load.d/tp_smapi.conf
ファイルに追加します (systemd を使っている場合)。再起動後、ドライバーが有効になって、/sys/devices/platform/smapi
ファイルシステムで確認できます。
カーネルには HDAPS ドライバーが初めから組み込まれています。以前は、デフォルトのドライバーがロードされないように /etc/rc.local
から手動でモジュールを insmod
する必要がありました。community の tp_smapi パッケージは hdaps.ko
を /lib/modules/$(uname -r)/updates にインストールするため、内蔵のモジュールよりも優先して使われます。そのため、MODULES
に hdaps
を追加することが可能です。
Invert モジュールパラメータ
ThinkPad の中には、X・Y 回転軸を正しく扱うために invert モジュールパラメータを設定する必要があるものがあります。そのような場合、/etc/modprobe.d/modprobe.conf
にオプションを追加します:
options hdaps invert=1
invert=1
は ThinkPad T410 で使用する値です。invert オプションには以下の値を設定できます:
- invert=1 invert both X and Y axes;
- invert=2 invert the X axes (uninvert if already both axes inverted)
- invert=4 swap X and Y (takes place before inverting)
Note that options can be summed. For instance, invert=5 swaps the axes and inverts them. The maximum value of invert is obviously 7. If you do not know which option is correct for you, just try them out with hdaps-gl or some other GUI (see below). Alternatively, you can determine the exact value for your thinkpad model from this table under the column labelled "HDAPS axis orientation".
As an alternative to reloading the hdaps
module, the invert
value can also be written directly to /sys/devices/platform/hdaps/invert
.
衝撃保護
ハードウェアが検出した衝撃を OS に報告するようになったら、データを使って何かをする必要があります。このセクションではセンサーの出力を衝撃の保護に変えるソフトウェアユーティリティを説明します。
hdapsd
hdapsd は HDAPS ジョイスティックデバイスの出力を監視して衝撃が起こりそうなのを確認して、カーネルにディスクのヘッドを停止するように命令します。
hdaps の設定を変更したときは SMART の "Load cycle count" をチェックするようにしてください。感度が高すぎてヘッドが頻繁に停止し、ロードサイクルカウントが跳ね上がることがあります。
hdapsd をインストールしてください。hdapsd.service
を使って hdapsd デーモンを起動できます。
You can adjust the parameters, with which hdapsd is run by providing your own unit file as explained in the systemd article, for example the following file will adjust sensitivity and logging behaviour of the hdaps daemon:
/etc/systemd/system/hdapsd.service.d/sensitivity.conf
[Service] ExecStart= ExecStart=/usr/bin/hdapsd --sensitivity=40 -blp
And reload the configuration.
GUI ユーティリティ
Utilities exist to monitor hdapsd's status so you know what is going on while you are using your laptop. These are entirely optional, but very handy.
gnome-hdaps-applet
This is a GNOME panel applet (Note: XFCE can use GNOME panel applets) that represents the current status of your hard drive. The package is available in AUR: gnome-hdaps-appletAUR. If you do not want to monitor sda or hda by default, edit the PKGBUILD before compiling.
kdeplasma-applets-hdaps-monitor
For KDE4 there is a plasmoid for HDAPS monitoring HDAPS monitor. The package kdeplasma-applets-hdaps-monitorAUR is available in AUR.
xfce4-hdaps
ハードドライブの現在の状態を表示する Xfce4 のパネルアプレットです。AUR からインストールできます: xfce4-hdapsAUR。インストールしたら、アプレットをパネルに追加してください。
HDAPSicon
HDAPSicon (旧名 thinkhdaps)、HDAPS のディスク保護状態を表示するスタンドアロンの GTK アプレットです。通知エリアにアプレットアイコンが表示されます。AUR からインストールできます: hdapsicon-gitAUR。
hdaps-gl
Simple OpenGL application showing the 3D animation of your Thinkpad. Similar to the apllication Lenovo distributes with Windows. hdaps-glAUR is available in AUR.