Friday, 31 May 2013

VNC configuartion in solaris


Install & configure Xvncserver on Solaris10 OS

You will find SUNWxvnc package from Solaris10 companion-i386-sol10 CD You can download it from

bash-3.00# pkgadd -d . SUWxvnc

and after install vncserver on Solaris you will have service FMRI for it

bash-3.00# svcs -a | grep x11

online          3:25:55 svc:/application/x11/xfs:defaultand

svcadm enable svc:/application/x11/xvnc-inetd:default

sceern resoultion before change

bash-3.00# more .vnc/xstartup.orig

#!/bin/sh

 

[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources

xsetroot -solid grey

vncconfig -iconic &

xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &

twm &

 

sceern resoultion after change

 

bash-3.00#

 

 

bash-3.00# more .vnc/xstartup

#!/bin/sh

 

[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources

xsetroot -solid grey

vncconfig -iconic &

xterm -geometry 1020x1200+10+10 -ls -title "$VNCDESKTOP Desktop" &

twm &

bash-3.00#kill services and start it again .( disable X11 service & start again)

 

 

 

 

No comments:

Post a Comment