Getting Started With Raspberry Pi
Overview
- Installing OS in Raspberry Pi
- Installing through headless system (Enabling Wifi and SSH)
- Remote access through your laptop
The following steps are required to be performed to complete above all tasks.
- Install Raspberry Pi Imager in your desktop or laptop
- Insert the Micro SD Card into Card Reader.
- Inject the Card reader into laptop and format it.
- Install the OS into Micro SD Card using Imager.
- Install Putty into your laptop.
- Connect Raspberry Pi through Putty.
- Use Remote Desktop Connect (windows application) for remote connection
- Surf the web browser through laptop
Install RPI Image on the SD Card
sudo snap install rpi-imager
- configure settings
- hostname
- username/password
- enable ssh
- wifi SSID, password
- disable telemetry
- write the rpi image to SD card; verify the image
Connect to RPI over SSH
ip a
## nmap - Network exploration tool and security / port scanner
nmap 192.168.0.*
ssh pi@192.168.0.104
## default IP of RPI over static LAN is 169.254.129.202
ping 169.254.129.202
Configure RPI for GUI
raspinfo
#
raspi-config
- Interface Options => VNC => enable the service => Finish => Reboot required
- Download & Install VNC viewer on Laptop
References
The detailed instructions to perform the above tasks can be found in the following web link.