Monday, November 17, 2014

SSH With GUI

open a GUI application over ssh by simply using the -X flag:

ssh -X user@server

It's also typically a good idea to use compression on the ssh as well when you allow X11 forwarding. Makes it play nicer with your internet:

ssh -X -C user@server

command used to log in into my Raspberry pi:
ssh -X -C -l pi 192.168.0.124