Tag: Raspberry Pi
Screenshot from console on Raspberry Pi
I’m building a fleet of distributed Raspberry multimedia players and I’ve decided to start with a few terminal commands to manage them. Let’s begin with a screenshot of current screen contents.
Bulletproof method of how to convert Raspberry Pi into kiosk
I’ve tried lots of tutorials but nothing seems to work with newer versions of Raspbian. So I’ve decided to write my own simple tutorial on this matter.
How to find Raspberry Pi using MAC address
When you want to find your headless but networked Raspberry Pi and you’re lazy like me use nmap: sudo nmap -sP 192.168.1.0/24 | awk ‘/^Nmap/{ip=$NF}/B8:27:EB/{print ip}’ Mask /24 means that addresses from 192.168.1.0 to 192.168.1.254 will be searched. You can extend that to /16 if you don’t know subnet of your device.