「Bluetooth マウス」の版間の差分

提供: ArchWiki
ナビゲーションに移動 検索に移動
(ページの作成:「Category:マウス Category:Bluetooth cs:Bluetooth Mouse en:Bluetooth mouse ru:Bluetooth mouse {{Related articles start}} {{Related|Bluetooth}} {{Rela...」)
 
 
(2人の利用者による、間の8版が非表示)
1行目: 1行目:
 
[[Category:マウス]]
 
[[Category:マウス]]
 
[[Category:Bluetooth]]
 
[[Category:Bluetooth]]
[[cs:Bluetooth Mouse]]
+
[[cs:Bluetooth mouse]]
 
[[en:Bluetooth mouse]]
 
[[en:Bluetooth mouse]]
 
[[ru:Bluetooth mouse]]
 
[[ru:Bluetooth mouse]]
9行目: 9行目:
 
{{Related|マウスのポーリングレート}}
 
{{Related|マウスのポーリングレート}}
 
{{Related articles end}}
 
{{Related articles end}}
  +
この記事では、 Bluetooth マウスに固有の構成とトラブルシューティングの手順について説明します。 ここでの情報は、メインの [[Bluetooth]] 記事に基づいており、ユーザーがその記事のインストール、構成、またはトラブルシューティングをすでに実行していることを前提としています。
   
  +
== 設定 ==
この記事ではグラフィカルなアプリケーションを使わずに、コマンドラインで [[Bluetooth]] マウスを設定する方法を説明します。
 
   
== インール ==
+
=== Apple MagicMouse のクロール速度 ===
   
  +
スクロール速度が遅すぎる場合は、次を試してみて下さい。
最新の Linux bluetooth スタック (Bluez5) が含まれている {{Pkg|bluez}} パッケージをインストールしてください。また、''bluetoothctl'' ユーティリティが含まれている {{Pkg|bluez-utils}} もインストールすると良いでしょう。詳しくは [[Bluetooth]] を見て下さい。
 
   
  +
# modprobe -r hid_magicmouse
昔の Bluez4 スタックで bluetooth を設定したい場合は [[AUR]] から {{Aur|bluez4}} パッケージをインストールしてください。詳細は [[Bluez4]] の記事を見て下さい。
 
  +
# modprobe hid_magicmouse scroll_acceleration=1 scroll_speed=55
   
  +
スクロール速度は0から63まで設定できます。
{{Warning|Bluez4 は開発が停止しています。Bluez5 を使うことを強く推奨します。}}
 
   
  +
速度が適切な場合は、 {{ic|/etc/modprobe.d/}} で変更を永続的にすることができます
== Bluez5 の手順 ==
 
   
  +
{{hc |/etc/modprobe.d/hid_magicmouse.conf|2=
{{Tip|続行する前に bluetooth デーモンが起動していることを確認してください。}}
 
  +
options hid_magicmouse scroll_acceleration=1 scroll_speed=55
  +
}}
   
  +
=== Apple MagicMouse のミドルクリック===
Bluez5 には bluetooth デバイスの設定を行うためのシンプルなインターフェイスである ''bluetoothctl'' ユーティリティが備わっています。
 
   
  +
ミドルクリックが機能しない場合、無効にすることができます
以下は ''bluetoothctl'' を使って bluetooth マウスに接続する例です:
 
   
  +
# modprobe -r hid_magicmouse
# bluetoothctl
 
  +
# modprobe hid_magicmouse emulate_3button=0
[bluetooth]# list
 
Controller <controller mac> BlueZ 5.5 [default]
 
[bluetooth]# select <controller mac>
 
[bluetooth]# power on
 
[bluetooth]# scan on
 
[bluetooth]# agent on
 
[bluetooth]# devices
 
Device <mouse mac> Name: Bluetooth Mouse
 
[bluetooth]# pair <mouse mac>
 
[bluetooth]# trust <mouse mac>
 
[bluetooth]# connect <mouse mac>
 
   
  +
この設定が適切な場合は、{{ic|/etc/modprobe.d/}} で永続的に変更を加えることができます。
起動時にデバイスをスタートさせたいときは [[udev]] ルールを作成する必要があります。詳しくは [[Bluetooth#Bluetoothctl]] を見て下さい。
 
   
  +
{{hc |/etc/modprobe.d/hid_magicmouse.conf|2=
== Bluez4 の手順 ==
 
  +
options hid_magicmouse emulate_3button=0
  +
}}
   
=== カーネモジュ ===
+
=== マウスのペアリングとデュア ===
   
  +
Windows と Linux をデュアルブートする場合、 Bluetooth マウスを何度も再ペアリングする必要がある場合があります。これは、 OS を切り替えるたびに発生します。これは、デバイスをペアリングすると、 Bluetooth サービスが一意のペアリングキーのセットを生成するためです。そして、主な理由は、ペアリングキーのセットを2つの OS 間で共有できないことです。
No additional actions are necessary if the bluetooth service is started using systemd. If it does not work try the following command:
 
   
  +
まず、コンピュータに Bluetooth デバイスの MAC アドレスとペアリングキーが保存されます。次に、 Bluetooth デバイスはコンピュータの MAC アドレスと一致するキーを保存します。これは通常は正常に機能しますが、 Bluetooth ポートの MAC アドレスは Linux と Windows の両方で同じになります(ハードウェアレベルで設定されます)。ただし、 Windows または Linux でデバイスを再ペアリングすると、新しいキーが生成されます。そのキーは、 Bluetooth デバイスに以前に保存されたキーを上書きします。 Windows は Linux キーを上書きし、その逆も同様です。
# modprobe -v btusb bluetooth hidp l2cap
 
   
  +
この問題を解決するには、こちらを参照 [https://unix.stackexchange.com/questions/255509/bluetooth-pairing-on-dual-boot-of-windows-linux-mint-ubuntu-stop-having-to-p]。
It loads the kernel modules you need, if they were not loaded automatically.
 
   
  +
Bluetooth LE デバイスを使用している場合は、[https://gist.github.com/5shekel/8b4998a69903438a6aac2f01a44463d3 こちら] python スクリプトを使用した例は [https://unix.stackexchange.com/a/413831 こちら] これは、arch に合わせて少し編集されています
=== テスト ===
 
   
  +
== トラブルシューティング ==
The following command should show your bluetooth adapter:
 
   
  +
=== マウスの遅延 ===
{{hc|# hciconfig|
 
hci0: Type: BR/EDR Bus: USB
 
BD Address: 00:22:43:E1:82:E0 ACL MTU: 1021:8 SCO MTU: 64:1
 
UP RUNNING PSCAN
 
RX bytes:1062273 acl:62061 sco:0 events:778 errors:0
 
TX bytes:1825 acl:11 sco:0 commands:39 errors:0
 
}}
 
   
  +
マウスの遅延が発生した場合は、ポーリングレートを上げることができます。詳細については、[[マウスのポーリングレート]] を参照してください。
=== bluetooth マウスの設定 ===
 
   
  +
BlueZ でマウスの最小/最大遅延を設定してみることができます [https://bbs.archlinux.org/viewtopic.php?pid=1860951#p1860951]:
The method described here is based in three steps, in this order:
 
   
  +
{{ic|/var/lib/bluetooth/''mac-of-your-adapter''/''mac-of-your-mouse''/info}} の次のセクションを追加または変更します(それに応じてパスを調整します)::
# Make the PC learn about the bluetooth mouse.
 
# Grant the mouse permissions to connect.
 
# Make the mouse learn about the PC.
 
   
  +
[ConnectionParameters]
=== マウスの検索 ===
 
  +
MinInterval=6
  +
MaxInterval=9
  +
Latency=44
  +
Timeout=216
   
  +
また、{{ic|hcitool}} ({{aur|bluez-hcitool}}) を使用して、デバイスの遅延パラメーターを変更することもできます。
First make your mouse discoverable. For example some mouse need to press a button. Then issue the following command:
 
   
  +
# HANDLE="$(hcitool con | grep '<Bluetooth マウス MAC アドレス>' | awk '{print $5}')" # get the device handle
{{hc|# hcitool scan|
 
  +
# hcitool lecup --handle $HANDLE --latency 0 --min 6 --max 8
Scanning ...
 
00:07:61:F5:5C:3D Logitech Bluetooth Mouse M555b
 
}}
 
   
  +
この方法は、現在の接続に対してのみ有効であることに注意してください。マウスが切断された場合は、再度実行する必要があります。
Your mouse bluetooth mac address will be similar to {{ic|12:34:56:78:9A:BC}}. You may also find it in the documentation or on the mouse itself.
 
   
  +
または、debugfs を使用してデフォルトのレイテンシ設定を変更することもできます。 {{ic|/sys/kernel/debug/bluetooth/hci0/conn_{latency,{min,max}_interval} }} を参照してください。
=== マウスの接続 ===
 
   
  +
この例ではラグの問題を解決しますが、マウスのペアリングを解除してペアリングする必要があります。
To scan the device (you may need to use {{ic|su -c}} or {{ic|sudo}}):
 
   
  +
# echo 0 > /sys/kernel/debug/bluetooth/hci0/conn_latency
hidd --search
 
  +
# echo 6 > /sys/kernel/debug/bluetooth/hci0/conn_min_interval
hcitool inq
 
  +
# echo 7 > /sys/kernel/debug/bluetooth/hci0/conn_max_interval
   
  +
=== USB ドングルの問題===
To connect the device:
 
   
  +
USB ドングルに問題がある場合は、次のことも試してみてください。
hidd --connect <bdaddr>
 
   
  +
# modprobe -v rfcomm
To show your currently connected devices:
 
   
  +
この時点で、次の hci0 デバイスを入手する必要があります。
hidd --show
 
The mouse should show up in this list. If it does not, press the reset button to make it discoverable.
 
   
  +
# hcitool dev
{{Note|If you have the ipw3945 module loaded (wifi on HP computer) bluetooth would not work.}}
 
   
  +
デバイスがすぐにアクティブにならない場合があります。次のコマンドでインターフェースを開始してみてください。
==== 起動時にマウスと接続 ====
 
   
  +
# hciconfig hci0 up
Edit {{ic|/etc/conf.d/bluetooth}}:
 
   
  +
上記のようにデバイスを検索します。
# Arguments to hidd
 
HIDD_OPTIONS="--connect <enter here your bluetooth mouse mac address>"
 
   
  +
=== マウスが切断される ===
and test the new settings:
 
   
  +
Bluetooth を再起動した後、マウスが機能しなくなっても再び機能する場合は、選択したデバイスに対して [https://wiki.archlinux.jp/index.php/%E9%9B%BB%E6%BA%90%E7%AE%A1%E7%90%86#USB_.E3.81.AE.E8.87.AA.E5.8B.95.E3.82.B5.E3.82.B9.E3.83.9A.E3.83.B3.E3.83.89 USB の自動サスペンドを無効にする] 必要がある場合があります。
/etc/rc.d/bluetooth stop
 
hidd --killall #(drop mouse connection)
 
/etc/rc.d/bluetooth start
 
   
  +
この問題は、デバイスのタイムアウトと HID 設定にもある可能性があります。 [[#ThinkpadBluetooth レーザーマウスの問題]] を参照してください。
{{Note|The above instructions to start the mouse at startup do not work with the now outdated 3.11 bluetooth packages. New versions such as the current (3.32) packages are not affected.}}
 
   
  +
Logitech デバイスを使用している場合、この問題は [[#Logitech BLE マウス (M557、M590、anywhere mouse 2 など) の問題]] の手順に従って解決される場合があります。
If you are using an older version, then to start the mouse at startup, add:
 
   
  +
=== ThinkpadBluetooth レーザーマウスの問題===
hidd --connect <enter here your bluetooth mouse address (No capitals!!!)>
 
   
  +
Thinkpad Bluetooth レーザーマウスが接続された後、数秒ごとに (マウスを動かすかボタンを押すと) 再び切断される場合は、コード {{ic|0000}} とペアリングしてみてください。
to your {{ic|/etc/rc.local file}}.
 
   
  +
上記がうまく機能しない場合は、デバイスのタイムアウト設定に問題がある可能性があります。ファイル {{ic|/etc/bluetooth/input.conf}} を編集/作成し、次の変更を適用します。
{{Note|You can connect any bluetooth mouse and/or keyboard without any further configuration and without knowing the device address. You can do it by adding the --master and/or --server option in HIDD_OPTIONS depending on your device.}}
 
   
  +
# Configuration file for the input service
== トラブルシューティング ==
 
  +
# This section contains options which are not specific to any
  +
# particular interface
  +
[General]
  +
  +
# Set idle timeout (in minutes) before the connection will
  +
# be disconnect (defaults to 0 for no timeout)
  +
IdleTimeout=0
  +
  +
#Enable HID protocol handling in userspace input profile
  +
#Defaults to false(hidp handled in hidp kernel module)
  +
UserspaceHID=true
   
  +
これらの変更により、接続を維持するためのデバイスのタイムアウトが防止されます。 2番目の設定は、 Bluetooth デバイスのユーザースペース HID 処理を有効にします。 {{ic|bluetooth.service}} を再起動して、変更をテストします。また、再起動してデバイスを再ペアリングする必要がある場合もあります。
=== マウスに遅延が発生する ===
 
   
  +
=== Kensington Expert Wireless Trackball の問題 ===
マウスにラグが発生する場合はポーリングレートを上げてみてください。詳しくは[[マウスのポーリングレート]]を参照。
 
   
  +
Kensington Expert Wireless Trackball のデフォルトのポーリングレートは200ミリ秒の範囲であるため、遅延が発生します。これを修正するには、{{ic|[ConnectionParameters]}} セクションの {{ic|/var/lib/bluetooth/''mac-of-your-adapter''/''mac-of-your-mouse''/info}} (マウスの Bluetooth アドレスに応じてパスを調整します) 待ち時間を少数または {{ic|0}} に下げます。
=== USB ドングルの問題 ===
 
   
  +
=== Logitech BLE マウス (M557、M590、anywhere mouse 2 など) の問題 ===
If you have trouble with your USB dongle, you may also want to try:
 
   
  +
マウスがペアリングされていても、機能しない場合。デバイスが、信頼され、ブロックが解除されるように追加します。
# modprobe -v rfcomm
 
  +
まず、ターミナルを開いて {{ic|bluetoothctl}} を実行します。
   
  +
#Bluetooth の電源を切る:{{bc|[bluetooth] # power off}}
At this point, you should get an hci0 device with:
 
  +
#Bluetooth の電源を入れ、必要に応じてマウスでペアリング方法を有効にします。 {{bc|[bluetooth] # power on}}
  +
#使用可能な Bluetooth デバイスを一覧表示します。マウスデバイスID '' XX:XX:XX:XX:XX:XX ''をコピーする必要があります:{{bc|[bluetooth] # scan on}}
  +
#すでにペアリングされている場合は、デバイスのペアリングを解除します:{{bc | [bluetooth] # ''XX:XX:XX:XX:XX:XX''}} を削除します
  +
#デバイスをペアリングモードにします(通常、ボタンを長押しするか、一部のキーボードではキーの組み合わせを使用します)。スキャンで検出して表示します。デバイス ID が(わずかに)変更されている可能性があることに注意してください。スキャンで示されたデバイス ID をコピーしてください。
  +
# '''信頼''' デバイス:{{bc|[bluetooth] # trust ''XX:XX:XX:XX:XX:XX''}}
  +
#マウスをコンピューターとペアリングします:{{bc|[bluetooth] # pair ''XX:XX:XX:XX:XX:XX''}}
  +
#コンピュータをマウスで接続します:{{bc|[bluetooth] # connect ''XX:XX:XX:XX:XX:XX''}}
  +
# '''ブロック解除''' デバイスコントロール:{{bc|[M585 / M590] # unblock}}
  +
#Bluetooth の電源をオフにしてからオンにします。
   
  +
マウスが直接機能しない場合は、マウスの電源をオフにしてからオンにします。
# hcitool dev
 
   
  +
=== カーネル5.9+上のすべての BLE マウスの問題 ===
Sometimes the device is not active right away. Try starting the interface with:
 
   
  +
[https://wiki.archlinux.jp/index.php/Bluetooth#.E3.82.AB.E3.83.BC.E3.83.8D.E3.83.AB_5.9_.E4.BB.A5.E9.99.8D.E3.81.AE.E3.81.99.E3.81.B9.E3.81.A6.E3.81.AE_BLE_.E3.83.87.E3.83.90.E3.82.A4.E3.82.B9.E3.81.AE.E5.95.8F.E9.A1.8C カーネル 5.9 以降のすべての BLE デバイスの問題] を参照してください。
# hciconfig hci0 up
 
  +
  +
== 参照 ==
   
  +
* [https://git.kernel.org/pub/scm/bluetooth/bluez.git/tree/doc/settings-storage.txt BlueZ settings storage]
and searching for devices as shown above.
 

2021年4月9日 (金) 14:55時点における最新版

関連記事

この記事では、 Bluetooth マウスに固有の構成とトラブルシューティングの手順について説明します。 ここでの情報は、メインの Bluetooth 記事に基づいており、ユーザーがその記事のインストール、構成、またはトラブルシューティングをすでに実行していることを前提としています。

設定

Apple MagicMouse のスクロール速度

スクロール速度が遅すぎる場合は、次を試してみて下さい。

# modprobe -r hid_magicmouse
# modprobe hid_magicmouse scroll_acceleration=1 scroll_speed=55

スクロール速度は0から63まで設定できます。

速度が適切な場合は、 /etc/modprobe.d/ で変更を永続的にすることができます

/etc/modprobe.d/hid_magicmouse.conf
options hid_magicmouse scroll_acceleration=1 scroll_speed=55

Apple MagicMouse のミドルクリック

ミドルクリックが機能しない場合、無効にすることができます

# modprobe -r hid_magicmouse
# modprobe hid_magicmouse emulate_3button=0

この設定が適切な場合は、/etc/modprobe.d/ で永続的に変更を加えることができます。

/etc/modprobe.d/hid_magicmouse.conf
options hid_magicmouse emulate_3button=0

マウスのペアリングとデュアルブート

Windows と Linux をデュアルブートする場合、 Bluetooth マウスを何度も再ペアリングする必要がある場合があります。これは、 OS を切り替えるたびに発生します。これは、デバイスをペアリングすると、 Bluetooth サービスが一意のペアリングキーのセットを生成するためです。そして、主な理由は、ペアリングキーのセットを2つの OS 間で共有できないことです。

まず、コンピュータに Bluetooth デバイスの MAC アドレスとペアリングキーが保存されます。次に、 Bluetooth デバイスはコンピュータの MAC アドレスと一致するキーを保存します。これは通常は正常に機能しますが、 Bluetooth ポートの MAC アドレスは Linux と Windows の両方で同じになります(ハードウェアレベルで設定されます)。ただし、 Windows または Linux でデバイスを再ペアリングすると、新しいキーが生成されます。そのキーは、 Bluetooth デバイスに以前に保存されたキーを上書きします。 Windows は Linux キーを上書きし、その逆も同様です。

この問題を解決するには、こちらを参照 [1]

Bluetooth LE デバイスを使用している場合は、こちら python スクリプトを使用した例は こちら これは、arch に合わせて少し編集されています

トラブルシューティング

マウスの遅延

マウスの遅延が発生した場合は、ポーリングレートを上げることができます。詳細については、マウスのポーリングレート を参照してください。

BlueZ でマウスの最小/最大遅延を設定してみることができます [2]:

/var/lib/bluetooth/mac-of-your-adapter/mac-of-your-mouse/info の次のセクションを追加または変更します(それに応じてパスを調整します)::

[ConnectionParameters]
MinInterval=6
MaxInterval=9
Latency=44
Timeout=216

また、hcitool (bluez-hcitoolAUR) を使用して、デバイスの遅延パラメーターを変更することもできます。

# HANDLE="$(hcitool con | grep '<Bluetooth マウス MAC アドレス>' | awk '{print $5}')"  # get the device handle
# hcitool lecup --handle $HANDLE --latency 0 --min 6 --max 8

この方法は、現在の接続に対してのみ有効であることに注意してください。マウスが切断された場合は、再度実行する必要があります。

または、debugfs を使用してデフォルトのレイテンシ設定を変更することもできます。 /sys/kernel/debug/bluetooth/hci0/conn_{latency,{min,max}_interval} を参照してください。

この例ではラグの問題を解決しますが、マウスのペアリングを解除してペアリングする必要があります。

# echo 0 > /sys/kernel/debug/bluetooth/hci0/conn_latency
# echo 6 > /sys/kernel/debug/bluetooth/hci0/conn_min_interval
# echo 7 > /sys/kernel/debug/bluetooth/hci0/conn_max_interval

USB ドングルの問題

USB ドングルに問題がある場合は、次のことも試してみてください。

# modprobe -v rfcomm

この時点で、次の hci0 デバイスを入手する必要があります。

# hcitool dev

デバイスがすぐにアクティブにならない場合があります。次のコマンドでインターフェースを開始してみてください。

# hciconfig hci0 up

上記のようにデバイスを検索します。

マウスが切断される

Bluetooth を再起動した後、マウスが機能しなくなっても再び機能する場合は、選択したデバイスに対して USB の自動サスペンドを無効にする 必要がある場合があります。

この問題は、デバイスのタイムアウトと HID 設定にもある可能性があります。 #ThinkpadBluetooth レーザーマウスの問題 を参照してください。

Logitech デバイスを使用している場合、この問題は #Logitech BLE マウス (M557、M590、anywhere mouse 2 など) の問題 の手順に従って解決される場合があります。

ThinkpadBluetooth レーザーマウスの問題

Thinkpad Bluetooth レーザーマウスが接続された後、数秒ごとに (マウスを動かすかボタンを押すと) 再び切断される場合は、コード 0000 とペアリングしてみてください。

上記がうまく機能しない場合は、デバイスのタイムアウト設定に問題がある可能性があります。ファイル /etc/bluetooth/input.conf を編集/作成し、次の変更を適用します。

# Configuration file for the input service
# This section contains options which are not specific to any
# particular interface
[General]

# Set idle timeout (in minutes) before the connection will
# be disconnect (defaults to 0 for no timeout)
IdleTimeout=0

#Enable HID protocol handling in userspace input profile
#Defaults to false(hidp handled in hidp kernel module)
UserspaceHID=true

これらの変更により、接続を維持するためのデバイスのタイムアウトが防止されます。 2番目の設定は、 Bluetooth デバイスのユーザースペース HID 処理を有効にします。 bluetooth.service を再起動して、変更をテストします。また、再起動してデバイスを再ペアリングする必要がある場合もあります。

Kensington Expert Wireless Trackball の問題

Kensington Expert Wireless Trackball のデフォルトのポーリングレートは200ミリ秒の範囲であるため、遅延が発生します。これを修正するには、[ConnectionParameters] セクションの /var/lib/bluetooth/mac-of-your-adapter/mac-of-your-mouse/info (マウスの Bluetooth アドレスに応じてパスを調整します) 待ち時間を少数または 0 に下げます。

Logitech BLE マウス (M557、M590、anywhere mouse 2 など) の問題

マウスがペアリングされていても、機能しない場合。デバイスが、信頼され、ブロックが解除されるように追加します。 まず、ターミナルを開いて bluetoothctl を実行します。

  1. Bluetooth の電源を切る:
    [bluetooth] # power off
  2. Bluetooth の電源を入れ、必要に応じてマウスでペアリング方法を有効にします。
    [bluetooth] # power on
  3. 使用可能な Bluetooth デバイスを一覧表示します。マウスデバイスID XX:XX:XX:XX:XX:XX をコピーする必要があります:
    [bluetooth] # scan on
  4. すでにペアリングされている場合は、デバイスのペアリングを解除します:
     [bluetooth] # XX:XX:XX:XX:XX:XX
    を削除します
  5. デバイスをペアリングモードにします(通常、ボタンを長押しするか、一部のキーボードではキーの組み合わせを使用します)。スキャンで検出して表示します。デバイス ID が(わずかに)変更されている可能性があることに注意してください。スキャンで示されたデバイス ID をコピーしてください。
  6. 信頼 デバイス:
    [bluetooth] # trust XX:XX:XX:XX:XX:XX
  7. マウスをコンピューターとペアリングします:
    [bluetooth] # pair XX:XX:XX:XX:XX:XX
  8. コンピュータをマウスで接続します:
    [bluetooth] # connect XX:XX:XX:XX:XX:XX
  9. ブロック解除 デバイスコントロール:
    [M585 / M590] # unblock
  10. Bluetooth の電源をオフにしてからオンにします。

マウスが直接機能しない場合は、マウスの電源をオフにしてからオンにします。

カーネル5.9+上のすべての BLE マウスの問題

カーネル 5.9 以降のすべての BLE デバイスの問題 を参照してください。

参照