공부/Ubuntu
ubuntu gui package 설치
CITTA
2023. 2. 6. 15:14
728x90
반응형
SMALL
ubuntu 사용 중 gui 환경이 필요할 경우
## firefox나 다른 프로그램을 함께 설치하고자 하는 경우 전체 설치 권장
그 이외의 경우는 최소 설치만 해도 됨
$ apt-get update
$ apt-get upgrade
## 최소 설치
$ apt-get install --no-install-recommends ubuntu-desktop
## 전체 설치
$ apt-get install ubuntu-desktop
## 기타 추가 설치 (필요시)
$ apt-get install indicator-appmenu-tools (hud service not connected 오류 해결)
$ apt-get install indicator-session ( 계정, 세션 아이콘 추가 )
$ apt-get install indicator-datetime ( 상단 메뉴 시간 추가 )
$ apt-get install indicator-applet-complete ( 볼륨 조절 아이콘 추가 )
## 재부팅 후 확인
$ shutdown -r now or reboot
728x90
반응형
LIST