web-dev-qa-db-ja.com

ふたを閉じて再び開いた後、ラップトップは自動的に中断します

現在のカーネルバージョン

Linux xorist-Blade-Stealth 4.18.0-041800-generic #201808122131 SMP Sun Aug 12 21:33:20 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux

私が抱えている問題

最初に、Ubuntuの新しくインストールしたバージョンで作業していることに注意することが重要だと感じています。私がそれに対して行った唯一のことは、カーネルの更新でした。カーネルへのこの更新は、更新前に存在していたため、私が抱えている問題に直接関係するものではありませんでした。

ラップトップを起動するたびに、ふたを閉じ、サスペンドするのを待ってから再び開き、起動します。このプロセスを完了し、通常の目覚めた状態になった後、約15〜30秒が経過してから自動的に停止します。

電源ボタンを押してスリープを解除し、再度ログインすると、約15〜30秒後に自動的に一時停止します。この問題は、ラップトップを完全に再起動するまで続きます。

this postの下ですべての回答を試みましたが、何も助けませんでした。

この問題を解決する方法はありますか?

編集

これはcat /etc/systemd/logind.confを実行した結果です

#  This file is part of systemd.
#
#  systemd is free software; you can redistribute it and/or modify it
#  under the terms of the GNU Lesser General Public License as published by
#  the Free Software Foundation; either version 2.1 of the License, or
#  (at your option) any later version.
#
# Entries in this file show the compile time defaults.
# You can change settings by editing this file.
# Defaults can be restored by simply deleting this file.
#
# See logind.conf(5) for details.

[Login]
#NAutoVTs=6
#ReserveVT=6
#KillUserProcesses=no
#KillOnlyUsers=
#KillExcludeUsers=root
#InhibitDelayMaxSec=5
#HandlePowerKey=poweroff
#HandleSuspendKey=suspend
#HandleHibernateKey=hibernate
HandleLidSwitch=suspend
#HandleLidSwitchDocked=ignore
#PowerKeyIgnoreInhibited=no
#SuspendKeyIgnoreInhibited=no
#HibernateKeyIgnoreInhibited=no
#LidSwitchIgnoreInhibited=yes
#HoldoffTimeoutSec=30s
#IdleAction=ignore
#IdleActionSec=30min
#RuntimeDirectorySize=10%
#RemoveIPC=yes
#InhibitorsMax=8192
#SessionsMax=8192
#UserTasksMax=33%
4
xorist

最初に試すこと

Sudo -H gedit /etc/systemd/logind.confを使用して、次の行を検索します。

#HandlLidSwitch=

次のように変更します。

HandleLidSwitch=ignore

次に、ファイルを保存して再起動します。

2

システム設定の問題です...?!

デスクトップメニューの[システム設定]に移動します。次に、「エネルギー」に行きます。そこで、以下を設定できます。

画面をオフにする-に:「決して」

スタンバイへの自動設定-to: "off"

キーをオフに切り替えたとき-to: "nothing"

これが解決策です。

(マシンを再起動すると、すべてが正常になります。)

ラップトップのふたを閉じることができ、ふたを開くとすぐにアクションの準備ができています-画面のみがオフになりますが、サスペンドはしません。

0
dschinn1001