<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>www.mrebola.com &#187; Asesoria</title>
	<atom:link href="http://mrebola.com/category/asesoria/feed/" rel="self" type="application/rss+xml" />
	<link>http://mrebola.com</link>
	<description>Life, Tech , Drums , and more..</description>
	<lastBuildDate>Thu, 15 Apr 2010 15:32:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>API Google Traductor</title>
		<link>http://mrebola.com/api-google-traductor/</link>
		<comments>http://mrebola.com/api-google-traductor/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 16:19:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Asesoria]]></category>

		<guid isPermaLink="false">http://mrebola.com/?p=245</guid>
		<description><![CDATA[Por fin, Google lanza una API de traducción de idiomas, aunque en forma de AJAX
En diciembre nos preguntábamos si Google iba a lanzar alguna API para traducir palabras a diferentes idiomas, puesto que este servicio lo está ofreciendo dentro de varios de sus herramientas (traductor automático, &#8216;Google Talk&#8216;). De esta manera, los desarrollaores de aplicaciones [...]]]></description>
			<content:encoded><![CDATA[<h1>Por fin, Google lanza una API de traducción de idiomas, aunque en forma de AJAX</h1>
<p>En diciembre nos preguntábamos si Google iba a lanzar <a href="http://google.dirson.com/post/3799-api-google-traducir-palabras/">alguna API para traducir palabras a diferentes idiomas</a>, puesto que este servicio lo está ofreciendo dentro de varios de sus herramientas (<a href="http://google.dirson.com/o.a/google-traductor/">traductor automático</a>, &#8216;<a href="http://google.dirson.com/o.a/googletalk/">Google Talk</a>&#8216;). De esta manera, los desarrollaores de aplicaciones web podrían aprovechar la potencia de la tecnología de traducción de Google para mejorar la forma en la que muestran la información a los usuarios.</p>
<p>Ahora, se anuncia el denominado &#8216;Google AJAX Language API&#8217;, un conjunto de herramientas AJAX que permiten a los desarrolladores detectar y traducir textos en 13 idiomas (uno de ellos, el español). Tenéis la documentación en <a href="http://code.google.com/apis/ajaxlanguage/documentation/">este enlace</a> y un ejemplo que hemos creado en <a href="http://google.dirson.com/lab/api-ajax-sample.html">este otro enlace</a>. Como podéis observar en el código fuente del HTML, la traducción se realiza a través del navegador web del usuario, con llamadas AJAX a los servidores de Google.</p>
<p>De esta manera, el desarrollador nunca podrá acceder a los servidores de Google, aunque seguro que con ingeniería inversa, y analizando el código de <a href="http://www.google.com/jsapi">este JavaScript</a> se pueden llegar a ellos. Nosotros en su día ya os mostramos en <a href="http://google.dirson.com/lab/google-translate-hack.php">esta herramienta</a> unas pistas para poder acceder a estos servidores.</p>
<p>Si simplemente quieres detectar el idioma de un texto (por ejemplo, para clasificar documentos que rastreas), puedes utilizar <a href="http://odur.let.rug.nl/%7Evannoord/TextCat/">esta herramienta libre hecha con Perl</a> (ver <a href="http://odur.let.rug.nl/%7Evannoord/TextCat/Demo/">demo</a>) que nos permite, desde nuestro propio servidor y sin acceder a servicios externos, detectar más de 60 idiomas de todo el mundo.</p>
]]></content:encoded>
			<wfw:commentRss>http://mrebola.com/api-google-traductor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Equivalencias entre pt, px, em y porcentaje</title>
		<link>http://mrebola.com/equivalencias-entre-pt-px-em-y-porcentaje/</link>
		<comments>http://mrebola.com/equivalencias-entre-pt-px-em-y-porcentaje/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 20:44:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Asesoria]]></category>

		<guid isPermaLink="false">http://mrebola.com/?p=240</guid>
		<description><![CDATA[Útil recurso para los que maquetamos en css, una tabla de  equivalencias entre los diferentes tipos de medidas, ya que no siempre  se usa la misma, dependiendo el tipo de diagramación que escojamos para  el proyecto tendremos que usar unas u otras (o combinaciones entre  varias). No todo se soluciona ya [...]]]></description>
			<content:encoded><![CDATA[<p>Útil recurso para los que maquetamos en css, una tabla de  equivalencias entre los diferentes tipos de medidas, ya que no siempre  se usa la misma, dependiendo el tipo de diagramación que escojamos para  el proyecto tendremos que usar unas u otras (o combinaciones entre  varias). No todo se soluciona ya que los distintos navegadores las  interpretan de formas diferentes pero puede ser una buena ayuda.</p>
<table width="65%" border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td width="25%">Pts</td>
<td width="25%">Px</td>
<td width="25%">Em</td>
<td width="25%">Porcentaje</td>
</tr>
<tr>
<td width="25%">6pt</td>
<td width="25%">8px</td>
<td width="25%">0.5em</td>
<td width="25%">50%</td>
</tr>
<tr>
<td width="25%">7pt</td>
<td width="25%">9px</td>
<td width="25%">0.55em</td>
<td width="25%">55%</td>
</tr>
<tr>
<td width="25%">7.5pt</td>
<td width="25%">10px</td>
<td width="25%">0.625em</td>
<td width="25%">62.5%</td>
</tr>
<tr>
<td width="25%">8pt</td>
<td width="25%">11px</td>
<td width="25%">0.7em</td>
<td width="25%">70%</td>
</tr>
<tr>
<td width="25%">9pt</td>
<td width="25%">12px</td>
<td width="25%">0.75em</td>
<td width="25%">75%</td>
</tr>
<tr>
<td width="25%">10pt</td>
<td width="25%">13px</td>
<td width="25%">0.8em</td>
<td width="25%">80%</td>
</tr>
<tr>
<td width="25%">10.5pt</td>
<td width="25%">14px</td>
<td width="25%">0.875em</td>
<td width="25%">87.5%</td>
</tr>
<tr>
<td width="25%">11pt</td>
<td width="25%">15px</td>
<td width="25%">0.95em</td>
<td width="25%">95%</td>
</tr>
<tr>
<td width="25%">12pt</td>
<td width="25%">16px</td>
<td width="25%">1em</td>
<td width="25%">100%</td>
</tr>
<tr>
<td width="25%">13pt</td>
<td width="25%">17px</td>
<td width="25%">1.05em</td>
<td width="25%">105%</td>
</tr>
<tr>
<td width="25%">13.5pt</td>
<td width="25%">18px</td>
<td width="25%">1.125em</td>
<td width="25%">112.5%</td>
</tr>
<tr>
<td width="25%">14pt</td>
<td width="25%">19px</td>
<td width="25%">1.2em</td>
<td width="25%">120%</td>
</tr>
<tr>
<td width="25%">14.5pt</td>
<td width="25%">20px</td>
<td width="25%">1.25em</td>
<td width="25%">125%</td>
</tr>
<tr>
<td width="25%">15pt</td>
<td width="25%">21px</td>
<td width="25%">1.3em</td>
<td width="25%">130%</td>
</tr>
<tr>
<td width="25%">16pt</td>
<td width="25%">22px</td>
<td width="25%">1.4em</td>
<td width="25%">140%</td>
</tr>
<tr>
<td width="25%">17pt</td>
<td width="25%">23px</td>
<td width="25%">1.45em</td>
<td width="25%">145%</td>
</tr>
<tr>
<td width="25%">18pt</td>
<td width="25%">24px</td>
<td width="25%">1.5em</td>
<td width="25%">150%</td>
</tr>
<tr>
<td width="25%">20pt</td>
<td width="25%">26px</td>
<td width="25%">1.6em</td>
<td width="25%">160%</td>
</tr>
<tr>
<td width="25%">22pt</td>
<td width="25%">29px</td>
<td width="25%">1.8em</td>
<td width="25%">180%</td>
</tr>
<tr>
<td width="25%">24pt</td>
<td width="25%">32px</td>
<td width="25%">2em</td>
<td width="25%">200%</td>
</tr>
<tr>
<td width="25%">26pt</td>
<td width="25%">35px</td>
<td width="25%">2.2em</td>
<td width="25%">220%</td>
</tr>
<tr>
<td width="25%">27pt</td>
<td width="25%">36px</td>
<td width="25%">2.25em</td>
<td width="25%">225%</td>
</tr>
<tr>
<td width="25%">28pt</td>
<td width="25%">37px</td>
<td width="25%">2.3em</td>
<td width="25%">230%</td>
</tr>
<tr>
<td width="25%">29pt</td>
<td width="25%">38px</td>
<td width="25%">2.35em</td>
<td width="25%">235%</td>
</tr>
<tr>
<td width="25%">30pt</td>
<td width="25%">40px</td>
<td width="25%">2.45em</td>
<td width="25%">245%</td>
</tr>
<tr>
<td width="25%">32pt</td>
<td width="25%">42px</td>
<td width="25%">2.55em</td>
<td width="25%">255%</td>
</tr>
<tr>
<td width="25%">34pt</td>
<td width="25%">45px</td>
<td width="25%">2.75em</td>
<td width="25%">275%</td>
</tr>
<tr>
<td width="25%">36pt</td>
<td width="25%">48px</td>
<td width="25%">3em</td>
<td width="25%">300%</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://mrebola.com/equivalencias-entre-pt-px-em-y-porcentaje/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Datos de el gmail  SMTP para correos salientes</title>
		<link>http://mrebola.com/datos-de-el-gmail-smtp-para-correos-salientes/</link>
		<comments>http://mrebola.com/datos-de-el-gmail-smtp-para-correos-salientes/#comments</comments>
		<pubDate>Sat, 15 Aug 2009 22:51:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Asesoria]]></category>

		<guid isPermaLink="false">http://mrebola.com/?p=227</guid>
		<description><![CDATA[


El servidor de correo entrante (POP3) requiere SSL:
pop.gmail.com
Usar SSL: Sí
Puerto: 995 


El servidor de correo saliente (SMTP) requiere TLS:
smtp.gmail.com (usar autenticación)
Usar autenticación: Sí
Usar STARTTLS: Sí (en algunos clientes se denomina SSL)
Puerto: 465 o 587 


Nombre de cuenta: 
tu nombre de usuario de Gmail (incluido @gmail.com). 


Dirección de correo electrónico: 
tu dirección de correo electrónico completa [...]]]></description>
			<content:encoded><![CDATA[<table border="1" cellspacing="0" cellpadding="2">
<tbody>
<tr>
<td><span><strong>El servidor de correo entrante (POP3) requiere SSL:</strong></span></td>
<td><span style="font-family: Courier New,Courier,mono;">pop.gmail.com</span><span><br />
<strong>Usar SSL</strong>: Sí<br />
<strong>Puerto</strong>: 995 </span></td>
</tr>
<tr>
<td><span><strong>El servidor de correo saliente (SMTP) requiere TLS:</strong></span></td>
<td><span style="font-family: Courier New,Courier,mono;">smtp.gmail.com</span><span> (usar autenticación)<br />
<strong>Usar autenticación</strong>: Sí<br />
<strong>Usar STARTTLS</strong>: Sí (en algunos clientes se denomina SSL)<br />
<strong>Puerto</strong>: 465 o 587 </span></td>
</tr>
<tr>
<td><span><strong>Nombre de cuenta: </strong></span></td>
<td><span>tu nombre de usuario de Gmail (incluido <span style="font-family: Courier New,Courier,mono;">@gmail.com</span>). </span></td>
</tr>
<tr>
<td><span><strong>Dirección de correo electrónico: </strong></span></td>
<td><span>tu dirección de correo electrónico completa de Gmail (<span style="font-family: Courier New,Courier,mono;">nombredeusuario@gmail.com</span>) </span></td>
</tr>
<tr>
<td><span><strong>Contraseña: </strong></span></td>
<td><span>tu contraseña de Gmail </span></td>
</tr>
</tbody>
</table>
<p><a href="http://mail.google.com/support/bin/answer.py?answer=13287">Ver mas</a></p>
]]></content:encoded>
			<wfw:commentRss>http://mrebola.com/datos-de-el-gmail-smtp-para-correos-salientes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Como usar dos ISP y sumar el ancho de banda en conexiones ADSL/DSL/Cable</title>
		<link>http://mrebola.com/como-usar-dos-isp-y-sumar-el-ancho-de-banda-en-conexiones-adsldslcable/</link>
		<comments>http://mrebola.com/como-usar-dos-isp-y-sumar-el-ancho-de-banda-en-conexiones-adsldslcable/#comments</comments>
		<pubDate>Sat, 15 Aug 2009 19:48:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Asesoria]]></category>

		<guid isPermaLink="false">http://mrebola.com/?p=223</guid>
		<description><![CDATA[Algunas veces se han planteado las siguientes preguntas:
1) Tengo dos conexiones ADSL, o una ADSL y otra de cable. ¿Cómo puedo &#8220;sumar&#8221; el ancho de banda y así aprovechar simultáneamente ambas?
2) Tengo dos conexiones ADSL y quiero usar una para navegar y otra para compartir datos con amigos, para lo cual uso algún programa seguro [...]]]></description>
			<content:encoded><![CDATA[<p>Algunas veces se han planteado las siguientes preguntas:</p>
<blockquote><p>1) Tengo dos conexiones ADSL, o una ADSL y otra de cable. ¿Cómo puedo &#8220;sumar&#8221; el ancho de banda y así aprovechar simultáneamente ambas?</p>
<p>2) Tengo dos conexiones ADSL y quiero usar una para navegar y otra para compartir datos con amigos, para lo cual uso algún programa seguro P2P.</p>
<p>3) Tengo dos conexiones ADSL y quiero usar una para Internet y la otra para conectarme a mi empresa en teletrabajo y sólo para ello.</p></blockquote>
<p>Bien, estos casos, aunque similares, son totalmente diferentes. Empecemos con una introducción al funcionamiento del TCP/IP.</p>
<h2>INTRODUCCIÓN: Funcionamiento del TCP/IP</h2>
<p>En una máquina, el TCP/IP tiene siempre el mismo comportamiento: en función de la tabla de rutas (visible mediante el comando &#8216;route print&#8217;), la capa de red de TCP/IP selecciona por dónde y a quién enviar el paquete de datos. Si existe una ruta específica para una determinada dirección de red, o bien para un rango de direcciones, se enviará al gateway /puerta de enlace que está definida en la tabla de rutas. Si no, se enviará al gateway por defecto, el cual es aquel que en la tabla de rutas está definido como 0.0.0.0. Si existiesen varios con dirección 0.0.0.0 se seleccionará aquel que tenga menor &#8220;métrica&#8221;, y a igualdad de métrica se seleccionará el primero de ellos (leyendo la tabla de rutas de abajo a arriba).</p>
<p>Las capas del TCP/IP ante una tabla estática, una vez que han decidido no cambian su decisión. Y puerta de salida (gateway) activa sólo puede haber una: cuando salimos de una casa lo hacemos por una puerta, no por dos a la vez.</p>
<p>Ante esto, podemos ver que los tres problemas planteados tienen &#8220;en principio&#8221; las siguientes respuestas:</p>
<blockquote><p>1) No es posible, o un ISP o bien el otro.</p>
<p>2) No es posible ya que las IP de los destinatarios P2P pueden ser cualquiera. Es similar al caso 1</p>
<p>3) Es posible, siempre y cuando establezcamos la tabla de rutas correctamente, añadiendo una entrada a la dirección o direcciones de la empresa y apuntando al gateway que deseamos. Igualmente, para el resto de direcciones modificaremos si es necesario la tabla de rutas para que apunte al otro gateway. Esto es sencillo de realizar con el comando &#8216;route add&#8217; y &#8216;route delete&#8217; y con el parámetro &#8216;persistent&#8217; si deseamos hacerlas persistentes y no tener que redefinirlas en cada reinicio de la máquina (la &#8216;persistencia&#8217; sólo es posible en sistemas NT, XP, W200x y no es posible en sistemas W9X / ME). Pueden verse otros artículos míos de detalle sobre el funcionamiento del TCP/IP y cómo configurar en estos casos.</p></blockquote>
<p>El punto 1) puede solucionarse mediante el mecanismo de balanceo de carga, el cual sigue cumpliendo la normativa RFC del TCP/IP y, básicamente, y aunque no es real el funcionamiento ya que se utilizan otros mecanismos, podríamos &#8220;intuir&#8221; que si tenemos un software que va contando los paquetes enviados y va decidiendo en función del número de ellos por qué puerta de enlace enviar -mediante criterios más o menos &#8216;inteligentes&#8217;-, simplemente cambiando la tabla de rutas irá el sistema enviando a uno u otro. Aunque realmente se usan otros procedimientos, esta lógica &#8216;intuitiva&#8217; puede servirnos.</p>
<p>Hay dos posibles soluciones para el Balanceo de Carga, una software (y me voy a ceñir únicamente a soluciones en el Sistema operativo XP) y otra hardware.</p>
<p>Realmente la descomposición completa, para abordar toda la casuística, sería:</p>
<blockquote><p>* Balanceo de carga (Load Balancing) por software.<br />
* Balanceo de carga por hardware.<br />
* &#8216;Circuit Bonding&#8217; -es solo solución hardware-.</p></blockquote>
<p>La diferencia entre balanceo de carga y &#8216;circuit bonding&#8217; es que, en la primera, si tenemos dos líneas ADSL de 1024 Mbps cada usuario o cada conexión tendrá un máximo de 1024, lo que sucede es que lanzando las dos conexiones a la vez, tendremos un ancho de banda total de 2048, pero por cada conexión, limitado a 1024. En cambio en &#8216;circuit bonding&#8217; -sólo hardware y que veremos al final- es una suma real y cada conexión puede alcanzar los 2048.</p>
<p>El ejemplo clásico es si nos estamos bajando un archivo grande, un ISO por ejemplo, en Load Balancing, (sin usar gestores de descargas que realizan conexiones múltiples), sólo estaremos bajando a 1024 -y nos quedan los otros 1024 libres para cualquier otra cosa. En cambio en &#8216;circuit bonding&#8217; tendremos realmente los 2048 de bajada disponibles para dicha conexión.</p>
<h2>BALANCEO DE CARGA POR SOFTWARE (XP)</h2>
<p>Necesitaremos al menos dos NIC&#8217;s (tarjetas de red) si tenemos un PC únicamente, o bien 3 NIC&#8217;s si tenemos una red: dos de las NIC&#8217;s una a cada router ADSL, y la tercera NIC a la red local.</p>
<p>Únicamente hay en la actualidad dos programas capaces de hacerlo: Intergate <a href="http://www.vicomsoft.com/">www.vicomsoft.com</a> y surfdoubler de midpoint software (www.midpoint.com). Esta última Web está cerrada en la actualidad -no sé si transitoriamente-, pero su software, al menos de demo, puede todavía encontrarse en muchos sitios de Internet.</p>
<p>La solución de midpoint, aunque es un software un poco antiguo y para W95 / NT con una interface un poco &#8216;cutre&#8217;, es una solución sencilla de configurar, rápida de instalar, estable y de un funcionamiento correcto. Sus mecanismos de balanceo y toma de decisión de la interface es correcta y rapidísima. En este sentido me parece mejor que la solución de Intergate.</p>
<p>En Intergate, existe actualmente la versión 9.02 en su Web, la cual puede bajarse para probarla. Esta versión, he sido incapaz de que funcionase, ni en XP-SP2 ni en W2000, ni en W2003. Entiendo que sólo es problema de la versión demo y no de la definitiva. El problema es que elimina el TCP/IP de Microsoft en las interfaces a Internet y lo sustituye por un servicio suyo que da la salida IP. Este servicio no arranca en ningún caso en sistemas limpios y recién instalados.</p>
<p>Leyendo documentación en Google, encontré buenas criticas de la versión anterior (8.60) y, ante la imposibilidad de obtenerla de Intergate, decidí bajarla de la red con el consiguiente peligro que esto conlleva (25 spyware y 7 virus). Aislada en una máquina virtual, a pesar de la infección, conseguí extraer los ejecutables reales limpios para prueba en otra instalación. Una vez instalado, -los manuales de la 9.02 sirven perfectamente para la versión anterior 8.60- su funcionamiento es totalmente correcto. Únicamente la matización, a nivel particular, de que no me gusta la desactivación del TCP de Microsoft y el uso de su stack IP independiente para este caso.</p>
<p>En las medidas realizadas, parece mas &#8220;ágil&#8221; la solución de Midpoint que por desgracia ya está sin soporte.</p>
<h2>BALANCEO DE CARGA POR HARDWARE</h2>
<p>El tema es más simple: un router con dos entradas WAN y &#8216;n&#8217; salidas LAN. Cada router ADSL a una entrada WAN y el sistema hardware se encarga del balanceo en función de las peticiones de la LAN.</p>
<p>Los routers que he localizado en la actualidad y que cumplen estas características son:</p>
<blockquote><p>Netgear FVS124G<br />
Xincom XC-DPG402<br />
Xincom XC-DPG502<br />
Xincom XC-DPG602<br />
OvisLink MN200<br />
HotBrick Firewall VPN 600/2<br />
HotBrick Firewall VPN 1200/2<br />
ZyXEL ZyWALL 35<br />
ZyXEL ZyWALL 70<br />
Linksys RV082<br />
Linksys RV016<br />
Linksys RV042<br />
Edimax BR-6104K<br />
Xterasys XR-4106<br />
Pheenet BIG-02/4<br />
Symantec VPN 200<br />
Nexland Pro800<br />
BroDigit NFR3024<br />
Hawking FR24</p></blockquote>
<p>Esta lista no es exhaustiva y, aunque está actualizada en el momento de escribir este artículo, no estará de más una búsqueda en Internet de este tipo de routers si nos decantamos por una solución hardware.</p>
<h2>CIRCUIT BONDIGN</h2>
<p>Es una solución únicamente hardware (llamada también Bonding/muxing), en la cual los clientes tienen realmente la capacidad total, suma de ambas. Al contrario del Balanceo de Carga, en el cual dos líneas de 1024 equivalen a 2 x 1024 y limitada cada conexión a un máximo de 1024, esta solución da realmente los 2048 -suma de ambos- en este ejemplo.</p>
<p>Se necesitan varias condiciones en este caso:</p>
<blockquote><p>1) Se requieren dos routers y otros dos dispositivos llamados MUXS.<br />
2) Un router y un mux deben estar colocados en el ISP, y el otro router y mux en nuestro punto final de conexión.<br />
3) El ISP, por tanto,debe ser único  y no dos ISPs diferentes.<br />
4) El ISP debe soportar, por supuesto, esta configuración. En la actualidad solo está soportado en líneas T1.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://mrebola.com/como-usar-dos-isp-y-sumar-el-ancho-de-banda-en-conexiones-adsldslcable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>THE HEATSINK GUIDE: Maximum CPU temperature and maximum CPU power usage</title>
		<link>http://mrebola.com/the-heatsink-guide-maximum-cpu-temperature-and-maximum-cpu-power-usage/</link>
		<comments>http://mrebola.com/the-heatsink-guide-maximum-cpu-temperature-and-maximum-cpu-power-usage/#comments</comments>
		<pubDate>Sat, 16 May 2009 16:29:31 +0000</pubDate>
		<dc:creator>mrebola</dc:creator>
				<category><![CDATA[Asesoria]]></category>

		<guid isPermaLink="false">http://nnrebola.wordpress.com/2009/05/16/the-heatsink-guide-maximum-cpu-temperature-and-maximum-cpu-power-usage/</guid>
		<description><![CDATA[Introduction
This page is there to answer the common question: &#8220;My CPU is running at xx degrees, is it too hot?&#8220;. Here are the maximum temperatures for the most popular CPUs.
Keep in mind that the onboard measurement facilities are often inaccurate and may report temperatures that are too low. This is especially the case with motherboards [...]]]></description>
			<content:encoded><![CDATA[<h2>Introduction</h2>
<p>This page is there to answer the common question: &#8220;<strong>My CPU is running at xx degrees, is it too hot?</strong>&#8220;. Here are the maximum temperatures for the most popular CPUs.</p>
<p>Keep in mind that the onboard measurement facilities are often inaccurate and may report temperatures that are too low. This is especially the case with motherboards that use a thermal sensor below the CPU to &#8220;guess&#8221; the CPU temperature. The temperature values displayed by the BIOS have usually a correction value added, to compensate for this problem &#8211; but in some cases this correction value may be too low, or the sensor might not be in good contact with the CPU. <em></p>
<p>This means: </em>If the maximum allowed temperature for your CPU is 95°C, and your motherboard reports a CPU temperature of 90°C, then you are <em>not</em> on the safe side.</p>
<p>However, <em>this doesn&#8217;t mean </em>that you should start to panic when your Athlon XP CPU reaches 60 degrees celsius, for example. Most people tend to underestimate normal CPU operating temperatures &#8211; maybe due to overclockers bragging with their super-low CPU temperatures in forums.</p>
<p>Also, note that these values are for CPUs that are <em>not</em> overclocked. <em>Overclocked CPUs may run unstable even if their temperature is way below the maximal specified temperature. </em></p>
<h2>What happens if the maximum operating temperatures are exceeded?</h2>
<p>If your cooler is insufficient and the temperature exceeds the maximum operating temperature, then this does not mean that the CPU is automatically damaged. With AMD CPUs, you will usually encounter crashes if the CPU is overheated; but these go away as soon as the CPU is cooler again. In the long term, running the CPU at a temperature that is too high may reduce the CPU life, since an overheated CPU is more prone to electromigration &#8211; even if it runs stable. With P4 CPUs, the CPU will turn its speed down automatically when it overheats. No damage to the CPU is possible, but the system will get slower while it&#8217;s hot (which, in some cases, users might not even notice).</p>
<p>If you attempt to operate a CPU without heatsink at all, recent AMD CPUs will usually be permanently damaged within seconds, unless special protection circuitry is available on the motherboard. P4 CPUs will run excessively slow without cooler.</p>
<p><strong>The purpose of this page is to give you a quick overview of typical maximum operating temperatures for common CPUs</strong>. In the case of Intel CPUs, values vary a bit; if you need <em>precise</em> information for one specific CPU model, please use the datasheets on the CPU manufacturer&#8217;s website, or visit <a href="http://users.erols.com/chare/elec.htm" target="_new">Chris Hare&#8217;s Processor Electrical Specifications page</a> &#8211; there, you will find more details, and also data for more exotic CPU types than the ones covered here.</p>
<h2>Higher is better here</h2>
<p>On cooling-related websites, lower temperatures typically correspond to better products. On this particular page, the opposite is true: The higher temperatures a CPU can withstand, the less cooling is required. CPUs with low electrical power, but high temperature rating can be used with more quiet and more compact coolers. An example for such a CPU is the Pentium-M, which dissipates less than 25 watts, but may reach temperatures of up to 100°C. The worst-case example is the Pentium 4 Extreme Edition 3.46GHz, which dissipates over 110 watts, but may only reach a maximum temperature of 66°C. Obviously, you need a large and possibly loud cooler here.</p>
<h2>The actual data:</h2>
<table border="0" cellspacing="4" cellpadding="5" width="80%" bgcolor="#ebebeb">
<tbody>
<tr align="left">
<td><strong><em><span style="font-size:xx-small;">AMD Athlon, Athlon 64, Opteron, Duron and Sempron<br />
</span></em></strong></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="4" cellpadding="5" width="80%" bgcolor="#ebebeb">
<tbody>
<tr>
<td style="vertical-align:top;">All Slot A CPUs (Athlon classic, Athlon Thunderbird)</td>
<td style="vertical-align:top;">70°C</td>
</tr>
<tr align="left">
<td>Athlon Socket A up to 1 GHz, Duron up to 1.3GHz</td>
<td>90°C</td>
</tr>
<tr>
<td>Athlon &#8220;Thunderbird&#8221; Socket A 1.1GHz or more</td>
<td>95°C</td>
</tr>
<tr>
<td style="vertical-align:top;">Athlon MP 1.33GHz or more</td>
<td style="vertical-align:top;">95°C</td>
</tr>
<tr>
<td>Athlon XP up to 2100+</td>
<td>90°C</td>
</tr>
<tr>
<td style="vertical-align:top;">Athlon XP 2200+ and faster</td>
<td style="vertical-align:top;">85°C</td>
</tr>
<tr>
<td>Duron &#8220;Applebred&#8221; 1.4G and faster</td>
<td>85°C</td>
</tr>
<tr>
<td style="vertical-align:top;">AMD Opteron</td>
<td style="vertical-align:top;">69 or 70°C<br />
depending<br />
on model</td>
</tr>
<tr>
<td style="vertical-align:top;">Athlon 64, 64FX, Sempron</td>
<td style="vertical-align:top;">Most models 70°C; 65°C for some Socket 939 Athlon 64 models</td>
</tr>
<tr>
<td style="vertical-align:top;">Athlon 64 X2 (dual core)</td>
<td style="vertical-align:top;">65°C</td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="4" cellpadding="5" width="80%" bgcolor="#ebebeb">
<tbody>
<tr align="left">
<td><strong><em><span style="font-size:xx-small;">AMD K6 series</span></em></strong></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="4" cellpadding="5" width="80%" bgcolor="#ebebeb">
<tbody>
<tr align="left">
<td><span style="font-size:xx-small;">All K6 CPUs (166-300MHz) and most K6-2/K6-III CPUs</span></td>
<td>70°C</td>
</tr>
<tr>
<td>K6-2/K6-III CPUs, model name ending with X (e.g. K6-2-450AFX)</td>
<td>65°C</td>
</tr>
<tr>
<td>K6-2-400AFQ (uncommon)</td>
<td>60°C (!)</td>
</tr>
<tr>
<td>K6-2+, K6-III+, most mobile K6/K6-2 CPUs</td>
<td>85°C</td>
</tr>
<tr>
<td>mobile K6/K6-2 model name ending with K (e.g. mobile K6-2-P-400AFK)</td>
<td>80°C</td>
</tr>
</tbody>
</table>
<p>The temperatures specified for AMD CPUs max case surface temperatures. These CPUs do not have an internal diode to measure CPU temperature. The accuracy of the CPU temperature measurement depends on the motherboard; therefore, it is possible that the CPU overheats even though the CPU temperature reported by the motherboard is below the specified maximal temperature.</p>
<table border="0" cellspacing="4" cellpadding="5" width="80%" bgcolor="#ebebeb">
<tbody>
<tr align="left">
<td><strong><em><span style="font-size:xx-small;">Intel Pentium III</span></em></strong></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="4" cellpadding="5" width="80%" bgcolor="#ebebeb">
<tbody>
<tr align="left">
<td><span style="font-size:xx-small;">Pentium III Socket 370 500-866MHz,<br />
<span style="font-size:xx-small;">Pentium III Slot 1 (first generation, OLGA) 550-600MHz,<br />
<span style="font-size:xx-small;">Pentium III Slot 1 (&#8216;Coppermine&#8217;) 500-866MHz</span></span></span></td>
<td>80-85°C depending on model</td>
</tr>
<tr>
<td>Pentium III Socket 370 and Slot 1, 933MHz</td>
<td>75°C</td>
</tr>
<tr>
<td>Pentium III Slot 1 933MHz</td>
<td>60°C (!)</td>
</tr>
<tr>
<td>Pentium III Slot 1 1GHz</td>
<td>70°C for newer versions<br />
60°C (!) for older version</td>
</tr>
<tr>
<td>Pentium III Slot 1 1.13GHz (first version)</td>
<td>62°C (!)</td>
</tr>
</tbody>
</table>
<p>Pentium III max temperatures are the maximum temperatures reported by the thermal junction inside the CPU.</p>
<table border="0" cellspacing="4" cellpadding="5" width="80%" bgcolor="#ebebeb">
<tbody>
<tr align="left">
<td><strong><em><span style="font-size:xx-small;">Intel Celeron / Celeron</span></em></strong></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="4" cellpadding="5" width="80%" bgcolor="#ebebeb">
<tbody>
<tr align="left">
<td><span style="font-size:xx-small;">Celeron 266-433MHz</span></td>
<td>85°C (max. CPU case temperature)</td>
</tr>
<tr>
<td>Celeron 466-533MHz (0.25µ)</td>
<td>70°C (max. CPU case temperature)</td>
</tr>
<tr>
<td>Celeron 533-600MHz (&#8216;Coppermine)</td>
<td>90°C</td>
</tr>
<tr>
<td>Celeron 633 and 667MHz</td>
<td>82°C</td>
</tr>
<tr>
<td>Celeron 700-850 MHz</td>
<td>80°C</td>
</tr>
<tr>
<td style="vertical-align:top;">Celeron 900MHz-1.4GHz</td>
<td style="vertical-align:top;">69-70°C depending on model</td>
</tr>
<tr>
<td style="vertical-align:top;">Celeron 1.7GHz and faster</td>
<td style="vertical-align:top;">67-77°C depending on model</td>
</tr>
</tbody>
</table>
<p>Celeron max temperatures are the maximum temperatures reported by the thermal junction inside the CPU, unless otherwise specified.</p>
<table border="0" cellspacing="4" cellpadding="5" width="80%" bgcolor="#ebebeb">
<tbody>
<tr align="left">
<td><strong><em><span style="font-size:xx-small;">Intel Pentium II</span></em></strong></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="4" cellpadding="5" width="80%" bgcolor="#ebebeb">
<tbody>
<tr align="left">
<td><span style="font-size:xx-small;">Pentium II (1st generation, &#8216;Klamath&#8217;)</span></td>
<td>72-75°C depending on MHz</td>
</tr>
<tr>
<td>Pentium II (2nd generation, 2.0V core), 266-333MHz</td>
<td>65°C</td>
</tr>
<tr>
<td>Pentium II (350-400MHz)</td>
<td>75°C</td>
</tr>
<tr>
<td>Pentium II (450MHz)</td>
<td>70°C</td>
</tr>
</tbody>
</table>
<p>Pentium II temperatures are the maximum temperatures of the thermal transfer plate (on which the heatsink is installed).</p>
<table border="0" cellspacing="4" cellpadding="5" width="80%" bgcolor="#ebebeb">
<tbody>
<tr align="left">
<td><strong><em><span style="font-size:xx-small;">Intel Pentium 4, Pentium 4 Extreme Edition, Pentium M<br />
</span></em></strong></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="4" cellpadding="5" width="80%" bgcolor="#ebebeb">
<tbody>
<tr align="left">
<td><span style="font-size:xx-small;">Pentium 4<br />
<span style="font-style:italic;">Max. temperature depends much on model and clockspeed, but no clear pattern is visible. Consult Intel&#8217;s tech specs for information on your particular model.</span><br style="font-style:italic;" /> <span style="font-style:italic;">(Lowest: P4 Extreme Edition 3.2GHz with 64°C, highest: P4 Willamette 1.8GHz with 78°C).</span> </span></td>
<td>64°C &#8211; 78°C</td>
</tr>
<tr>
<td style="vertical-align:top;">Pentium M</td>
<td style="vertical-align:top;">100°C (!)</td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="4" cellpadding="5" width="80%" bgcolor="#ebebeb">
<tbody>
<tr align="left">
<td><strong><em><span style="font-size:xx-small;">Intel Pentium D (dual core)</span></em></strong></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="4" cellpadding="5" width="80%" bgcolor="#ebebeb">
<tbody>
<tr align="left">
<td><span style="font-size:xx-small;">Pentium D 820 (2.8GHz)</span></td>
<td>63°C</td>
</tr>
<tr>
<td>Pentium D 830 and 840 (3.0-3.2GHz)</td>
<td>69.8°C</td>
</tr>
</tbody>
</table>
<p>Note: Pentium 4 and Pentium D temperature specifications indicate the maximum cover temperature, which is typically lower than the temperature reported by the internal thermal diode. Therefore, your system may be running fine even if the reported &#8220;CPU temperature&#8221; in the BIOS is higher than the temperature specified here. <strong>This does not mean that you&#8217;re on the safe side, though</strong>.</p>
<table border="0" cellspacing="4" cellpadding="5" width="80%" bgcolor="#ebebeb">
<tbody>
<tr align="left">
<td><strong><em><span style="font-size:xx-small;">Intel Pentium Pro</span></em></strong></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="4" cellpadding="5" width="80%" bgcolor="#ebebeb">
<tbody>
<tr align="left">
<td><span style="font-size:xx-small;">Pentium Pro, 256 or 512K L2 cache</span></td>
<td>85°C</td>
</tr>
<tr>
<td>Pentium Pro, 1MB L2 cache</td>
<td>80°C</td>
</tr>
</tbody>
</table>
<p>Pentium Pro temperatures are maximum surface temperatures.</p>
<p><a name="power"></a></p>
<h2>Typical maximum power usage of common CPUs and overclocked CPUs</h2>
<p>Apart from the maximum CPU operating temperature, the maximum power usage under typical worst-case conditions (thermal design power) is also essential for selecting a suitable cooling system. To find out about CPU power usage, please check out <a href="http://users.erols.com/chare/elec.htm" target="_new">Chris Hare&#8217;s Processor Electrical Specifications page</a>. There, you will find values for unoverclocked CPUs running at their specified voltage.</p>
<p><strong>How can you estimate power usage of an overclocked CPU based on this value?</strong></p>
<p>The theory behind calculating the power usage for an overclocked CPU is very simple: Power usage is proportional to clock speed, and proportional to the square of the core voltage.</p>
<p>Before we express this as a formula, let&#8217;s intruduce the following variables:</p>
<ul>
<li> P<sub>s</sub> is the power usage of the non-overclocked CPU</li>
<li> P<sub>o</sub> is the power usage of the overclocked CPU</li>
<li> F<sub>s</sub> is the clock speed of the non-overclocked CPU</li>
<li> F<sub>o</sub> is the clock speed of the overclocked CPU</li>
<li> U<sub>s</sub> is the default voltage of the non-overclocked CPU</li>
<li> U<sub>o</sub> is the voltage at which the overclocked CPU runs</li>
</ul>
<p><strong>Here is the formula:</strong></p>
<ul><strong>P<sub>o</sub> = P<sub>s</sub> * (F<sub>o</sub>/F<sub>s</sub>) * (Uo<sup>2</sup>/Us<sup>2</sup>) </strong></ul>
<p><strong>A simple example:</strong></p>
<p>We want to calculate the maximum power usage of a Athlon &#8220;Thunderbird&#8221; 1.33 GHz CPU  overclocked to 1.6GHz using 1,9V voltage. From <a href="http://users.erols.com/chare/elec.htm" target="_new">this page</a>, we find out that:</p>
<ul>
<li>P<sub>s</sub> is 70W (max)</li>
<li> U<sub>s</sub> is 1.75V</li>
</ul>
<p>Also, we know that</p>
<ul>
<li> F<sub>s</sub> is 1.33GHz</li>
<li> F<sub>o</sub> is 1.6GHz</li>
<li> and U<sub>o</sub> is 1.9V</li>
</ul>
<p>Therefore:</p>
<ul>P<sub>o</sub> = 70 W * (1.6/1.33) * (1.9<sup>2</sup>/1.75<sup>2</sup>) = <strong>99.26 W</strong></ul>
<p>Values calculated using this method are not very accurate, since I/O voltage and FSB speed is not taken into account. However, they should be precise enough to help you decide what kind of power supply and cooling you need.</p>
<h2>Disclaimer</h2>
<p>The information here is provided WITHOUT WARRANTY of any kind. If you are designing a system and need to have accurate information on the maximum temperature of a specific CPU, please rely on the information provided by the CPU manufacturer, and not the information here.</p>
<p>Last update: December, 2004. Future CPU models (even if they are marketed under the same name/with the same MHz) as the CPUs mentioned here may have different thermal specifications.</p>
<p>Source: http://www.heatsink-guide.com/maxtemp.htm</p>
]]></content:encoded>
			<wfw:commentRss>http://mrebola.com/the-heatsink-guide-maximum-cpu-temperature-and-maximum-cpu-power-usage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Instalar un Servidor SSH</title>
		<link>http://mrebola.com/instalar-un-servidor-ssh/</link>
		<comments>http://mrebola.com/instalar-un-servidor-ssh/#comments</comments>
		<pubDate>Mon, 11 May 2009 17:11:18 +0000</pubDate>
		<dc:creator>mrebola</dc:creator>
				<category><![CDATA[Asesoria]]></category>

		<guid isPermaLink="false">http://nnrebola.wordpress.com/2009/05/11/instalar-un-servidor-ssh/</guid>
		<description><![CDATA[

Estoy preparando un post de programacion y necesitaba una maquina con conexion SSH para poder hacerlo asi que he decidido instalar un servidor de ssh en mi maquina.
Si necesitas conectar a tu maquina remotamente y quieres emplear un protocolo seguro esta es una buena opcion. Para la gente menos experta podriamos decir que SSH es [...]]]></description>
			<content:encoded><![CDATA[<div class="entry-content">
<div class="snap_preview">
<p>Estoy preparando un post de programacion y necesitaba una maquina con conexion <a href="http://es.wikipedia.org/wiki/Secure_Shell">SSH</a> para poder hacerlo asi que he decidido instalar un servidor de ssh en mi maquina.</p>
<p>Si necesitas conectar a tu maquina remotamente y quieres emplear un protocolo seguro esta es una buena opcion. Para la gente menos experta podriamos decir que SSH es como una conexion mediante telnet pero la informacion viaja de manera encriptada.</p>
<p>Con SSH te validas en el servidor y ya puedes introducir comandos de manera remota y segura. No es lo mismo que por ejemplo ejecutes un comando pasando un usuario y contraseña y esa informacion pueda ser capturada mediante un <a href="http://es.wikipedia.org/wiki/Packet_sniffer">sniffer</a> y sea facilmente legible, a que lo hagas con un protocolo seguro y aunque no imposible si que al menos es mucho mas dificil de descifrar.</p>
<p>Un buen servidor es “<a href="http://www.openssh.com/">open ssh server</a>“. Para instalarlo ejecuta el siguiente comando:</p>
<p><code><br />
apt-get install openssh-server<br />
</code></p>
<p>Una vez instalado prueba a conectar con tu maquina:</p>
<p><code><br />
ssh 127.0.0.1<br />
</code></p>
<p><em>Nota: 127.0.0.1 es la direccion IP que hace referencia a tu propia maquina</em></p>
<p>Deberas obtener algo similar a lo siguiente:</p>
<p><code><br />
jose@soledad:~$ ssh 127.0.0.1<br />
The authenticity of host '127.0.0.1 (127.0.0.1)' can't be established.<br />
RSA key fingerprint is 49:28:a6:6d:63:e8:bb:dd:e3:25:ff:56:3d:ac:7b:b1.<br />
Are you sure you want to continue connecting (yes/no)? yes<br />
Warning: Permanently added '127.0.0.1' (RSA) to the list of known hosts.<br />
jose@127.0.0.1's password:<br />
Linux soledad 2.6.17-10-generic #2 SMP Tue Dec 5 22:28:26 UTC 2006 i686<br />
The programs included with the Ubuntu system are free software;<br />
the exact distribution terms for each program are described in the<br />
individual files in /usr/share/doc/*/copyright.<br />
Ubuntu comes with ABSOLUTELY NO WARRANTY, to the extent permitted by<br />
applicable law.<br />
Last login: Thu Mar 15 16:05:30 2007<br />
jose@soledad:~$<br />
</code></p>
<p>La primera vez que conectas con una maquina nueva a la que no has conectado antes, te aparece el mensaje:</p>
<p><code><br />
The authenticity of host '127.0.0.1 (127.0.0.1)' can't be established.<br />
RSA key fingerprint is 49:28:a6:6d:63:e8:bb:dd:e3:25:ff:56:3d:ac:7b:b1.<br />
Are you sure you want to continue connecting (yes/no)? yes<br />
</code></p>
<p>Si aceptas se guarda la entrada de la clave en tu directorio <strong>HOME</strong> en el directorio<strong> .ssh</strong></p>
<p>Por ejemplo si listo el contenido de mi fichero sale:</p>
<p><code><br />
jose@soledad:~/.ssh$ pwd<br />
/home/jose/.ssh<br />
jose@soledad:~/.ssh$ ls<br />
known_hosts<br />
jose@soledad:~/.ssh$ cat known_hosts<br />
|1|Z4vAldjZlyCWX7qXzzTzi+PdRnw=|BhNX64JRBnggzBqga6Q2+nkiy0Q= ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA6Rm8mIRRmgiP5KIOsS68gTw9auscOi40fhyKyOnmgXTMZZFSv1GGThHfzSHdacLXfzAJiFOqWtCoH2CTHolsQOV5LcNcljTfWrAz4SwkZEBN5yKQlh9pAxStP2oJSXr6QyWgKI//cSIimzSOQonH8dw5Fxvt913D4Yq7MtPOsPrLIV/+FstfxEXJ00wjJ69s0ScUxipzPFvJ4fsSf8A/F2fdMMQw8McbHar4a9bDcs+s1FLJ09iPn5MsSArnX97fCRpSdzACrj4+ihTeR0fqKDUyyfukNTEMZx5QD5aoHqnciDsIu9nLXEYQWKqAkTlPG+wd9bI3kyI303v5BINbrQ==<br />
jose@soledad:~/.ssh$<br />
</code></p>
<p>Las claves se guardan en un fichero denominado <strong>“know_hosts”</strong>, la proxima vez que conectes con una maquina a la que ya conectaste si su entrada esta en este fichero no te volvera a preguntar.</p>
<p>Una aclaracion, si cuando intentas conectar con tu servidor, tuvieras problemas de conexion con tu maquina o de conexion con otra maquina remota, comprueba que no tienes deshabilitado el acceso remoto:</p>
<p><strong>Sistema &gt; Administracion &gt; Ventana de Entrada</strong> <em>(Pestaña Remota y Accesibilidad)</em></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://mrebola.com/instalar-un-servidor-ssh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Restart Apache in Redhat/Fedora</title>
		<link>http://mrebola.com/restart-apache-in-redhatfedora/</link>
		<comments>http://mrebola.com/restart-apache-in-redhatfedora/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 22:04:12 +0000</pubDate>
		<dc:creator>mrebola</dc:creator>
				<category><![CDATA[Asesoria]]></category>

		<guid isPermaLink="false">http://nnrebola.wordpress.com/?p=73</guid>
		<description><![CDATA[
Restart Apache:
/etc/rc.d/init.d/httpd restart
Other commands:
/etc/rc.d/init.d/httpd status
/etc/rc.d/init.d/httpd stop
/etc/rc.d/init.d/httpd start
Note: /etc/rc.d/init.d/httpd  seems to be different from /usr/sbin/httpd
Location of &#8220;service&#8221;:
/sbin/service
Example: /sbin/service sendmail restart
Categories
]]></description>
			<content:encoded><![CDATA[<div class="asset-body">
<p>Restart Apache:<br />
/etc/rc.d/init.d/httpd restart</p>
<p>Other commands:<br />
/etc/rc.d/init.d/httpd status<br />
/etc/rc.d/init.d/httpd stop<br />
/etc/rc.d/init.d/httpd start</p>
<p>Note: /etc/rc.d/init.d/httpd  seems to be different from /usr/sbin/httpd</p>
<p>Location of &#8220;service&#8221;:<br />
/sbin/service</p>
<p>Example: /sbin/service sendmail restart</p></div>
<h4 class="entry-categories-header">Categories</h4>
]]></content:encoded>
			<wfw:commentRss>http://mrebola.com/restart-apache-in-redhatfedora/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Un ide genial de C/C++ para Ubuntu</title>
		<link>http://mrebola.com/un-ide-genial-de-cc-para-ubuntu/</link>
		<comments>http://mrebola.com/un-ide-genial-de-cc-para-ubuntu/#comments</comments>
		<pubDate>Mon, 16 Mar 2009 23:04:07 +0000</pubDate>
		<dc:creator>mrebola</dc:creator>
				<category><![CDATA[Asesoria]]></category>

		<guid isPermaLink="false">http://nnrebola.wordpress.com/2009/03/16/un-ide-genial-de-cc-para-ubuntu/</guid>
		<description><![CDATA[Cada vez que se pregunta sobre un IDE de C/C++ para Ubuntu, siempre se recomiendan VIM o Emacs (que por cierto no son IDEs, sino editores… además, a mi juicio, son obsoletos y espantosos…xD ), pero especialmente se recomienda a Anjuta. Este ide, aunque es casi tan bueno como el que mencionaré a continuación, presenta [...]]]></description>
			<content:encoded><![CDATA[<p>Cada vez que se pregunta sobre un IDE de C/C++ para Ubuntu, siempre se recomiendan VIM o Emacs (que por cierto no son IDEs, sino editores… además, a mi juicio, son obsoletos y espantosos…xD ), pero especialmente se recomienda a Anjuta. Este ide, aunque es casi tan bueno como el que mencionaré a continuación, presenta algunos problemas en ciertas versiones y/o “sabores” de Ubuntu por razones que desconozco. El problema más común es que no permite “construir” un ejecutable, o sea, tenemos el código fuente, lo compilamos generando el archivo “.o”, pero finalmente no podemos generar el ejecutable, que es el que más nos interesa…</p>
<p>Una alternativa muy buena para los que tienen este problema es <strong>GEANY</strong>, pues además de soportar muchos lenguages como Python, HTML, PHP, Java, etc., es increiblemente simple, intuitivo y eficaz.<br />
La interfaz de este ide es muy parecida a la de Anjuta y a la de DevCpp de Windows, pero además tiene una serie de complementos que lo convierten en una herramienta super cómoda para programar.</p>
<p>Todo lo que hay que hacer para conseguirlo es:</p>
<p><span style="font-size:medium;"><strong><code>sudo apt-get install geany</code></strong></span></p>
<p>…y en menos de 5 minutos está instalado y listo para usarse.<br />
Que lo disfruten!</p>
<p>P.D: Es <em>absolutamente necesario</em> instalarlo junto con el metapaquete <strong>build-essential</strong>, de lo contrario, es posible que ni siquiera se pueda compilar.<br />
Para hacerlo, basta con escribir:<br />
<span style="font-size:medium;"><strong><code>sudo apt-get install build-essential</code></strong></span></p>
<p>Además sirve para muchísimos otros lenguajes de programación: python, D, html, php, bash, java, octave, etc. Es muy liviano y funcional.</p>
]]></content:encoded>
			<wfw:commentRss>http://mrebola.com/un-ide-genial-de-cc-para-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Live Msn 8.5 + Agent Update (Solución actualización crítica)</title>
		<link>http://mrebola.com/windows-live-msn-85-agent-update-solucion-actualizacion-critica/</link>
		<comments>http://mrebola.com/windows-live-msn-85-agent-update-solucion-actualizacion-critica/#comments</comments>
		<pubDate>Sat, 07 Mar 2009 17:03:51 +0000</pubDate>
		<dc:creator>mrebola</dc:creator>
				<category><![CDATA[Asesoria]]></category>

		<guid isPermaLink="false">http://nnrebola.wordpress.com/?p=64</guid>
		<description><![CDATA[A quien no le ha pasado de querer instalar Windows Messenger Live 8.5  y nuestro querido Windows XP nos pide una actualización critica y nos aborta la instalacion!!
Para solucionar esto debemos instalar 2 actualizaciones:
1 ) Windows Update Agent [link]
2)  WindowsInstaller [link]
3) Reiniciar…
Bueno ahi esta todo, luego del reinicio podran instalar el Windows Live Messenger 8.5 [...]]]></description>
			<content:encoded><![CDATA[<p>A quien no le ha pasado de querer instalar Windows Messenger Live 8.5  y nuestro querido Windows XP nos pide una actualización critica y nos aborta la instalacion!!</p>
<p>Para solucionar esto debemos instalar 2 actualizaciones:</p>
<p>1 ) Windows Update Agent [<a href="http://download.windowsupdate.com/WindowsUpdate/redist/standalone/7.0.6000.381/WindowsUpdateAgent30-x86.exe">link</a>]</p>
<p>2)  WindowsInstaller [<a href="http://download.microsoft.com/download/1/4/7/147ded26-931c-4daf-9095-ec7baf996f46/WindowsInstaller-KB893803-v2-x86.exe">link</a>]</p>
<p>3) Reiniciar…</p>
<p>Bueno ahi esta todo, luego del reinicio podran instalar el Windows Live Messenger 8.5 sin problemas!</p>
]]></content:encoded>
			<wfw:commentRss>http://mrebola.com/windows-live-msn-85-agent-update-solucion-actualizacion-critica/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rapidshare desactivar espera para descarga</title>
		<link>http://mrebola.com/rapidshare-desactivar-espera-para-descarga/</link>
		<comments>http://mrebola.com/rapidshare-desactivar-espera-para-descarga/#comments</comments>
		<pubDate>Sat, 07 Feb 2009 01:38:40 +0000</pubDate>
		<dc:creator>mrebola</dc:creator>
				<category><![CDATA[Asesoria]]></category>

		<guid isPermaLink="false">http://nnrebola.wordpress.com/?p=31</guid>
		<description><![CDATA[Este truco es el claro ejemplo de como burlarte protecciones hechas enteramente en Javascript.  La serie de trucos para rapidshare consiste en no esperar para la descarga. Para ello solo ve al link y cuando estés esperando la descarga pones en la barra de direcciones (donde pones la URL de la página) el siguiente [...]]]></description>
			<content:encoded><![CDATA[<p>Este truco es el claro ejemplo de como burlarte protecciones hechas enteramente en Javascript.  La serie de trucos para rapidshare consiste en no esperar para la descarga. Para ello solo ve al link y cuando estés esperando la descarga pones en la barra de direcciones (donde pones la URL de la página) el siguiente código.</p>
<p><code>javascript:alert(c=1)</code></p>
<p>Espero les sirva <img src='http://mrebola.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://mrebola.com/rapidshare-desactivar-espera-para-descarga/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
