How to log in into Raspberry remotely via SSH?
1. Note your Raspberry active IP address that is associated on either eth0 if you use LAN cable or wlan0 if you use wifi: ifconfig 2. Ensure your Raspberry opens its SSH port. Go to Raspi Config to set it up sudo raspi-config Enable SSH Restart 3. From your desktop / laptop / other remote…
How to shut down or restart Linux / Raspbian from command line?
To shut down: sudo halt now To restart: sudo reboot or sudo halt -r now