0
0

More than 3 years have passed since last update.

Raspberry PiのUbuntu 20.10でスリープ解除後にキーボード・マウスを認識しない不具合

Posted at

先日Raspberry Pi 4BでUbuntuをSSDブートする記事を書きましたが、数日使っていて、スリープ解除後、ログイン画面でキーボードやマウスを認識しないバグに遭遇したので、対処法をメモ。

症状

スリープ解除後、(ほぼ必ず)キーボード・マウスを認識しなくなる。SSHでログインしてsudo rebootもしくは強制的に電源を落として再起動すると復活する。
LogitechのUnifyingのせいかとも思ったが、普通のUSBキーボードも認識しなかった。

対処法

参考文献にある方法の通り、/etc/gdm3/custom.conf#WaylandEnable=falseWaylandEnable=falseにする(コメントアウトを外す)。

custom.conf(変更前)
# GDM configuration storage
#
# See /usr/share/gdm/gdm.schemas for a list of available options.

[daemon]
# Uncomment the line below to force the login screen to use Xorg
#WaylandEnable=false

(以下略)
custom.conf(変更後)
# GDM configuration storage
#
# See /usr/share/gdm/gdm.schemas for a list of available options.

[daemon]
# Uncomment the line below to force the login screen to use Xorg
WaylandEnable=false

(以下略)

そのうち直るといいですね。

参考文献

Problem with USB Keyboard and Mouse on Raspberry Pi 4B with Ubuntu 20.10
Ubuntu 20.10 Desktop on Pi4B - screen-freeze after idling at login-screen

0
0
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
0
0