How to access VNC on a Linux server without having been logged in to the machine first?

10,983

Solution 1

I believe that vnc is not the same as windows remote desktop - it is for screen sharing so if you are not logged in the vnc service won't be running.

The solutions would be to set your home server to log in automatically or run an xserver on your remote computer and connect using ssh/putty. I used to use cygwin and always connected to my ubuntu box with ssh -X but just tried out xming and am impressed. After a full install if you run xlaunch, set to run fullscreen, and run gnome-session remotely connecting with putty - it is just like remote desktop and seems quicker than vnc on my lan.

Solution 2

VNC and remote desktop operate on different principles. The basic operating model for remote desktop is that it gives you access to the remote machine's actual, physical display; it doesn't give you a remote connection to the machine independently of what the local user is doing. The basic operating model for VNC is that it provides a virtual display that you can connect to remotely; VNC operates independently of what a local user may be doing.

If you want to run graphical applications on your Linux machine and have them display on your local machine, VNC is not the first tool that comes to mind. The unix way of doing this is to use ssh -X to connect to the remote machine; then remote X applications are displayed on the local X display. This does require that you have an X server locally; for Windows, this requires yet another program to be installed and set up.

If you want to be able to start a graphical application on the Linux machine, and connect to it from anywhere in the world, run a VNC server (vncserver command). This creates a virtual display that you can connect to from anywhere (barring firewalls). Run a VNC client to see what is displayed on that virtual display.

If you want to have direct access to the X server that is displaying on the Linux machine's monitor, check out x2vnc.

Share:
10,983
LostCore
Author by

LostCore

Updated on September 17, 2022

Comments

  • LostCore
    LostCore over 1 year

    Possible Duplicate:
    Automatically start VNC server on startup

    I have a Linux server at home, and by default no-one is logged in to that box.

    I'd like to establish a remote desktop connection to it with VNC but this fails, unless I log in first physically.

    It's strange to me that VNC Viewer doesn't even ask for credentials, it just displays a "connection refused" error message.

    What's the best way to do this? I'm running Ubuntu 10.04 on the server.

    • Arjan
      Arjan over 13 years
      Oops, I was WRONG about the following being a duplicate! -- possible duplicate of Automatically start VNC server on startup
    • Pylsa
      Pylsa over 13 years
      @Arjan @Diago this is not a duplicate. The other question is about the VNC server ONLY. This question also covers other remote desktop solution. Voting to reopen.
    • BinaryMisfit
      BinaryMisfit over 13 years
      @Blood FYI. Dual notifications in comments don't work. Furthermore, I fail to see how this covers other solutions, also there is a duplicate of that already as well.
    • Arjan
      Arjan over 13 years
      @Diago, unlike BloodPhilia I disagree about this question being about other remote desktop things as well. It is all about VNC, if you'd ask me. HOWEVER, if I understand correctly, then maybe a running VNC server on Linux still does not allow one to use it unless someone actually logged in on the box itself? If I'm wrong there, then we were right about this being a duplicate, but just in case I was wrong: voting to reopen.
    • Arjan
      Arjan over 13 years
      Wabbit: can you confirm that the VNC server is actually running before someone logs in?
    • Pylsa
      Pylsa over 13 years
      @Diago Before Arjan edited the question, the title referred to "connecting to remote when not logged in to machine". In that case, the answer of Adam would also contain valid (non-VLC) solutions. (Xming and using ssh -X.)
    • LostCore
      LostCore over 13 years
      @Arjan: I never bothered to install a VNC server to the Linux box. All I did was just enabled remote desktop sharing from the Gnome menu so I guess I was using the default vino-server for this.
  • LostCore
    LostCore over 13 years
    I've enabled automatic log in on the Linux box, but it doesn't work when no monitor is plugged in (otherwise it would do just fine). Now I'm going to experiment with finding a way to install and configure an xserver. Thanks for the tips!
  • Adam Butler
    Adam Butler over 13 years
    That is strange - when you say it doesn't work do you get an error? Is it still logging into X?
  • LostCore
    LostCore over 13 years
    According to my recent research when Ubuntu cannot see an attached monitor at boot time, it just won't start the X environment.
  • Pylsa
    Pylsa over 13 years
    xming works perfect.