Raspberry Pi - Remote Desktop Connection

by AdrieSentosa in Circuits > Raspberry Pi

10139 Views, 25 Favorites, 0 Comments

Raspberry Pi - Remote Desktop Connection

1.jpg

In this project, we will programming Raspberry Pi that could be control remotely via Secure Shell (SSH) from any Computer.

Remote Desktop are useful to communicate between Raspberry PI and another Device remotely through SSH. SSH provides a secure channel over an unsecured network in a client-server architecture to send any information, render data, any other essential process.

Raspberry Pi Installation

1.png
1.jpg

Open Terminal in Raspberry Pi, enable SSH (Secure Shell), install xrdp, edit your raspberry's ip to static and you're good to go.

raspi-config

Select option 8 (Advance Option), option A4(SSH), Enable, and OK

sudo apt-get install xrdp
sudo nano /etc/network/interfaces

Replace "iface eth0 inet dhcp" with :

iface eth0 inet static
address 192.168.1.20
netmask 255.255.255.0
gateway 192.168.1.1

Windows Installation

2.png
1.png
3.jpg
1.png

Find "remote desktop connection" program on Windows,

Enter raspberry pi IP,

Enter raspberry pi username and pass,

Enjoy configure your Raspberry Pi remotely !