3

Is there a way to control my Ubuntu Desktop (13.10) remotely over Bluetooth, with my Android 4.4 device?

Jeroen
  • 443
  • 3
  • 10
  • 25

3 Answers3

3

AnyRemote works very nicely for controlling applications - first install in Ubuntu:

sudo apt-get install anyremote ganyremote

Then you have install the client for the Android phone - download the .apk from here, put the file on your phone, and then open it and install it to the phone - you need to allow installation from 'Unknown Sources' in Security settings first.

There is documentation available here to help you set it up.


For controlling your desktop, something like VNC is very useful, but as that has already be mentioned, you may also want to try TeamViewer - the android App for it can be found here.

To install for 32bit (works):

wget http://download.teamviewer.com/download/teamviewer_linux.deb
sudo gdebi install teamviewer_linux.deb

To install for 64bit (might work):

wget http://download.teamviewer.com/download/teamviewer_linux_x64.deb
sudo gdebi install teamviewer_linux_x64.deb

If you get an error with lib32asound2 or some other dependency, see here. If that does not work on 64bit, you should be able to install the 32bit version.

Wilf
  • 30,194
  • 17
  • 108
  • 164
1

You can use VNC.

In your phone:

click here to install android-vnc-viewer

Write this on your terminal from Ubuntu Desktop

sudo apt-get install vnc4server
kamil
  • 7,355
  • 7
  • 40
  • 61
1

You don't even need to install VNC on the ubuntu. You can use the built-in VNC feature. Ubuntu’s remote desktop technology is based on the existing VNC standard. This means you can connect to a Ubuntu remote desktop using any VNC client. There are more than a few VNC clients around, so if you have a favorite on any platform you can use that to connect to Ubuntu already. (This answer is to complete @kamil 's answer.)

check this link for more info.

NKN
  • 590
  • 1
  • 8
  • 18