본문 바로가기
Linux

[Rocky Linux 8] Rocky Linux GUI 설치(GNOME)

by Yoon_estar 2024. 6. 20.
728x90
반응형

Minimal 이나 GUI를 제외하고 설치 하였을 때 추가로 GUI 모드를 설치하는 방법

GUI 패키지 설치

그룹 리스트 확인

# dnf grouplist
마지막 메타자료 만료확인(0:42:14 이전): 2024년 06월 11일 (화) 오전 09시 28분 16초.
Available Environment Groups:
   Server with GUI
   Server
   Workstation
   Virtualization Host
   Custom Operating System
Installed Environment Groups:
   Minimal Install
Available Groups:
   Container Management
   .NET Core Development
   RPM Development Tools
   Development Tools
   Graphical Administration Tools
   Headless Management
   Legacy UNIX Compatibility
   Network Servers
   Scientific Support
   Security Tools
   Smart Card Support
   System Tools

그룹 리스트에서 “Server with GUI” 와 “Graphic Administration Tools”를 설치

# dnf groupinstall "Server with GUI" "Graphical Administration Tools"

런레벨 변경

# systemctl get-default
multi-user.target

# systemctl set-default graphical.target
Removed /etc/systemd/system/default.target.
Created symlink /etc/systemd/system/default.target → /usr/lib/systemd/system/graphical.target.

# systemctl get-default
graphical.target

# reboot

정상 동작 확인

반응형