19

Do you know if the Raspberry Pi's recommended OS Raspbian comes with a remote desktop (RDP) client as default, or one that I can download to remote desktop into a Windows 7 machine?

Marius Butuc
  • 925
  • 3
  • 11
  • 20
Jake Andrew
  • 325
  • 1
  • 2
  • 6

3 Answers3

14

Remmina

Try running

sudo apt-get install remmina remmina-plugin-rdp

to install Remmina.

rdesktop

You could also try rdesktop by running

sudo apt-get install rdesktop
Alex Chamberlain
  • 15,530
  • 14
  • 67
  • 113
5

Try install TightVNC Server on Raspberry Pi:

sudo apt-get install tightvncserver

Run it every time or add it to startup:

/usr/bin/tightvncserver

You will need a TightVNC Client on your Windows PC o Android Phone.

Cerobot
  • 51
  • 1
  • 1
2

I tried the Raspberry Pi Thin Client project on a Raspberry Pi 2 on a screen with a resolution of 2560 x 1440 pixels. Was a little bit slow on building the screen but much better than installing it under Raspbian.

Greenonline
  • 2,740
  • 4
  • 23
  • 36
MacVato
  • 21
  • 3