Cita:
Iniciado por xax_007 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