1. Solaris10 Update 5에서의 VNC 설정
Solaris10 Update 5 Version 부터는 VNC가 기본으로 설치 되어 있어 설정만 하면
사용할 수 있습니다.
1.1) Solaris10 release 확인
# cat
/etc/release Solaris
10 10/09 s10x_u8wos_08a X86 Copyright
2009 Sun Microsystems, Inc. All Rights Reserved. Use
is subject to license terms. Assembled
16 September 2009 |
1.2) Service File에 Port 추가
# cat >> /etc/inet/services vnc-server 5951/tcp #VNC-server |
1.3) Service Start
# svcadm enable xvnc-inetd # svcs xvnc-inetd STATE STIME FMRI online 11:17:13
svc:/application/x11/xvnc-inetd:default |
※ Root 사용자 접속 허용
위의 설정이 끝나고, vnc를 접속하면
아래의 메시지가 뜹니다.
"시스템 콘솔이 아닙니다. 루트로 로그인
할 수 없습니다."
이는 기본적으로 root사용자는
외부에서 접속이 되지 않는 설정 때문인데, 이를 해결하기 위해 아래와 같이 18번 라인에 주석처리하고, 재부팅(다른 방법도 있을 것 같지만 일단 모름)하면 root로도 접속된다.
# vi /etc/default/login < 중략 > 15 # If CONSOLE is set, root can
only login on that device. 16 # Comment this line out to
allow remote login by root. 17 # 18 #CONSOLE=/dev/console 19 20 # PASSREQ determines if login
requires a password. 21 # 22 PASSREQ=YES < 중략 > |