Created
November 23, 2020 23:10
-
-
Save antonfisher/cd8006c7bed978933f251728a8f6b6b4 to your computer and use it in GitHub Desktop.
Install motioneyeos on Raspberry Pi Zero
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# on host | |
# follow https://github.com/ccrisan/motioneyeos/wiki/Installation | |
# download "motioneyeos-raspberrypi-20200606.img.xz" release from: | |
# https://github.com/ccrisan/motioneyeos/releases | |
# setup script | |
wget https://raw.githubusercontent.com/ccrisan/motioneyeos/master/writeimage.sh | |
chmod +x writeimage.sh | |
# insert sd card, find it | |
ls -lha /dev/mm* | |
# run setup script | |
sudo writeimage.sh -d /dev/mmcblkXXX -i ./motioneyeos-raspberrypi-20200606.img -n "SSID:PASS" | |
# find rpi ip | |
sudo nmap -sV -p 22 10.0.0.0/24 | |
# open in browser | |
http://10.0.0.82 | |
# ssh to rpi | |
ssh -Ct [email protected] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment