Your Server

what is the ssh command to start tight vnc on my remote linux server?

i am new to linux and ssh and trying to setup my dedicated server and want to use tightvnc but can't seem to start the tightvnc server. can anyone tell me the ssh command line to do this please?

Public Comments

  1. You probably want to run the server everytime it boots, do this, make a simple script in /etc/init.d/tightvnc. Something like this: #!/bin/bash # vncserver :1 -name sesion1 -depth 16 -geometry 800x600 Of course, change the depth like you would want. Run the command : update-rc.d -f tightvnc defaults and that will add it to the rc start up list. If you are just trying to turn it on for testing purposes or whatever, you should be able to do something as simple as: vncserver :1 once installed.
Powered by Yahoo! Answers