2

I have two computers running Ubuntu, one belongs to me and the other to my father. He often requires assistance with the system which involves using remote control. Both of the computers are connected to the same WLAN.

How can I set up a simple system for screen sharing and remote control? I would prefer something that runs in the background so that he doesn't need to click on anything (he's a bit of a technophobic). And I can assist him quickly.

I would appreciate any simple to set up and use programs.

Jakub
  • 335

4 Answers4

2

One very convenient and free solution is to install the TightVNC (www.tightvnc.com) server on your father's computer.

This application can run on the background and can be secured with a password. When configuring the server, it is possible to turn off the message that asks the user for permissions, thus requiring no intervention from your father. Just connect to the server with the TightVNC client and you're ready to go.

Benjamin B.
  • 256
  • 1
  • 8
2

Team viewer will do the task.Steps:

1) Download team viewer for Linux for 32 bit or 64 bit.

2)Install it in your fathers computer and yours.

3)Setup unattended access in father's computer:guide

4)When ever your father needs help , fire up your team viewer application and login to his computer.Fix the system for him.

Ashildr
  • 2,770
  • 5
  • 28
  • 45
1

The standard utility to do that is VNC. There are many VNC servers and clients; this Web page is Ubuntu's guide to it. You can download onto your father's pc one of the servers as follows:

 sudo apt-get install vnc4server

A good install guide can be found here You will then need a client on your pc,

sudo apt-get install xvnc4viewer

Its use is quite straightforward. Now, when you connect, you will have your father's pc right in front of you, as if you were sitting at his chair.

Two more small issues:

  1. If you wish to connect to your father's pc even when you are away (at work, on holiday and what not), you will have to do some port forwarding, i.e., to instruct your router that, whenever communication arrives on port 5901 (the port generally used by vnc servers), they should be addressed to your father's pc;

  2. Again if you are considering connecting to your father's pc from outside your LAN, you should consider encryption. The normal communication set up by VNC is plain, i.e., any snooper can listen on onto your conversations. If you wish to defend yourself against this possibility, the standard solution is to first establish an SSH communication (which is encrypted), and then vehicule your VNC session over the ssh channel, which makes it automatically encrypted. For Ubuntu, you find instructions here

MariusMatutiae
  • 48,517
  • 12
  • 86
  • 136
0

Here is all the info you need to answer your question. It is a complete tutorial of how to set up remote desktop with Ubuntu's native software. I will not post information from the link as I do not have permission to. But you can visit the site yourself.

http://www.makeuseof.com/tag/ubuntu-remote-desktop-builtin-vnc-compatible-dead-easy/

jmc302005
  • 729