Skip to content

Instantly share code, notes, and snippets.

@lacymorrow
Last active September 5, 2018 08:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lacymorrow/2e19f66c55c83419b511cd417b0c6f11 to your computer and use it in GitHub Desktop.
Save lacymorrow/2e19f66c55c83419b511cd417b0c6f11 to your computer and use it in GitHub Desktop.
VNC connection for MagicMirror2 Raspberry Pi -> MacOS
# SSH from the Mac to the Pi with
# -Y: X-11 (trusted) forwarding
# -L VNC forwarding
ssh -Y -L 5901:localhost:5901 pi@10.0.0.20
# (in SSH session)
# Create VNC password
x11vnc -storepasswd
# Activate VNC
x11vnc -usepw
# You can now connect :)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment