Article
article
Reads:
3148
Score:
Problem:
I wanted to install a VMware workstation running NetWare 6.5 SP6 on a SLES 10 host server to build a virtual test rig. I needed to manage the X Window VMware servers through tunneled SSH VNC from my Windows XP desktop.
Solution:
1. VMware Installation on SLES10 Host
- download VMware workstation 5.5.3 for Linux from http://www.vmware.com/download/ws/
- rpm -ivh VMware-workstation-5.5.3-34685.i386.rpm
- run /usr/bin/vmware-config.pl and accept the defaults. You will need to Shift:q out of the licence agreements and other similar files.
VMware workstation should now be installed and configured. It can be run from 'more applications' in X Windows.
2. Install VNC on SLES10
- download source rpm's for x11vnc - wget http://ftp.gwdg.de/...
- rpmbuild --rebuild x11vnc-0.8.4-1.guru.suse102.src.rpm
- resolve dependencies with Yast
- rpmbuild --rebuild x11vnc-0.8.4-1.guru.suse102.src.rpm
- rpm -ivh /usr/src/packages/RPMS/i586/x11vnc-0.8.4-1.guru.suse101.i586.rpm
- Add TCP port 5900and ssh to SuSE firewall (run from yast or edit etc/sysconfig/SuSEfirewall2), then restart the firewall
3. Windows XP Client
- on a Windows XP client download and install latest versions of putty and vnc viewer.
- open putty
- goto Session and add host name, port 22 SSH selected
- goto Connections/SSH/Tunnels and add X display location as 'localhost:0' add Source port as 5900 and destination as host server ipaddress:5900. Make sure local is selected at bottom.
- save putty settings
- open putty session and log into server and then type x11vnc -display :0 to start x11vnc
- minimise the putty session
- run vnc viewer on XP with login 'localhost:0'
- http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html
You should now be able to manage X Windows on your SLES10 server tunneled with SSH from your Windows XP client.
Related Articles
- How to Securely Access a Server GUI from a Workstation
- Remote Management using SSH and X-Forwarding
- Getting FreeRadius 1.1.4 Running with eDirectory on SLES 10
- How to Install VMware 6.5 Workstation on SUSE Linux 11 64 bit
- How to Launch Remote Console for ESX VMs Without Installing VNC Server on Each VM





0