gnuplot through SSH Sucure Shell

  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):


    gnuplot through SSH Sucure Shell_第1张图片
    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)