Debian 12에서 정지 등을 비활성화합니다.

Debian 12에서 정지 등을 비활성화합니다.

방금 데비안 12.0.0을 설치했습니다.

11.2에서 업그레이드가 작동하지 않아 Bookworm DVD에서 새로 설치가 수행되었습니다.

sudo systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target

그래도 화면이 검게 변하는 것을 막지는 못합니다.

sudo systemctl status sleep.target suspend.target hibernate.target hybrid-sleep.target 

모두 마스크를 착용하고 있는 것으로 나타났습니다. 이것은 이 컴퓨터의 Debian 11.2에서 완벽하게 작동했으며 다른 Debian 11.2 서버에서도 여전히 잘 작동합니다.

/etc/systemd/sleep.conf.d/nosuspens.conf AS를 생성합니다:

[Sleep]
AllowSuspend=no
AllowHibernation=no
AllowSuspendThenHibernate=no
AllowHybridSleep=no

다시 시작해도 아무런 효과가 없습니다.

i7-9700 CPU @ 3.00GHz, 32GB RAM, 1TB SSD 및 2개의 4TB HDD를 갖춘 Dell XPS 8930에서 실행됩니다.

어떤 제안이 있으십니까?

답변1

명령줄이 최선의 방법은 아닌 것으로 나타났습니다. 다음 네 단계가 작동합니다.

  1. 오른쪽 상단에 있는 전원 버튼을 클릭하세요.
  2. 표시되는 드롭다운 상자에서 설정 기어를 클릭합니다.
  3. 팝업 설정 창의 왼쪽 메뉴에서 "전원"을 클릭하세요.
  4. '배터리 절약 옵션'에서 '5분' 대신 '사용 안 함'을 선택하세요.

답변2

/etc/gdm3/greeter.dconf-defaults을 편집 하고 해당 줄의 주석 처리를 제거한 후 다음 suspend으로 변경하여 이 문제를 해결했습니다 blank.

sleep-inactiva-ac-type="blank"

그리고 gdm3을 다시 시작하세요:

sudo systemctl restart gdm3

이것은 /etc/gdm3/greeter.dconf-defaults:

# Automatic suspend
# =================
[org/gnome/settings-daemon/plugins/power]
# - Time inactive in seconds before suspending with AC power
#   1200=20 minutes, 0=never
# sleep-inactive-ac-timeout=1200
# - What to do after sleep-inactive-ac-timeout
#   'blank', 'suspend', 'shutdown', 'hibernate', 'interactive' or 'nothing'
sleep-inactive-ac-type='blank'
# - As above but when on battery
# sleep-inactive-battery-timeout=1200
# sleep-inactive-battery-type='suspend'

답변3

Greetingr.dconf-defaults를 편집하면 나에게 도움이 되었습니다.


# These are the options for the greeter session that can be set 
# through GSettings. Any GSettings setting that is used by the 
# greeter session can be set here.

# Note that you must configure the path used by dconf to store the 
# configuration, not the GSettings path.


# Theming options
# ===============
#  - Change the GTK+ theme
[org/gnome/desktop/interface]
# gtk-theme='Adwaita'
#  - Use another background
[org/gnome/desktop/background]
# picture-uri='file:///usr/share/themes/Adwaita/backgrounds/stripes.jpg'
# picture-options='zoom'
#  - Or no background at all
[org/gnome/desktop/background]
# picture-options='none'
# primary-color='#000000'

# Login manager options
# =====================
[org/gnome/login-screen]
logo='/usr/share/images/vendor-logos/logo-text-version-64.png'

# - Disable user list
# disable-user-list=true
# - Disable restart buttons
# disable-restart-buttons=true
# - Show a login welcome message
# banner-message-enable=true
# banner-message-text='Welcome'

# Automatic suspend
# =================
[org/gnome/settings-daemon/plugins/power]
# - Time inactive in seconds before suspending with AC power
#   1200=20 minutes, 0=never
sleep-inactive-ac-timeout=0
# - What to do after sleep-inactive-ac-timeout
#   'blank', 'suspend', 'shutdown', 'hibernate', 'interactive' or 'nothing'
sleep-inactive-ac-type='nothing'
# - As above but when on battery
# sleep-inactive-battery-timeout=1200
# sleep-inactive-battery-type='suspend'

괜찮은 편집기를 설치하는 것이 중요합니다. 여기서는 이전 버전의 vim을 사용하고 있습니다.여기에 링크 설명을 입력하세요

답변4

나를 위해 한 줄을 /etc/gdm3/greeter.dconf-defaults다음으로 변경합니다.

sleep-inactive-ac-timeout=0 

그리고 실행

sudo systemctl reload gdm; sudo systemctl reload gdm3  

문제를 해결했습니다.

뒤쪽에https://unix.stackexchange.com/a/736305/32825

관련 정보