Foros del Web » Administración de Sistemas » Unix / Linux »

Instalar GnuPlot 4.2.4 en Linux

Estas en el tema de Instalar GnuPlot 4.2.4 en Linux en el foro de Unix / Linux en Foros del Web. Hola, estoy empezando con linux y necesito instalar el Gnuplot 4.2.4, el caso es que mi version de Linux es Xandros (La que viene con ...
  #1 (permalink)  
Antiguo 13/12/2008, 12:34
 
Fecha de Ingreso: diciembre-2008
Mensajes: 29
Antigüedad: 15 años, 4 meses
Puntos: 0
Pregunta Instalar GnuPlot 4.2.4 en Linux

Hola, estoy empezando con linux y necesito instalar el Gnuplot 4.2.4, el caso es que mi version de Linux es Xandros (La que viene con el ASUS eee pc) y carece de compiladores u otras aplicaciones no se si necesarias para la instalacion, ¿alguien me puede ayudar? ¿Que hago?

Gracias linuxeros... por ayudar a un ex-windero xDDDDD, Salu2
  #2 (permalink)  
Antiguo 13/12/2008, 13:23
 
Fecha de Ingreso: diciembre-2008
Mensajes: 29
Antigüedad: 15 años, 4 meses
Puntos: 0
De acuerdo Respuesta: Instalar GnuPlot 4.2.4 en Linux

Ya encontre la solucion, en ingles, pero solucion... xDDD

An avid gnuplot user, I built it locally on my eeepc. There are some hoops to jump through, but the result is gnuplot4.2 with as many features as you can want:

First add debian repository (http://wiki.eeeuser.com/howto:adddebianfeeds) and install the following packages

apt-get install build-essential
apt-get install libx11-dev
apt-get install libreadline-dev
apt-get install ncurses-dev
apt-get install libgd-dev
apt-get install libjpeg-progs # might not be needed
apt-get install latex # for latex terminals if you want them


download the gnuplot 4.2.3 tarball (http://sourceforge.net/project/showfile … up_id=2055) and unpack it via "tar -zxvf gnuplot......" assuming you downloaded the tar.gz file.


cd into the gnuplot4.2.3 directory and execute:
./configure --x-libraries=/usr/lib --x-includes=/usr/include/X11 --with-readline=gnu

make

make install


GRACIAS A IFOD DESDE EEUSER.COM

SAludos a todos...
  #3 (permalink)  
Antiguo 13/12/2008, 15:08
Avatar de j0ni-Snip3r  
Fecha de Ingreso: noviembre-2008
Mensajes: 42
Antigüedad: 15 años, 5 meses
Puntos: 0
Respuesta: Instalar GnuPlot 4.2.4 en Linux

facil :D


saludos!
  #4 (permalink)  
Antiguo 15/12/2008, 05:56
 
Fecha de Ingreso: diciembre-2008
Mensajes: 29
Antigüedad: 15 años, 4 meses
Puntos: 0
De acuerdo Respuesta: Instalar GnuPlot 4.2.4 en Linux

Cita:
Iniciado por xax_007 Ver Mensaje
Ya encontre la solucion, en ingles, pero solucion... xDDD

An avid gnuplot user, I built it locally on my eeepc. There are some hoops to jump through, but the result is gnuplot4.2 with as many features as you can want:

First add debian repository (http://wiki.eeeuser.com/howto:adddebianfeeds) and install the following packages

apt-get install build-essential
apt-get install libx11-dev
apt-get install libreadline-dev
apt-get install ncurses-dev
apt-get install libgd-dev
apt-get install libjpeg-progs # might not be needed
apt-get install latex # for latex terminals if you want them


download the gnuplot 4.2.3 tarball (http://sourceforge.net/project/showfile … up_id=2055) and unpack it via "tar -zxvf gnuplot......" assuming you downloaded the tar.gz file.


cd into the gnuplot4.2.3 directory and execute:
./configure --x-libraries=/usr/lib --x-includes=/usr/include/X11 --with-readline=gnu

make

make install


GRACIAS A IFOD DESDE EEUSER.COM

SAludos a todos...

A mi entender todo esto significa:

Añadimos algunas opciones que por defecto no vienen instalas en el Xandros...
y se las cogemos a debian para ello instalamos el repositorio de debian:
Seguimos los pasos que vienen en:

http://wiki.eeeuser.com/howto:adddebianfeeds

que son:

As Xandros is based upon the debian kernel a lot of additional software packages can be downloaded from the debian feeds. Adding the debian feeds is simple:

1.
start eeePC ;

ENCENDEMOS EL EEEPC

2.
get a shell by typing ctrl-alt-T ;

ABRIMOS UNA VENTANA DE COMANDOS O TERMINAL

SI NO SABEMOS COMO EN LA VERSION EASY DEL EEEPC, ABRIMOS LA PESTAÑA TRABAJAR ==> ADMINISTRADOR DE ARCHIVOS ==> HERRAMIENTAS ==> ABRIR VENTANA DE LA CONSOLA.

3.
become superuser by typing sudo su - ;

ENTRAMOS COMO SUPER USUARIO TECLEADO su Y NOS PEDIRA LA CONTRASEÑA EN CASO QUE TENGAMOS UNA PARA EL SUPERUSUARIO O ROOT

4.
browse to http://www.debian.org/mirror/mirrors_full and select a mirror near to you. You might want to use netselect to find which one has the best connectivity but netselect is outside the scope of this post. Also apt-spy might be usable.

SELECCIONAMOS UN SITIO DESDE DONDE DESCARGAR EL REPOSITORIO, (una direccion web)

5.
Use VI as your text editor. http://users.tkk.fi/~thyle/vi_opas.html has a nice tutorial to get you started.

MEJOR QUE EL VI PONEMOS EN LA VENTANA DE COMANDOS:

sudo kwrite /etc/apt/sources.list

6.
edit /etc/apt/sources.list (vi /etc/apt/sources.list) and add the following line:
deb <your mirror goes here> stable main contrib non-free
As I am in NL I entered ftp://ftp.nl.debian.org/debian at the place where it says <your mirror goes here>, but if you are not in NL you should find a closer mirror (could also be an http mirror)

DENTRO DEL ARCHIVO sources.list ESCRIBIMOS:

deb <Sitio de donde descargar el repositorio> stable main contrib non-free

El sitio de donde descargar el repositorio lo escribimos sin <>, tomamos como ejemplo el que ya hay escrito en el fichero sources.list


7.
run apt-get update This will update the packages lists. (btw, I use apt-get from the command line; you might also try to use synaptic)

TECLEAMOS apt-get update EN LA TERMINAL.

Note: probably kernel dependent modules do not work. Therefore it is probably also not a good idea to run commands like “apt-get upgrade”. The article at Adding Xandros Repositories has instructions about making this much safer.


_------------------------------------------------------------------------------------_

Ahora qu ya tenemos el repositorio de debian vamos poniendo en la consola de comandos o terminal las siguientes acciones una por una:

apt-get install build-essential
apt-get install libx11-dev
apt-get install libreadline-dev
apt-get install ncurses-dev
apt-get install libgd-dev
apt-get install libjpeg-progs # might not be needed
apt-get install latex # for latex terminals if you want them

si nos pide confirmacion para instalar le damos a que si.

Una vez instalado todo descargamos el Gnuplot desde www.gnuplot.info ( si no es desde aqui buscamos en el google gnuplot) Buscamos downloads y descargamos la version para linux.

descomprimimos el archivo descargado con:

tar -zxvf nombredelarchivodescargado.tar.gz

entramos en la carpeta creada al descomprimir con el comando:

cd nombredecarpeta

Lanzamos el churro siguiente en la consola:

./configure --x-libraries=/usr/lib --x-includes=/usr/include/X11 --with-readline=gnu

despues:

make

y por ultimo:

make install

GO WELL, que os vaya bueno...

para alguna duda, postear en el mensaje...
perdonen las faltas de ortografia...

xax_007
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 07:42.