people whomst understand linux... can i ssh into my pocketchip (which has its own screen etc) and from that terminal-only ssh launch graphical applications to the chip's regular screen?
@candle Yes - if the pocketchip is running X, you can launch graphical apps in the X session via ssh by setting the DISPLAY environment variable in the ssh session, provided both sessions are running under the same user. e.g. export DISPLAY=:0
(It's usually :0 for the default session on a single user system, but you can launch a terminal from the X session and run `echo $DISPLAY` to check the actual value.)
@candle Yes - if the pocketchip is running X, you can launch graphical apps in the X session via ssh by setting the DISPLAY environment variable in the ssh session, provided both sessions are running under the same user.
e.g. export DISPLAY=:0
(It's usually :0 for the default session on a single user system, but you can launch a terminal from the X session and run `echo $DISPLAY` to check the actual value.)