美文网首页gnuplot
gnuplot through SSH Sucure Shell

gnuplot through SSH Sucure Shell

作者: hchencoder | 来源:发表于2016-12-17 20:44 被阅读0次
    1. Installation of gnuplot and gnuplot-x11 on the DELL server.
    2. Installation of Xming on the laptop and set up in the SSH Secure Shell by the following operation(active the Tunnel X11connections):


      ssh.jpeg
    3. Combined the above two steps, I can plot the data using gnuplot in the SSH Secure Shell by commands like:
      $ gnuplot #Start the gnuplot
      gnuplot> set terminal x11 # set display terminal (only in the first time using this gnuplot)
      gnuplot> plot "result.dat" u 1:2 # plot the data in result.dat

    ps: befor plot using gnuplot, the software Xming should be started up.

    Expect for using SSH Secure Shell Client, we can directly ssh to the remote server if we use linux by:

    ssh -X username@host_ip
    

    then we can plot figures the same way as in Step 3.

    相关文章

      网友评论

        本文标题:gnuplot through SSH Sucure Shell

        本文链接:https://www.haomeiwen.com/subject/kicamttx.html