0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Ubuntu 26.04 を Windows のような使用感にする設定まとめ

0
Last updated at Posted at 2026-05-02

Ubuntu 26.04 を Windows のような使用感にする

フタを閉じたらサスペンドする

設定ファイルを編集します。

sudo nano /etc/systemd/logind.conf

以下を設定します。

HandleLidSwitch=suspend
HandleLidSwitchExternalPower=suspend
HandleLidSwitchDocked=suspend
LidSwitchIgnoreInhibited=yes

設定反映:

sudo systemctl restart systemd-logind

電源ボタンを押したらサスペンドする

Ubuntu では systemd-logind が電源ボタン動作を管理しています。

設定ファイル:

sudo nano /etc/systemd/logind.conf

以下を追加または変更:

HandlePowerKey=suspend

設定反映:

sudo systemctl restart systemd-logind

電源管理設定

GNOME の「設定」→「電源」から、画面オフや省電力設定を調整できます。

image.png


キーボード設定

Windows ライクに使う場合、キーリピート速度や入力切替設定も調整しておくと快適です。

「設定」→「キーボード」から変更できます。

image.png

補足

機種によっては、カーネル側のバグや ACPI 実装の問題により、
HandleLidSwitch=suspendHandlePowerKey=suspend を設定しても
正常に反映されない場合があります。

特に Ubuntu の新しいバージョンでは、ハードウェア側との相性問題が残っていることがあります。

その場合は、設定ミスではなくカーネル側の問題である可能性が高いため、
カーネルアップデートを待つのが現実的です。


まとめ

Ubuntu は初期状態だとデスクトップ用途で少し癖がありますが、
電源周りを調整するだけでもかなり Windows ライクな使い勝手になります。

特にノートPCでは以下を設定しておくと便利です。

  • フタを閉じたらサスペンド
  • 電源ボタンでサスペンド
  • キーボード速度調整
  • 省電力設定調整
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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?