homebusinessblogart

Raspberry Pi

Getting started

The fun way of doing RPi is probably using it without peripherals. Simply SSH into it! Though you do need to set up OS and Wifi config correctly.

SSH into RPi

To SSH into RPi, refer this article.

File Transfer

Downloading:
 $ scp pi@RPI-ADDR:/home/pi/file.zip HOST-PATH 

Uploading:
 $ scp file.zip pi@RPI-ADDR:/home/pi 


Know more about SCP here

Webserver

Local_Server

Known issues:

VNC

Why even bother using the HDMI ports? Get VNC to use your RPI on any device.

Nextcloud


SSH into your RPi to do setup docker

sudo apt update
sudo apt upgrade
sudo apt install raspberrypi-kernel raspberrypi-kernel-headers
curl -sSL https://get.docker.com | sh
sudo usermod -aG docker pi
sudo reboot


Getting Nextcloud

docker pull nextcloud


Reference links: