I have set up my Raspberry Pi with two different ways to access remotely - VNC server and ssh server. The main use is accessing Mathamatica from other machines. VNC works great from both my Chromebook and my Linux laptop. Very usable and responsive. Then I thought maybe ssh would be faster, since it's just passing data between the local front end and remote back end of a single program, rather than sending the whole desktop. But there's so much lag it's not usable at all. Which seems counterintuitive to me.
I use ssh like this:
Code: Select all
ssh -Y pi@myPis.ip.address
mathematicaCode: Select all
ssh my_user@myPis.ip.address
export DISPLAY=:0
mathematicaThanks!