After having installed Raspbian on your Raspberry Pi, we will now boot the Raspberry Pi without any screen or keyboard.
If you have not yet installed Raspbian, follow this guide.
- Connect your Raspberry Pi by ethernet (RJ45 cable) to the same router your PC is connected to. After having connected it, power it on.
- Find the IP address of the Raspberry Pi on your router’s portal (mine is 192.168.100.1).
You can also use PingTools, an Android application to find the Raspberry Pi IP address.
Windows Walkthrough (See for Linux below )
- Download and open PuTTY, a SSH client. Open PuTTY and enter the IP address (e.g. 192.168.100.7) of your Pi and leave other settings as they are.
- Click ‘Open’ and enter the default password which is ‘raspberry’ and then type
sudo apt-get install xrdp
and press ‘Y’ when prompted to install.
- Search Remote Desktop Connection (already available on Windows) and open it, then enter the IP address of the Raspberry Pi
- Enter the username and passsword of Raspbian which by default is ‘pi’ and ‘raspberry’.
You now have remote access to the Raspbian desktop.
Ubuntu/Linux Walkthrough
- Open the terminal and type
sudo ssh pi@<IP Address>
. Replace the <IP address> with that of your Pi, e.g. 192.168.100.7. If it shows a warning, type ‘yes’ and then enter the Pi password which by default is ‘raspberry’.
We are now in SSH mode where you can use commands to control the Raspberry Pi.
- To remotely control the Raspberry Pi using the GUI of Raspbian, we will download a package named ‘Xrdp’ through SSH. Type
sudo apt-get install xrdp
in the same terminal. - To be able to view the Raspbian desktop of the Pi, we need to install Remmina Remote Desktop Client, open a new terminal and type
sudo apt-get install remmina
. - Open Remmina on your PC, choose RDP on the right, enter the IP address of the Raspberry Pi.
- Click connect and enter the username and password which by default are ‘pi’ and ‘raspberry’ respectively.
Voila, now you use the Raspbian desktop on your Linux or Windows pc.