2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Ubuntuでパソコンを閉じての画面オフからの復帰でタッチパッドが無効化される問題

Last updated at Posted at 2019-05-02

###画面オフからの復帰時にタッチパッドの入力が無効化される問題
筆者はThinkPad上でUbuntu18.04を使用していますが、パソコンを閉じての画面オフから復帰する際にタッチパッドが無効化されて反応しなくなることがあります。
再起動や再ログインすれば治るのですが毎回それでは大変です。

  • キーボードの入力は受け付けるものとします

###解決策
Ctrl + Alt + tの同時押しでターミナルを開きます。

$ xinput

xinputとだけコマンドを実行すると現在の入力のデバイス一覧が表示されます。
自分の場合はこんな感じに表示されました。

Screenshot from 2019-05-02 16-19-38.png
id=9のようにそれぞれにid番号が割り当てられているのが確認できます。
そのなかから目的の入力デバイスであろうものを探し以下のコマンドを実行します。

$ xinput enable (id番号)

再び入力ができるようになります。
自分の場合はid=9の Wacom Pen and multitouch sensor Finger touchをenableにすると治りました。

(注) 一度disableにしてからenableにしないとうまくいかないことがあります。

###補足
xinputについての使い方のヘルプは

$ xinput --help
2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?