how to vnc to another pc via SSH - Printable Version +- Linux-Noob Forums (https://www.linux-noob.com/forums) +-- Forum: Linux Server Administration (https://www.linux-noob.com/forums/forum-8.html) +--- Forum: Remote Access (https://www.linux-noob.com/forums/forum-88.html) +--- Thread: how to vnc to another pc via SSH (/thread-3498.html) |
how to vnc to another pc via SSH - anyweb - 2004-04-04 to VNC to another computer using ssh (secure) you can do as follows:- why would you want to do this ? because the vnc protocol is not secure in itself and can be sniffed see this quote from the vnc FAQ Quote:Q55 How secure is VNC? how to vnc to another pc via SSH - enigma - 2004-07-15 Yet another great tutorial anyweb very detailes as usual thanks m8 :) how to vnc to another pc via SSH - stephencassidy - 2004-09-03 I dont get prompted for a password I get vncpasswd: error while loading shared libraries..... Any ideas? Cheers Ste how to vnc to another pc via SSH - FluKex - 2006-02-26 why the hell havnt i already been using this from work? lol just been playing around with it and realize how easy/smart it is. cheers mate how to vnc to another pc via SSH - Navrax - 2006-03-07 Quote:why the hell havnt i already been using this from work? lol I LOVE VNC!!! how to vnc to another pc via SSH - anyweb - 2006-03-18 and heres a very good windows (putty and realvnc) to linux vnc guide [/url][url=http://martybugs.net/smoothwall/puttyvnc.cgi]http://martybugs.net/smoothwall/puttyvnc.cgi cheers anyweb how to vnc to another pc via SSH - DustyBin - 2007-03-16 I couldnt get this method working on Debian Etch but this is how I eventually got it working with help from P38. HOST MACHINE first uninstall any vnc server you might have running apt-get install x11vnc <-- this is the vnc server CLIENT MACHINE ssh -L 5900:localhost:5900 user@remotehost.com <-- this setups up the ssh tunnel from the client machine to the host machine once you are connected to the host machine start up the vncserver with x11vnc HOST MACHINE open up a new terminal and type vncviewer localhost::5900 you should now have open a VNC session what is being tunneled through ssh! |