Is it Easy to configure VNC Viewer?

want to be able to configure VNC to remotely access my
Server from the server room via vncviewer.

assuming need to go to software apps rpm contains in yast
search for vnc server install it. Then I assume the vnc viewer on my xp
workstation will access it?


bperrotta

bperrotta’s Profile: http://forums.opensuse.org/member.php?userid=3533
View this thread: http://forums.opensuse.org/showthread.php?t=405453

Assuming you log in to your server via ssh, you should be able to adapt
the following code to your needs - run it on the server.

Code:

#!/bin/sh

SERVER=thenameofyourserver

This kills previous VNC sessions lying around…

2>&1 vncserver -kill :1
2>&1 killall Xvnc
2>&1 rm -f .vnc/${SERVER}:1.pid

vncserver -geometry 1120x896 :1
sleep 3
vncviewer -passwd ${HOME}/.vnc/passwd ${SERVER}:1

You’ll need to open a port when you ssh login, again, substitute the
variables

Code:

ssh -L 5901:${LOCALMACHINE}:5901 ${SERVER}


KJ44

KJ44’s Profile: http://forums.opensuse.org/member.php?userid=1281
View this thread: http://forums.opensuse.org/showthread.php?t=405453

Whoops, I didn’t notice you were using WinXP. Most of the tricks you’ll
need are still applicable though, just not the line about vncviewer.


KJ44

KJ44’s Profile: http://forums.opensuse.org/member.php?userid=1281
View this thread: http://forums.opensuse.org/showthread.php?t=405453

Where do i put this info what file?
Not quite sure I understand you


bperrotta

bperrotta’s Profile: http://forums.opensuse.org/member.php?userid=3533
View this thread: http://forums.opensuse.org/showthread.php?t=405453

Dogit I know Regular VNC isn’t for suse linux
but I’m used to it.

getting this error

vncpasswd
vncpasswd: error while loading shared libraries:
libstdc+±libc6.2-2.so.3: cannot open shared object file: No such file
or directory

Can anyone help me solve this depency problem.
Please would rather use real vnc. but if I must use tight vnc please
somebody give me a humanly understandable tut.


bperrotta

bperrotta’s Profile: http://forums.opensuse.org/member.php?userid=3533
View this thread: http://forums.opensuse.org/showthread.php?t=405453

I got tight VNC to work from inside kde desktop.
But it is tedious to walk over to the Server, to send an invitation to
get in.
Is there any way to set it to keep the tight VNC server
on all the time, with out needing to send an invitation?:stuck_out_tongue:


bperrotta

bperrotta’s Profile: http://forums.opensuse.org/member.php?userid=3533
View this thread: http://forums.opensuse.org/showthread.php?t=405453

found a way to disable invitations in properties of remote dektop
desktop but wasn’t able to connect when i did


bperrotta

bperrotta’s Profile: http://forums.opensuse.org/member.php?userid=3533
View this thread: http://forums.opensuse.org/showthread.php?t=405453

ok I solved that. but is there a way to start tight vnc without
requiring a user account to remain logged into the server?


bperrotta

bperrotta’s Profile: http://forums.opensuse.org/member.php?userid=3533
View this thread: http://forums.opensuse.org/showthread.php?t=405453