问题
I'm currently implementing some machine learning algorithm by octave and run in the remote server. Once I type some drawing commands such like hist() it shows that
warning: X11 DISPLAY environment variable not set
Is it possible that I set the environment as my local X11 service. How to do it? Thanks.
回答1:
Connect the remote server by ssh and add the option -X
ssh -X remote_server
Then ssh will enable X11 forwarding.
来源:https://stackoverflow.com/questions/12337234/run-octave-remotely-and-display-locally-via-x11