<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>InsaneCrew &#187; Linux</title>
	<atom:link href="http://insanecrew.wordpress.com/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://insanecrew.wordpress.com</link>
	<description>bash:InsaneCrew:command not found</description>
	<lastBuildDate>Thu, 31 Dec 2009 15:24:36 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>es</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='insanecrew.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/633c5182f5a83dd026d4bb6672dbd4c0?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>InsaneCrew &#187; Linux</title>
		<link>http://insanecrew.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://insanecrew.wordpress.com/osd.xml" title="InsaneCrew" />
		<item>
		<title>Cacti en Mandriva 2010</title>
		<link>http://insanecrew.wordpress.com/2009/12/13/cacti-en-mandriva-2010/</link>
		<comments>http://insanecrew.wordpress.com/2009/12/13/cacti-en-mandriva-2010/#comments</comments>
		<pubDate>Sun, 13 Dec 2009 16:23:59 +0000</pubDate>
		<dc:creator>bersuitvera</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[cacti]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mandriva 2010]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[webserver]]></category>

		<guid isPermaLink="false">http://insanecrew.wordpress.com/?p=752</guid>
		<description><![CDATA[Introducción
Cacti es una herramienta escrita en php que se establece como frontend (nos facilita la vida) para la creación de gráficas con rrdtools de monitorización mediante  snmp u otros métodos de nuestros servidores y los servicios que ofrecen. Como punto de partida establecemos una MDV 2010 con los repositorios configurados y perfectamente actualizada.
Instalación del [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=insanecrew.wordpress.com&blog=2369550&post=752&subd=insanecrew&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p style="text-align:justify;"><strong>Introducción</strong><a href="http://www.cacti.net"><br />
Cacti</a> es una herramienta escrita en php que se establece como frontend (nos facilita la vida) para la creación de gráficas con <a href="http://es.wikipedia.org/wiki/RRDtool">rrdtools</a> de monitorización mediante <a href="http://es.wikipedia.org/wiki/SNMP"> snmp</a> u otros métodos de nuestros servidores y los servicios que ofrecen. Como punto de partida establecemos una MDV 2010 con los repositorios configurados y perfectamente actualizada.</p>
<p><strong>Instalación del software</strong><br />
urpmi es tu amigo <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<pre>[root@mdv10 ~]# urpmi cacti
Para satisfacer la dependencia «apache-mpm[== 2.2.14-1.2mdv2010.0]», se necesita uno de los paquetes siguientes:
1- apache-mpm-prefork-2.2.14-1.2mdv2010.0.i586: Implements a non-threaded, pre-forking web server (stable) (para instalar)
2- apache-mpm-rsbac-2.2.14-1.2mdv2010.0.i586: Implements a non-threaded, pre-forking web server with RSABC patch (stable) (para instalar)
¿Qué elige? (1-2)</pre>
<p style="text-align:justify;"><span id="more-752"></span></p>
<p style="text-align:justify;">Escoja la opción 1, para los más curiosos dejamos un enlace para saber más sobre el parche <a href="http://www.gentoo.org/proj/es/hardened/rsbac/overview.xml">rsbac</a> Antes de preparase para instalar nos vuelve a preguntar por el paquete php-gd  elija otra vez la opción 1. Ya estamos listos para instalar como dependencias de cacti instala apache, php rrddtools, snmp ¡ojo no instala el servidor de mysql! que instalaremos después.</p>
<pre>[root@mdv10 ~]# urpmi mysql</pre>
<p>Con la instalación del motor de bbdd mysql ya hemos cumplido con la parte del software</p>
<p><strong>Configurado la Base de Datos.</strong></p>
<p>Es el momento de arrancar el demonio de mysql</p>
<pre>[root@mdv10 ~]# /etc/init.d/mysqld start</pre>
<p>¡ No olvide poner la contraseña al usuario root de mysql!</p>
<pre>/usr/bin/mysqladmin -u root password 'new-password'</pre>
<p>Creación del usuario y la bbdd para cacti:</p>
<pre>[root@mdv10 ~]# mysql -u root -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 85
Server version: 5.1.40 Mandriva Linux - MySQL Standard Edition (GPL)
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql&gt; create database cacti;
Query OK, 1 row affected (0.00 sec)
mysql&gt; grant all on cacti.* to root;
Query OK, 0 rows affected (0.00 sec)
mysql&gt; grant all on cacti.* to cactiuser@localhost;
Query OK, 0 rows affected (0.00 sec)
mysql&gt; set password for cactiuser@localhost=password('cactipw');
Query OK, 0 rows affected (0.00 sec)
mysql&gt;</pre>
<p>Ahora importaremos el esquema de bbdd de cacti:</p>
<pre>[root@mdv10 ~]# mysql -h localhost -u cactiuser --password=cactipw cacti &lt; /usr/share/cacti/cacti.sql</pre>
<p><strong>Configurando el servidor Web.</strong></p>
<p style="text-align:justify;">Si revisamos el directorio: <em>/etc/httpd/conf/webapps.d</em> nos encontramos con el fichero cacti.conf como era de esperar ( El apache de mandriva siempre tan bien ordenado, gracias <a href="http://wiki.mandriva.com/en/User:Oden_Eriksson">Oden</a>)</p>
<pre>[root@mdv10 webapps.d]# cat cacti.conf
# Cacti Apache configuration file
Alias /cacti /usr/share/cacti/www

Options -FollowSymLinks
Allow from all</pre>
<p>Para empezar esta configuración nos sirve.</p>
<p><strong>Configurando Cacti</strong></p>
<p>Ahora edite el fichero:  vi <em>/usr/share/cacti/www/include/config.php</em> para colocar los valores apropiados</p>
<pre>$database_default = "cacti";
$database_hostname = "localhost";
$database_username = "cactiuser";
$database_password = "cactipwd";</pre>
<p style="text-align:justify;"><strong>Últimos retoques:</strong><br />
Ahora acceda a la dirección http://suservidor/cacti/ y se le mostrará un asistente de configuración básico, seleccione nueva instalación. En la siguiente pantalla revise que todo este en su lugar ¡nos falta crear el directorio de log! no hay problema</p>
<pre>[root@mdv10 ~]# mkdir -p /var/log/cacti
[root@mdv10 ~]# touch /var/log/cacti/cacti.log
</pre>
<p style="text-align:justify;">A continuación aparecerá una ventana para que se autentique. use como nombre de usuario y contraseña admin, para finalizar cambie el<br />
password del usuario admin. Ya estamos listos para usar cacti!<br />
Gracias a <a href="http://tecnoquia.blogspot.com/">Ignacio</a> por ayudarme con el &#8220;cactus&#8221;  (En breve vamos a monitorizar tomcat con cacti en Mandriva  2010) para confirmar que el problema en las plantillas es la versión de cacti que uso en el trabajo.</p>
<p style="text-align:justify;">
Posted in General Tagged: cacti, Linux, mandriva 2010, mysql, sysadmin, webserver <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/insanecrew.wordpress.com/752/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/insanecrew.wordpress.com/752/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/insanecrew.wordpress.com/752/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/insanecrew.wordpress.com/752/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/insanecrew.wordpress.com/752/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/insanecrew.wordpress.com/752/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/insanecrew.wordpress.com/752/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/insanecrew.wordpress.com/752/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/insanecrew.wordpress.com/752/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/insanecrew.wordpress.com/752/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=insanecrew.wordpress.com&blog=2369550&post=752&subd=insanecrew&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://insanecrew.wordpress.com/2009/12/13/cacti-en-mandriva-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c509a28e4d775ba6436a0d287f40c962?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bersuitvera</media:title>
		</media:content>
	</item>
		<item>
		<title>Blogdrake informa:</title>
		<link>http://insanecrew.wordpress.com/2009/11/28/blogdrake-informa-2/</link>
		<comments>http://insanecrew.wordpress.com/2009/11/28/blogdrake-informa-2/#comments</comments>
		<pubDate>Sat, 28 Nov 2009 18:23:31 +0000</pubDate>
		<dc:creator>bersuitvera</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[blogdrake]]></category>
		<category><![CDATA[mandriva 2010]]></category>

		<guid isPermaLink="false">http://insanecrew.wordpress.com/?p=745</guid>
		<description><![CDATA[La comunidad hispanoparlante de usuarios de Mandriva Linux (BlogDrake) esta teniendo un problema temporal con el dominio blogdrake.net , los usuarios del sitio por favor diríjanse a http://blogdrake.org , si no carga por favor limpien el cache de su navegador y traten nuevamente
Posted in General, Linux Tagged: blogdrake, Linux, mandriva 2010     [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=insanecrew.wordpress.com&blog=2369550&post=745&subd=insanecrew&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p style="text-align:justify;">La comunidad hispanoparlante de usuarios de Mandriva Linux (BlogDrake) esta teniendo un problema temporal con el dominio blogdrake.net , los usuarios del sitio por favor diríjanse a <a href="http://blogdrake.org">http://blogdrake.org</a> , si no carga por favor limpien el cache de su navegador y traten nuevamente</p>
Posted in General, Linux Tagged: blogdrake, Linux, mandriva 2010 <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/insanecrew.wordpress.com/745/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/insanecrew.wordpress.com/745/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/insanecrew.wordpress.com/745/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/insanecrew.wordpress.com/745/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/insanecrew.wordpress.com/745/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/insanecrew.wordpress.com/745/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/insanecrew.wordpress.com/745/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/insanecrew.wordpress.com/745/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/insanecrew.wordpress.com/745/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/insanecrew.wordpress.com/745/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=insanecrew.wordpress.com&blog=2369550&post=745&subd=insanecrew&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://insanecrew.wordpress.com/2009/11/28/blogdrake-informa-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c509a28e4d775ba6436a0d287f40c962?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bersuitvera</media:title>
		</media:content>
	</item>
		<item>
		<title>Desbloquear ficheros en CVS</title>
		<link>http://insanecrew.wordpress.com/2009/11/25/desbloquear-ficheros-en-cvs/</link>
		<comments>http://insanecrew.wordpress.com/2009/11/25/desbloquear-ficheros-en-cvs/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 09:14:54 +0000</pubDate>
		<dc:creator>bersuitvera</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[cvs]]></category>
		<category><![CDATA[sysadmin]]></category>

		<guid isPermaLink="false">http://insanecrew.wordpress.com/?p=743</guid>
		<description><![CDATA[En CVS, no se bloquean los archivos sino las versiones. Absolutamente cualquier persona con acceso al archivo puede desbloquearlo. Si no eres el propietario del bloqueo debes especificar explicitamente la versión a desbloquear, incluso si sólo hay una revisión bloqueada
[avr12s@Corsario pao]$ cvs admin -u1.86 GGxxxxx.java
RCS file: /xxxxxx/GGxxxxx.java,v
cvs admin: /xxxxxx/GGxxxxxx.java,v: revision 1.86 locked by cjg93k; breaking [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=insanecrew.wordpress.com&blog=2369550&post=743&subd=insanecrew&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>En CVS, no se bloquean los archivos sino las versiones. Absolutamente cualquier persona con acceso al archivo puede desbloquearlo. Si no eres el propietario del bloqueo debes especificar explicitamente la versión a desbloquear, incluso si sólo hay una revisión bloqueada</p>
<blockquote><p>[avr12s@Corsario pao]$ cvs admin -u1.86 GGxxxxx.java<br />
RCS file: /xxxxxx/GGxxxxx.java,v<br />
cvs admin: /xxxxxx/GGxxxxxx.java,v: revision 1.86 locked by cjg93k; breaking lock<br />
1.86 unlocked<br />
done</p></blockquote>
<p>Con esto damos por corregida la <a href="http://insanecrew.wordpress.com/2008/05/23/desbloquear-bloquear-ficheros-en-cvs/">anterior entrada</a>, que no estaba mal, pero no decía toda la verdad.</p>
Posted in General, Linux Tagged: cvs, Linux, sysadmin <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/insanecrew.wordpress.com/743/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/insanecrew.wordpress.com/743/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/insanecrew.wordpress.com/743/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/insanecrew.wordpress.com/743/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/insanecrew.wordpress.com/743/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/insanecrew.wordpress.com/743/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/insanecrew.wordpress.com/743/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/insanecrew.wordpress.com/743/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/insanecrew.wordpress.com/743/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/insanecrew.wordpress.com/743/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=insanecrew.wordpress.com&blog=2369550&post=743&subd=insanecrew&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://insanecrew.wordpress.com/2009/11/25/desbloquear-ficheros-en-cvs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c509a28e4d775ba6436a0d287f40c962?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bersuitvera</media:title>
		</media:content>
	</item>
		<item>
		<title>Blogdrake informa:</title>
		<link>http://insanecrew.wordpress.com/2009/11/25/blogdrake-informa/</link>
		<comments>http://insanecrew.wordpress.com/2009/11/25/blogdrake-informa/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 08:32:03 +0000</pubDate>
		<dc:creator>bersuitvera</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[blogdrake]]></category>
		<category><![CDATA[mandriva 2010]]></category>

		<guid isPermaLink="false">http://insanecrew.wordpress.com/?p=741</guid>
		<description><![CDATA[Ayer hubo un problema con el dominio del sitio que se solventó a
medias. Al parecer alguien mas trató de secuestrar el nombre.

Algunos DNS aun muestran el dominio erróneo, si se cambia de DNS si se
puede acceder al sitio. Por ejemplo estos DNS de Telmex Peru
funcionan:
216.244.191.36
216.244.191.38
Los DNS de OpenDNS no muestran BlogDRAKE. Estaremos notificando
cualquier avance en [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=insanecrew.wordpress.com&blog=2369550&post=741&subd=insanecrew&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Ayer hubo un problema con el dominio del sitio que se solventó a<br />
medias. Al parecer alguien mas trató de secuestrar el nombre.</p>
<p><img src="http://i94.photobucket.com/albums/l93/drakedalfa/blogdrake/th_blogdrake2009-11-23-085012.png" alt="" /></p>
<p>Algunos DNS aun muestran el dominio erróneo, si se cambia de DNS si se<br />
puede acceder al sitio. Por ejemplo estos DNS de Telmex Peru<br />
funcionan:</p>
<pre>216.244.191.36
216.244.191.38</pre>
<p>Los DNS de OpenDNS no muestran BlogDRAKE. Estaremos notificando<br />
cualquier avance en este problema.</p>
<p>Disculpen las molestias</p>
Posted in General, Linux Tagged: blogdrake, Linux, mandriva 2010 <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/insanecrew.wordpress.com/741/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/insanecrew.wordpress.com/741/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/insanecrew.wordpress.com/741/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/insanecrew.wordpress.com/741/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/insanecrew.wordpress.com/741/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/insanecrew.wordpress.com/741/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/insanecrew.wordpress.com/741/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/insanecrew.wordpress.com/741/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/insanecrew.wordpress.com/741/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/insanecrew.wordpress.com/741/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=insanecrew.wordpress.com&blog=2369550&post=741&subd=insanecrew&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://insanecrew.wordpress.com/2009/11/25/blogdrake-informa/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c509a28e4d775ba6436a0d287f40c962?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bersuitvera</media:title>
		</media:content>

		<media:content url="http://i94.photobucket.com/albums/l93/drakedalfa/blogdrake/th_blogdrake2009-11-23-085012.png" medium="image" />
	</item>
		<item>
		<title>Ruido 2010</title>
		<link>http://insanecrew.wordpress.com/2009/11/04/ruido-2010/</link>
		<comments>http://insanecrew.wordpress.com/2009/11/04/ruido-2010/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 15:28:46 +0000</pubDate>
		<dc:creator>bersuitvera</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[blogdrake]]></category>
		<category><![CDATA[mandriva]]></category>
		<category><![CDATA[mandriva 2010]]></category>

		<guid isPermaLink="false">http://insanecrew.wordpress.com/?p=721</guid>
		<description><![CDATA[Si ya estás descargando Mandriva 2010, ahora puedes:

Menear la noticia del lanzamiento de Mandriva 2010
Comentar la noticia del lanzamiento en Barrapunto
Publicar en tu blog la noticia del lanzamiento.
Copiar en tu sitio web la nota de prensa del lanzamiento

Difunde Mandriva !
Posted in General, Linux Tagged: blogdrake, Linux, mandriva, mandriva 2010      <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=insanecrew.wordpress.com&blog=2369550&post=721&subd=insanecrew&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Si ya estás descargando <a href="http://insanecrew.wordpress.com/2009/11/03/descarga-mandriva-2010/">Mandriva 2010</a>, ahora puedes:</p>
<ul>
<li><a href="http://meneame.net/story/mandriva-2010-disponible-para-descarga">Menear </a>la noticia del lanzamiento de Mandriva 2010</li>
<li>Comentar la noticia del lanzamiento en <a href="http://softlibre.barrapunto.com/article.pl?sid=09/11/03/2142207">Barrapunto</a></li>
<li>Publicar en tu blog la noticia del <a href="http://blogdrake.net/index.php?q=blog/vfmmeo/mandriva-2010-disponible-0">lanzamiento</a>.</li>
<li>Copiar en tu sitio web la <a href="http://blogdrake.net/consulta/colabora-con-mandriva-linux-copia-esto-tu-sitio-web">nota de prensa</a> del lanzamiento</li>
</ul>
<p>Difunde Mandriva !</p>
Posted in General, Linux Tagged: blogdrake, Linux, mandriva, mandriva 2010 <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/insanecrew.wordpress.com/721/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/insanecrew.wordpress.com/721/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/insanecrew.wordpress.com/721/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/insanecrew.wordpress.com/721/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/insanecrew.wordpress.com/721/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/insanecrew.wordpress.com/721/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/insanecrew.wordpress.com/721/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/insanecrew.wordpress.com/721/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/insanecrew.wordpress.com/721/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/insanecrew.wordpress.com/721/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=insanecrew.wordpress.com&blog=2369550&post=721&subd=insanecrew&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://insanecrew.wordpress.com/2009/11/04/ruido-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c509a28e4d775ba6436a0d287f40c962?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bersuitvera</media:title>
		</media:content>
	</item>
		<item>
		<title>Descarga Mandriva 2010</title>
		<link>http://insanecrew.wordpress.com/2009/11/03/descarga-mandriva-2010/</link>
		<comments>http://insanecrew.wordpress.com/2009/11/03/descarga-mandriva-2010/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 21:48:20 +0000</pubDate>
		<dc:creator>bersuitvera</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[blogdrake]]></category>
		<category><![CDATA[mandriva]]></category>
		<category><![CDATA[mandriva 2010]]></category>

		<guid isPermaLink="false">http://insanecrew.wordpress.com/?p=712</guid>
		<description><![CDATA[Hola
Ya están disponibles los torrents para descargar Mandriva 2010. Desde aquí recomendamos la descarga vía torrent para no &#8220;quemar&#8221; los mirrors  para las descargas directas.
Por otra parte, si eliges el P2P  estás contribuyendo a la difusión de Mandriva, compartiendo tu propio ancho de banda con el resto de la comunidad.
Elegante, rápido y fiable no se [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=insanecrew.wordpress.com&blog=2369550&post=712&subd=insanecrew&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p style="text-align:justify;">Hola<br />
Ya están disponibles los <a href="http://torrent.mandriva.com/public/2010.0/">torrents</a> para descargar <a href="http://torrent.mandriva.com/public/2010.0/">Mandriva 2010</a>. Desde aquí recomendamos la descarga vía torrent para no &#8220;quemar&#8221; los mirrors  para las descargas directas.<br />
Por otra parte, si eliges el P2P  estás contribuyendo a la difusión de <a href="http://torrent.mandriva.com/public/2010.0/">Mandriva</a>, compartiendo tu propio ancho de banda con el resto de la comunidad.<br />
Elegante, rápido y fiable no se puede pedir más..<br />
Para los más perezosos, también un <a href="http://ftp.free.fr/pub/Distributions_Linux/MandrivaLinux/official/iso/2010.0/">mirror francés</a> para la descarga directa.</p>
<p style="text-align:justify;">Saludos Bersuit.</p>
Posted in General, Linux Tagged: blogdrake, Linux, mandriva, mandriva 2010 <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/insanecrew.wordpress.com/712/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/insanecrew.wordpress.com/712/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/insanecrew.wordpress.com/712/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/insanecrew.wordpress.com/712/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/insanecrew.wordpress.com/712/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/insanecrew.wordpress.com/712/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/insanecrew.wordpress.com/712/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/insanecrew.wordpress.com/712/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/insanecrew.wordpress.com/712/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/insanecrew.wordpress.com/712/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=insanecrew.wordpress.com&blog=2369550&post=712&subd=insanecrew&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://insanecrew.wordpress.com/2009/11/03/descarga-mandriva-2010/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c509a28e4d775ba6436a0d287f40c962?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bersuitvera</media:title>
		</media:content>
	</item>
		<item>
		<title>No más koalas&#8230;</title>
		<link>http://insanecrew.wordpress.com/2009/10/31/no-mas-koalas/</link>
		<comments>http://insanecrew.wordpress.com/2009/10/31/no-mas-koalas/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 16:59:30 +0000</pubDate>
		<dc:creator>bersuitvera</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[tonterias]]></category>
		<category><![CDATA[mandriva 2010]]></category>

		<guid isPermaLink="false">http://insanecrew.wordpress.com/?p=698</guid>
		<description><![CDATA[..elije Mandriva Linux 2010.





Diseño cortesía de DrakeDalfa
Posted in General, Linux, tonterias Tagged: Linux, mandriva 2010      <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=insanecrew.wordpress.com&blog=2369550&post=698&subd=insanecrew&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>..elije <a href="http://www2.mandriva.com/es/">Mandriva Linux 201</a>0.</p>
<div class="mceTemp mceIEcenter">
<dl class="wp-caption aligncenter">
<dt class="wp-caption-dt"><img class="size-medium wp-image-699" title="Desing" src="http://insanecrew.files.wordpress.com/2009/10/estrellaslimite.jpg?w=300&#038;h=225" alt="EstrellasLimite" width="300" height="225" /></dt>
</dl>
</div>
<p style="text-align:right;">Diseño cortesía de<a href="http://drakedalfa.blogspot.com/"> DrakeDalfa</a></p>
Posted in General, Linux, tonterias Tagged: Linux, mandriva 2010 <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/insanecrew.wordpress.com/698/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/insanecrew.wordpress.com/698/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/insanecrew.wordpress.com/698/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/insanecrew.wordpress.com/698/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/insanecrew.wordpress.com/698/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/insanecrew.wordpress.com/698/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/insanecrew.wordpress.com/698/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/insanecrew.wordpress.com/698/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/insanecrew.wordpress.com/698/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/insanecrew.wordpress.com/698/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=insanecrew.wordpress.com&blog=2369550&post=698&subd=insanecrew&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://insanecrew.wordpress.com/2009/10/31/no-mas-koalas/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c509a28e4d775ba6436a0d287f40c962?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bersuitvera</media:title>
		</media:content>

		<media:content url="http://insanecrew.files.wordpress.com/2009/10/estrellaslimite.jpg?w=300" medium="image">
			<media:title type="html">Desing</media:title>
		</media:content>
	</item>
		<item>
		<title>Mandriva presenta: ¡Mandriva Mini!</title>
		<link>http://insanecrew.wordpress.com/2009/09/30/mandriva-presenta-%c2%a1mandriva-mini/</link>
		<comments>http://insanecrew.wordpress.com/2009/09/30/mandriva-presenta-%c2%a1mandriva-mini/#comments</comments>
		<pubDate>Wed, 30 Sep 2009 07:47:11 +0000</pubDate>
		<dc:creator>bersuitvera</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[mandriva 2010]]></category>
		<category><![CDATA[mandriva mini]]></category>
		<category><![CDATA[moblin]]></category>
		<category><![CDATA[netbook]]></category>

		<guid isPermaLink="false">http://insanecrew.wordpress.com/?p=679</guid>
		<description><![CDATA[Leo y traduzco &#8220;dirty&#8221; desde Distrowatch:
La semana pasada Mandriva anunció la disponibilidad de una versión de mandriva basada en Moblin llamada &#8220;Mandriva Mini&#8221;. Los detalles sobre este nuevo sabor de Mandriva son escasos por el momento, salvo la nota de prensa, donde hablan sobre su trabajo con netbook Classmate. En la web de Mandriva no [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=insanecrew.wordpress.com&blog=2369550&post=679&subd=insanecrew&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p style="text-align:justify;">Leo y traduzco &#8220;dirty&#8221; desde <a href="http://distrowatch.com/weekly.php?issue=20090928#news">Distrowatch</a>:</p>
<p style="text-align:justify;">La semana pasad<a href="www.mandriva.com">a Mandriva </a>anunció la disponibilidad de una versión de mandriva basada en <a href="http://moblin.org/">Moblin </a>llamada &#8220;Mandriva Mini&#8221;. Los detalles sobre este nuevo sabor de Mandriva son escasos por el momento, salvo<a href="http://www.mandriva.com/enterprise/en/company/press/mandriva-mini-based-on-moblin-version-2-technology-is-now-available"> la nota de prensa</a>, donde hablan sobre su trabajo con netbook <a href="http://es.wikipedia.org/wiki/Classmate_PC">Classmate</a>. En la web de Mandriva no se ofrece un enlace para su descarga por parte de la comunidad, sólo los datos de contacto para los fabricantes de equipos que deseen Mandriva Mini para sus netbooks.</p>
<p style="text-align:justify;">Hasta ahora Linux en los netbook era un tema algo desordenado,  incluso parecía estar en manos de Microsoft con su XP. Con Moblin, todos los fabricantes parten del mismo núcleo que pueden aprovechar y mejorar, en breve tendremos muchas y mejores distribuciones linux en los netbook. Ubuntu anuncia una v<a href="http://www.ubuntu.com/news/canonical-dell-deliver-ubuntu-moblin-remix">ersión basada también en moblin</a>, la <a href="https://fedoraproject.org/wiki/SIGs/FedoraMini">comunidad de Fedora</a> también presenta su mini.</p>
Posted in General Tagged: Linux, mandriva 2010, mandriva mini, moblin, netbook, sysadmin <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/insanecrew.wordpress.com/679/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/insanecrew.wordpress.com/679/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/insanecrew.wordpress.com/679/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/insanecrew.wordpress.com/679/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/insanecrew.wordpress.com/679/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/insanecrew.wordpress.com/679/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/insanecrew.wordpress.com/679/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/insanecrew.wordpress.com/679/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/insanecrew.wordpress.com/679/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/insanecrew.wordpress.com/679/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=insanecrew.wordpress.com&blog=2369550&post=679&subd=insanecrew&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://insanecrew.wordpress.com/2009/09/30/mandriva-presenta-%c2%a1mandriva-mini/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c509a28e4d775ba6436a0d287f40c962?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bersuitvera</media:title>
		</media:content>
	</item>
		<item>
		<title>Ración triple de Mandriva</title>
		<link>http://insanecrew.wordpress.com/2009/09/29/racion-triple-de-mandriva/</link>
		<comments>http://insanecrew.wordpress.com/2009/09/29/racion-triple-de-mandriva/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 15:47:08 +0000</pubDate>
		<dc:creator>bersuitvera</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mandriva]]></category>
		<category><![CDATA[mandriva 2010]]></category>

		<guid isPermaLink="false">http://insanecrew.wordpress.com/?p=676</guid>
		<description><![CDATA[Revisando noticiasdrake me encuentro:

Descuento en la suscripción PowerPack: Tres meses gratis.
Concurso de desarrollo para Moovida Media  Center: Mandriva &#38; Fluendo
Contribuye con fondos de escritorio para mandriva 2010: Llamamiento a la comunidad

Estos chicos de noticiasdrake ¡no paran!, desde aquí felicitarlos por su gran trabajo en la difusión de nuestra &#8220;distro&#8221; preferida.
Posted in General Tagged: Linux, mandriva, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=insanecrew.wordpress.com&blog=2369550&post=676&subd=insanecrew&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Revisando <a href="http://www.noticiasdrake.net">noticiasdrake </a>me encuentro:</p>
<ul>
<li>Descuento en la suscripción PowerPack: <a href="http://noticiasdrake.net/?p=133">Tres meses gratis.</a></li>
<li>Concurso de desarrollo para Moovida Media  Center: <a href="http://noticiasdrake.net/?p=132">Mandriva &amp; Fluendo</a></li>
<li>Contribuye con fondos de escritorio para mandriva 2010: <a href="http://noticiasdrake.net/?p=134">Llamamiento a la comunidad</a></li>
</ul>
<p>Estos chicos de noticiasdrake ¡no paran!, desde aquí felicitarlos por su gran trabajo en la difusión de nuestra &#8220;distro&#8221; <a href="http://www.mandriva.com">preferida</a>.</p>
Posted in General Tagged: Linux, mandriva, mandriva 2010 <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/insanecrew.wordpress.com/676/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/insanecrew.wordpress.com/676/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/insanecrew.wordpress.com/676/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/insanecrew.wordpress.com/676/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/insanecrew.wordpress.com/676/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/insanecrew.wordpress.com/676/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/insanecrew.wordpress.com/676/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/insanecrew.wordpress.com/676/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/insanecrew.wordpress.com/676/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/insanecrew.wordpress.com/676/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=insanecrew.wordpress.com&blog=2369550&post=676&subd=insanecrew&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://insanecrew.wordpress.com/2009/09/29/racion-triple-de-mandriva/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c509a28e4d775ba6436a0d287f40c962?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bersuitvera</media:title>
		</media:content>
	</item>
		<item>
		<title>Conexiones &#8220;lentas&#8221; al servidor SAMBA</title>
		<link>http://insanecrew.wordpress.com/2009/09/29/conexiones-lentas-al-servidor-samba/</link>
		<comments>http://insanecrew.wordpress.com/2009/09/29/conexiones-lentas-al-servidor-samba/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 15:36:11 +0000</pubDate>
		<dc:creator>bersuitvera</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[cifs]]></category>
		<category><![CDATA[samba]]></category>
		<category><![CDATA[slow connection]]></category>
		<category><![CDATA[smb]]></category>
		<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[webdav]]></category>

		<guid isPermaLink="false">http://insanecrew.wordpress.com/?p=671</guid>
		<description><![CDATA[Cuando intento conectar desde un cliente XP(tm) a un recurso compartido de Samba, el tiempo de respuesta es terriblemente lento (entre 20-40s para mostrar el share), este tiempo se agrava cuando nuestro servidor samba y los clientes no están en la misma red y la &#8220;electrónica de red&#8221;  es complicada.
Encontré la solución en este post. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=insanecrew.wordpress.com&blog=2369550&post=671&subd=insanecrew&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p style="text-align:justify;">Cuando intento conectar desde un cliente XP(tm) a un recurso compartido de <a href="http://www.samba.org">Samba</a>, el tiempo de respuesta es terriblemente lento (entre 20-40s para mostrar el share), este tiempo se agrava cuando nuestro servidor samba y los clientes no están en la misma red y la &#8220;electrónica de red&#8221;  es complicada.</p>
<p style="text-align:justify;">Encontré la solución en este <a href="http://fixunix.com/mandriva/399137-very-slow-connection-samba-server.html">post</a>. que viene a decir que cuando un cliente XP intenta conectar con un recurso compartido, no lo hace mediante <a href="http://www.megaupload.com/?d=6CLGZ7ZR http://www.megaupload.com/?d=5NN0R8W1 http://www.megaupload.com/?d=P90N6TSX http://www.megaupload.com/?d=JXG8KXNW http://www.megaupload.com/?d=1AQ7GSQA http://www.megaupload.com/?d=E4V3V7M4 http://www.megaupload.com/?d=JXWTMGOX http://www.megaupload.com/?d=DWI0LPA3 http://www.megaupload.com/?d=JHWCI4R2 http://www.megaupload.com/?d=WYTCAG3V http://www.megaupload.com/?d=2PI3LVN2 http://www.megaupload.com/?d=USGJV5RM http://www.megaupload.com/?d=US8TQANN http://www.megaupload.com/?d=SEP4AL6X http://www.megaupload.com/?d=TIEIKTTB">SMB/CIFS</a> sino que lo intenta primero por <a href="http://es.wikipedia.org/wiki/WebDAV">WebDAV</a> y una vez que no ha tenido resultado intenta el SMB. ¡ No me lo puedo creer! ¡ Cáspita!. Vamos a comprobarlo &#8220;logeando&#8221; el tráfico entre el cliente XP y el servidor samba, efectivamente nuestro amigo intenta primero una conexión por el puerto 80.</p>
<p style="text-align:justify;">Si en nuestro cortafuegos no  hacemos un REJECT explícitamente cuando el cliente XP intenta la conexión al 80 se realiza un DROP (por defecto), por lo que el cliente XP no recibe una negación y espera a agotar el timeout para lo conexión WebDAV antes de intentar el SMB. Denegando explicitamente con REJECT las conexiones al puerto 80 de nuestro servidor samba, ya sea con iptables o con nuestro cortafuegos favorito, conseguiremos reducir ostensiblemente los tiempos de conexión.</p>
Posted in General, Linux Tagged: cifs, Linux, samba, slow connection, smb, sysadmin, webdav <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/insanecrew.wordpress.com/671/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/insanecrew.wordpress.com/671/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/insanecrew.wordpress.com/671/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/insanecrew.wordpress.com/671/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/insanecrew.wordpress.com/671/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/insanecrew.wordpress.com/671/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/insanecrew.wordpress.com/671/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/insanecrew.wordpress.com/671/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/insanecrew.wordpress.com/671/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/insanecrew.wordpress.com/671/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=insanecrew.wordpress.com&blog=2369550&post=671&subd=insanecrew&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://insanecrew.wordpress.com/2009/09/29/conexiones-lentas-al-servidor-samba/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c509a28e4d775ba6436a0d287f40c962?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bersuitvera</media:title>
		</media:content>
	</item>
	</channel>
</rss>