Linux es como el sexo si es gratis mejor
COMO SACAR UN TREN EN LA CONSOLA DE DEBIAN PDF Imprimir E-mail
Documentación - Documentación Sistema Operativo
Escrito por Sergio Gonzalez /sergiokof   
Viernes, 06 de Agosto de 2010 20:19


Entre las curiosidades que podemos ver en nuestro debian.

  • la forma de hacerlo es la siguiente:

 

apt-get install sl
  • listo cuando digitemos en la consola el comando sl nos aparecera un trensito.

tren.png

  • Podemos tener las siguientes opciones:
  • -a = tren en peligro

  • -l = pequeño tren

  • -F= el tren se desplaza de abajo hacia arriba

  • -e= paramos el tren con CTRL+C

Última actualización el Viernes, 06 de Agosto de 2010 20:21
 
Que es el software libre en un click PDF Imprimir E-mail
Videos - Videos
Escrito por Sergio Gonzalez /sergiokof   
Jueves, 05 de Agosto de 2010 22:00
 
El cerebro g33k PDF Imprimir E-mail
Caricaturas - Caricaturas
Escrito por Sergio Gonzalez /sergiokof   
Jueves, 05 de Agosto de 2010 16:40
http://www.splitreason.com/Product_Images/b4cff30d9da0.jpg
Última actualización el Jueves, 05 de Agosto de 2010 16:41
 
jugar tetris desde consola PDF Imprimir E-mail
Juegos - Estrategia
Escrito por Sergio Gonzalez /sergiokof   
Miércoles, 04 de Agosto de 2010 19:24

http://foo.upc.es/blog/wp-content/uploads/2008/12/tetris.jpg

Resulta que mirando mis rss me encontre con este articulo de un programita en C que crea un tetris totalmente funcional desde la consola.

Si lo quieres tener instalado tendremos que hacer lo siguiente:

 

sergiokof:/home/sergiokof# cd te
templates/    terminos.odt  tetris/      
sergiokof:/home/sergiokof# cd tetris/
sergiokof:/home/sergiokof/tetris# ls
sergiokof:/home/sergiokof/tetris# wget ftp://ftp.vmlinux.org/pub/People/jocke/micro-tetris/tetris-1.2.0.tar.bz2
--2005-01-26 00:27:41--  ftp://ftp.vmlinux.org/pub/People/jocke/micro-tetris/tetris-1.2.0.tar.bz2
           => `tetris-1.2.0.tar.bz2'
Resolviendo ftp.vmlinux.org... 92.43.35.29
Connecting to ftp.vmlinux.org|92.43.35.29|:21... conectado.
Identificándose como anonymous ... ¡Dentro!
==> SYST ... hecho.   ==> PWD ... hecho.
==> TYPE I ... hecho.  ==> CWD /pub/People/jocke/micro-tetris ... hecho.
==> SIZE tetris-1.2.0.tar.bz2 ... 7834
==> PASV ... hecho.   ==> RETR tetris-1.2.0.tar.bz2 ... hecho.
Longitud: 7834 (7,7K)

100%[=========================================================================>] 7.834       37,0K/s   in 0,2s   

2005-01-26 00:27:50 (37,0 KB/s) - `tetris-1.2.0.tar.bz2' saved [7834]

