Gnuplot Generates Display Error When Generating PNG - Graphics
This is a discussion on Gnuplot Generates Display Error When Generating PNG - Graphics ; Here is my script (Gnuplot4.2, Debian Sarge):
set terminal png nocrop enhanced size 420,320
set output "graph.png"
set title "Measurements"
set view map
rgb(r,g,b) = int(r)*65536 + int(g)*256 + int(b)
splot "data" using 1:2 0):3 rgb($1,$2,0)) with points pt 7 ...
-
-
Re: Gnuplot Generates Display Error When Generating PNG
In article <1184957601.564221.300210@e16g2000pri.googlegroups.com>,
Andy <ajayre@gmail.com> wrote:
>
>When I run this on my headless server I get the following error and no
>graph is generated:
>
>gnuplot: unable to open display ''
>gnuplot: X11 aborted.
Heh. Another bug fix that will be in the incremental 4.2.1
The bug is that on linux systems the default terminal is X11,
regardless of whether you actually have x11 installed.
To fix it permanently, set an environmental variable on this
machine to change the default terminal to something else.
For example:
tcsh:
setenv GNUTERM dumb
bash:
export GNUTERM=dumb
--
Ethan A Merritt
-
Re: Gnuplot Generates Display Error When Generating PNG
On Jul 20, 12:24 pm, merr...@u.washington.edu (Ethan Merritt) wrote:
>
> To fix it permanently, set an environmental variable on this
> machine to change the default terminal to something else.
> For example:
>
> tcsh:
> setenv GNUTERM dumb
> bash:
> export GNUTERM=dumb
>
Worked like a charm! Once again, may thanks for your FAST help!
Andy
Similar Threads
-
By Application Development in forum Graphics
Replies: 3
Last Post: 10-30-2007, 12:16 PM
-
By Application Development in forum Perl
Replies: 2
Last Post: 05-30-2007, 05:28 PM
-
By Application Development in forum Graphics
Replies: 2
Last Post: 03-13-2007, 05:32 PM
-
By Application Development in forum Graphics
Replies: 2
Last Post: 11-15-2005, 12:29 PM
-
By Application Development in forum Graphics
Replies: 11
Last Post: 10-15-2005, 07:47 AM