시스템 업데이트 후 Arch의 "대상 그래픽 인터페이스 도달" 시 시작이 중단됩니다(가상 머신 없음).

시스템 업데이트 후 Arch의 "대상 그래픽 인터페이스 도달" 시 시작이 중단됩니다(가상 머신 없음).

약 한 달 전에 내 아치 시스템이 "대상 그래픽 인터페이스 도달" 상태에서 멈추기 시작했고 GDM(Gnome Display Manager)이 시작되지 않았습니다. 마침내 TTY 2(ALT + F2)로 전환한 다음 다시 TTY 1(ALT + F1)로 전환하여 해결 방법을 찾았고 GDM이 정상적으로 시작되었습니다. 다음은 멈추거나 정지된 시작의 스크린샷입니다. "대상 그래픽 인터페이스 도달" 시 정지된 시스템의 스크린샷

이 질문을 읽었는데,Arch Linux가 시작 시 멈춤(대상 그래픽 인터페이스에 도달), 그러나 문제를 발견했을 때 Virtualbox를 설치한 다음 문제 해결 단계의 일부로 Virtualbox를 제거했지만 저는 이를 위해 Virtualbox를 사용하지 않았습니다. xorg-server를 설치하기 위해 해당 질문에 대한 답변을 시도했지만 이미 설치되어 있었습니다. >https://unix.stackexchange.com/a/341293/27902.

서비스를 활성화했습니다. TTY2로 전환하면 디스플레이는 다음과 같습니다 systemctl status gdm.service.

TTY2의 "systemctl status gdm.service" 출력 스크린샷

/usr/lib/systemd/system/gdm.service의 내용:

[Unit]
Description=GNOME Display Manager

# replaces the getty
[email protected]
[email protected]

# replaces plymouth-quit since it quits plymouth on its own
Conflicts=
After=

# Needs all the dependencies of the services it's replacing
# pulled from [email protected] and
# (except for plymouth-quit-wait.service since it waits until
# plymouth is quit, which we do)
After=rc-local.service plymouth-start.service systemd-user-sessions.service

# GDM takes responsibility for stopping plymouth, so if it fails
# for any reason, make sure plymouth still stops
OnFailure=plymouth-quit.service

[Service]
ExecStart=/usr/bin/gdm
KillMode=mixed
Restart=always
IgnoreSIGPIPE=no
BusName=org.gnome.DisplayManager
StandardOutput=syslog
StandardError=inherit
EnvironmentFile=-/etc/locale.conf
ExecReload=/bin/kill -SIGHUP $MAINPID
KeyringMode=shared

[Install]
Alias=display-manager.service

업데이트: 명확히 하자면 저는 Wayland를 사용하지 않지만 여전히 X를 사용합니다.

답변1

K, 해결책은 이것입니다. 이 문제를 해결하는 데 도움을 준 @cweagans에게 감사드립니다!

  1. systemctl disable gdm.service
  2. yay --remove gdm
  3. yay --sync --refresh gdm
  4. systemctl enable gdm.service
  5. reboot
  6. 일하다!

관련 정보