sergiokof:/home/sergiokof/tetris# ls
tetris-1.2.0.tar.bz2
sergiokof:/home/sergiokof/tetris# tar -xvf tetris-1.2.0.tar.bz2
tetris-1.2.0/
tetris-1.2.0/.gitignore
tar: tetris-1.2.0/.gitignore: time stamp 2010-08-01 17:12:42 is 173983486.153811562 s in the future
tetris-1.2.0/AUTHORS
tar: tetris-1.2.0/AUTHORS: time stamp 2010-08-01 17:12:42 is 173983486.153330085 s in the future
tetris-1.2.0/LICENSE
tar: tetris-1.2.0/LICENSE: time stamp 2010-08-01 17:12:42 is 173983486.153140301 s in the future
tetris-1.2.0/Makefile
tar: tetris-1.2.0/Makefile: time stamp 2010-08-01 17:12:42 is 173983486.152956701 s in the future
tetris-1.2.0/README
tar: tetris-1.2.0/README: time stamp 2010-08-01 17:12:42 is 173983486.152343742 s in the future
tetris-1.2.0/TODO
tar: tetris-1.2.0/TODO: time stamp 2010-08-01 17:12:42 is 173983486.151990612 s in the future
tetris-1.2.0/conio.h
tar: tetris-1.2.0/conio.h: time stamp 2010-08-01 17:12:42 is 173983486.15179379 s in the future
tetris-1.2.0/tetris.c
tar: tetris-1.2.0/tetris.c: time stamp 2010-08-01 17:12:42 is 173983486.15157547 s in the future
tetris-1.2.0/tetris.h
tar: tetris-1.2.0/tetris.h: time stamp 2010-08-01 17:12:42 is 173983486.151388084 s in the future
tar: tetris-1.2.0: time stamp 2010-08-01 17:12:42 is 173983486.15103903 s in the future
sergiokof:/home/sergiokof/tetris# ls
tetris-1.2.0  tetris-1.2.0.tar.bz2
sergiokof:/home/sergiokof/tetris# cd tetris-1.2.0
sergiokof:/home/sergiokof/tetris/tetris-1.2.0# ls
AUTHORS  conio.h  LICENSE  Makefile  README  tetris.c  tetris.h  TODO
sergiokof:/home/sergiokof/tetris/tetris-1.2.0# make && sudo make install
make: Atención: El archivo `Makefile' tiene una hora de modificación 1,7e+08 en el futuro
cc  -DENABLE_SCORE -DENABLE_PREVIEW -DENABLE_HIGH_SCORE  -c -o tetris.o tetris.c
cc   tetris.o   -o tetris
make: atención: Se ha detectado una desviación en el reloj. La construcción podría estar incompleta.
make: Atención: El archivo `Makefile' tiene una hora de modificación 1,7e+08 en el futuro
cc  -DENABLE_SCORE -DENABLE_PREVIEW -DENABLE_HIGH_SCORE  -c -o tetris.o tetris.c
make: atención: Se ha detectado una desviación en el reloj. La construcción podría estar incompleta.
sergiokof:/home/sergiokof/tetris/tetris-1.2.0# te
teamviewer       telnet           terminator       testparm.samba3  testrec          texi2pdf
tee              telnet.netkit    test             testrb           tetris           texindex
telinit          tempfile         testparm         testrb1.8        texi2dvi        
sergiokof:/home/sergiokof/tetris/tetris-1.2.0# te
teamviewer       telnet           terminator       testparm.samba3  testrec          texi2pdf
tee              telnet.netkit    test             testrb           tetris           texindex
telinit          tempfile         testparm         testrb1.8        texi2dvi        
sergiokof:/home/sergiokof/tetris/tetris-1.2.0# tetris

 

Última actualización el Miércoles, 04 de Agosto de 2010 19:47
 
Revista Linux+ del mes de Agosto PDF Imprimir E-mail
Descargas - Descarga De Revistas de Software Libre
Escrito por Sergio Gonzalez /sergiokof   
Martes, 03 de Agosto de 2010 14:58
http://lpmagazine.org/system/files/files/443/original/lp_08_2010_ES.gif?1280501915
Última actualización el Martes, 03 de Agosto de 2010 16:15
 
<< Inicio < Prev 1 2 3 4 5 6 7 8 9 10 Próximo > Fin >>

Página 3 de 20

Contenidos Login:



Publicidad

http://sphotos.ak.fbcdn.net/hphotos-ak-ash2/hs016.ash2/34158_103264106394189_100001317995938_22119_3865570_n.jpg

G33ks en linea

Tenemos 2 invitados conectado
http://contenidosdidacticos.com/portal/sergiokof/radiognu.jpeg

Siguenos

http://theme.status.net/0.9.2/identica/logo.png