CentOS GUI 모드 구축
윈도우만 사용하다보니, GUI 환경에 익숙해져서 커맨드 입력만으로는 약간 어려움.
GUI 환경을 구축해보기로 함.
# yum groupinstall "X Window System" "KDE Desktop"
설치 완료 후 x window 를 실행.
# startx
에러 발생하면서 실행 실패.
(EE) no screens found(EE)
가상화 서버에 설치를 하였더니, 그래픽 지원이 안되서 그런거 같음.
vnc-server 를 설치해서 구동을 시키기로 함.
# yum install tigervnc-server -y
config 수정
# vi /etc/sysconfig/vncservers
VNCSERVERS="1:root"
VNCSERVERARGS[1]="-geometry 1600x900"
vncserver 접속 패스워드 설정
# vncpasswd
password: 신규 패스워드 입력
verify: 패스워드 다시 입력
vncserver 실행
# service vncserver start
Starting VNC server: 1:root xauth: (stdin):1: bad display name "www:1" in "add" command
New 'www:1 (root)' desktop is www:1
Creating default startup script /root/.vnc/xstartup
Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/www:1.log
[ OK ]
서버 아이피 입력:포트
'리눅스 공부' 카테고리의 다른 글
리눅스 접근 설정 iptables (0) | 2018.02.07 |
---|---|
리눅스 APM 설치 (0) | 2018.02.07 |
리눅스 nslookup 설치 (0) | 2018.02.07 |
리눅스 whois 설치 (0) | 2018.02.07 |
CentOS 설치 후 업데이트 및 버전 확인 (0) | 2018.02.07 |