나는 다소 이상한 상황에 직면하고 있습니다. 몇 초 동안 전원 버튼을 눌러 노트북을 껐다가 다시 켜면 "덮개를 닫을 때 일시 중지" 옵션이 작동하지 않습니다.
그래서 덮개를 닫으면 노트북이 종료됩니다. 신기하게도 뚜껑을 열면 노트북이 켜진다! 전원 버튼을 누르지 않아서 이상하네요!
내 파일을 확인했지만 /etc/systemd/logind.conf
다음 줄에 주석이 없습니다.
HandleLidSwitch=suspend
HandleLidSwitchDocked=suspend
문제가 무엇인지 아시나요?
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=suspend
#PowerKeyIgnoreInhibited=no
#SuspendKeyIgnoreInhibited=no
#HibernateKeyIgnoreInhibited=no
#LidSwitchIgnoreInhibited=yes
#HoldoffTimeoutSec=30s
#IdleAction=ignore
#IdleActionSec=30min
#RuntimeDirectorySize=10%
#RemoveIPC=yes
#UserTasksMax=12288
업데이트 1
시스템을 Fedora 27로 업그레이드했지만 문제가 지속됩니다. 문제를 해결하는 방법에 대한 아이디어가 있습니까?
업데이트 2
@isapir 답변을 시도했지만 작동하지 않았습니다. 더 구체적으로
$ swapon -s
이것은Filename Type Size Used Priority /dev/dm-2 partition 7864316 0 -2
그런 다음 파일을 편집했습니다
/etc/default/grub
.GRUB_CMDLINE_LINUX=
거기 항목 과 관련하여"rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap rhgb quiet"
나는 다음과 같이 변경했습니다.resume=/dev/dm-2
내 시스템이 그런 것인지
UEFI
아니면legacy
내가 한 것인지 확인하기 위해$ sudo efibootmgr
. 출력 결과는EFI variables are not supported on this system.
레거시 시스템이 있다는 의미인 것 같습니다 . 그래서 결국 내가 해냈어grub2-mkconfig -o /etc/grub2.cfg
진행 방법에 대한 아이디어가 있습니까?
업데이트 3
다이어리 타이핑도 확인했어요
sudo journalctl -b | grep "Feb 13" > journal.dat
하지만 내가 무엇을 찾고 있는지 잘 모르겠습니다. 출력을 찾을 수 있습니다여기
무슨 문제가 있는지 아시나요?
답변1
문제는 노트북이 잘못된 파티션에서 복구를 시도하고 있다는 것입니다. grub
이 문제는 다음 단계 에 따라 해결할 수 있습니다 .
슈퍼유저로서 다음을 실행합니다.
# swapon -s
스왑에 사용된 파티션이 표시됩니다. 예를 들어 내 컴퓨터에는 다음이 표시됩니다 /dev/dm-1
.
Filename Type Size Used Priority
/dev/dm-1 partition 8388604 0 -2
다음 /etc/default/grub
으로 로 시작하는 줄을 편집하고 찾습니다 GRUB_CMDLINE_LINUX=
. 가져야 할 가치 resume=<your-swap-device>
. 내 경우에는 resume=/dev/dm-1
. 이력서 항목이 있으면 업데이트하십시오. 그렇지 않은 경우 추가하십시오.
다음으로 grub을 재생성해야 합니다. UEFI 시스템에서는 다음과 같습니다.
# grub2-mkconfig -o /etc/grub2-efi.cfg
레거시 시스템에서는 다음과 같습니다.
# grub2-mkconfig -o /etc/grub2.cfg
다음에 덮개를 열면 노트북은 복구 정보를 찾아 일시 중지 상태에서 올바르게 다시 시작해야 합니다.
편집하다(OP에서)
추가 단계가 필요합니다.
처음으로 덮개를 닫기 전에 노트북을 다시 시작하십시오.