Archivo de la categoría: Nix

Images MouseOver

 <script language=»javascript»>   //Images MouseOver  function imageMouseOver(){  document.supercomputadora.src=»images/scomputer.jpg»; }function imageMouseOut(){  document.supercomputadora.src=»images/scomputergris.jpg»; }   </script> </head> <body><a href=»#» onmouseover=»javascript:imageMouseOver()» onmouseout=»javascript:imageMouseOut()»<img src=»images/scomputergris.jpg» name=»supercomputadora» /></a> </body> Tags: mouseover, mouseout

Design Properties and Methods

Hyperlink Properties ( URL, TITLE, DESCRIPTION) Methods (Create, Display) Create Construction Function CONSTRUCTOR – Its a special function designed to create an instance of an object May or may not containg variables used to initialize the object Uses the “this” keyword to reference the current instance of the object Develop Methods functions that change the… Leer más: Design Properties and Methods »

Editor Ed Unix V7

El editor ed fue hecho con la idea de tener un editor rápido y pequeño con lo mínimo indispensable. Es, además, un editor confiable y que puede ser usado en las peores condiciones: con terminales lentas, en conexiones por modem y, quizá la más interesante, desde archivos por bloques. La mayoría de los editores asumen… Leer más: Editor Ed Unix V7 »

Solaris Tips

Mounting the floppy: # volcheck Now it should be mounted properly! Install gcc from www.sunfreeware.com: Download gcc for Solaris and do: # gunzip [package.gz] # pkgadd -d [package] Make symbolic links for: # ln -s /usr/local/bin/gcc /bin/gcc # ln -s /usr/ccs/bin/make /bin/make # ln -s /usr/ccs/bin/ar /bin/ar # ln -s /usr/ccs/bin/ld /bin/ld or add the… Leer más: Solaris Tips »

PHP for Apache2 on Solaris 10

http://meljr.com/~meljr/PHPSolaris10.html Version 1.02 January 23, 2006 by: Mel Lester Jr. ([email protected]) Log into the global zone as root and ensure that /opt/csw/bin and /usr/sfw/bin are in $PATH global# echo $PATH /opt/csw/bin:/usr/sfw/bin:/usr/sbin:/usr/bin:/usr/openwin/bin:/usr/dt/bin:/usr/ccs/bin

Apache 2 on Solaris 10

Version 1.03 January 18, 2006 by: Mel Lester Jr. ([email protected]) Apache 2.xx is included with Solaris 10. A few configuration details need to be addressed prior to starting Apache 2.xx: Login as root wired# _ Copy the file, /etc/apache2/httpd.conf-example to /etc/apache2/httpd.conf wired# cp /etc/apache2/httpd.conf-example /etc/apache2/httpd.conf Edit /etc/apache2/httpd.conf Set ServerName if necessary (default is 127.0.0.1) Set… Leer más: Apache 2 on Solaris 10 »

Tar y Gzip

On the command line To pack tar files, use the following commands: for an uncompressed tar file: tar -cf packed_files.tar file_to_pack1 file_to_pack2 … to pack and compress (one step at a time): tar -cf packed_files.tar file_to_pack1 file_to_pack2 …gzip packed_files.tar to pack and compress all at once: tar -cf – file_to_pack1 file_to_pack2 … | gzip -c… Leer más: Tar y Gzip »

Opciones de Arranque knoppix

Knoppix posee una serie de opciones que pueden ser especificadas de su consola de arranque para alterar su comportamiento «default», algunas de las principales se describen a continuación, además de una ilustración sobre dicha consola : Arranque (Oprima gráfica para ampliar) Opciones de Ambiente Gráfico * knoppix lang=es : Ambiente de operación en castellano/español .… Leer más: Opciones de Arranque knoppix »