4, Remote Desktop
HOW TO CONNECT TO A RASPBERRY PI DIRECTLY WITH AN ETHERNET CABLE
http://www.circuitbasics.com/how-to-connect-to-a-raspberry-pi-directly-with-an-ethernet-cable/
login for
Standard user = pi.
Raspberry Pi password =raspberry.
IP Address of Raspberry Pi
To find Raspberry Pi IP Address write the command :
hostname -I
sudo ifconfig
look at inet addr under lan0 and if you are using
wireless connection like me straight away look
on inet addr under wlan0
If you need to retrieve the
Raspberry Pi’s local IP address you
can do that by using the following command.
hostname -I
Remote Desktop
Raspberry Pi for Remote Desktop
https://garywoodfine.com/how-to-enable-remote-desktop-on-raspberry-pi/
Remote desktop access
Installing the Remote Desktop Server on the Raspberry Pi
1.
run the following two commands.
sudo apt-get update
sudo apt-get upgrade
Now we need to install the xrdp package to the Raspberry Pi.
This package will allow remote desktop on your Raspberry Pi.
Xrdp is an open-source implementation of Microsoft’s
proprietary RDP Server, the same protocol that most
installations of Windows can connect to and be connected from.
The xrdp software replicates Microsoft’s RDP protocol
so that other remote desktop clients can connect to
your device
sudo apt-get install xrdp
...
To create this user you can use the following command within the terminal. Ensure you replace “USERNAME” with the name you want to use for your user.
sudo adduser USERNAME
Follow the prompts to create your user and set information such as the users password.
need to retrieve the Raspberry Pi’s local IP address you can do that by using the following command.
hostname -I