<?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>N31m4D</title>
	<atom:link href="http://n31m4d.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://n31m4d.wordpress.com</link>
	<description>Linux stuff and others...</description>
	<lastBuildDate>Mon, 30 Nov 2009 15:12:34 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>es</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='n31m4d.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/3771674dafb3debdbc1c60a032d5fd8e?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>N31m4D</title>
		<link>http://n31m4d.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://n31m4d.wordpress.com/osd.xml" title="N31m4D" />
		<item>
		<title>Borrar archivos viejos de más de x días</title>
		<link>http://n31m4d.wordpress.com/2009/11/30/borrar-archivos-viejos-de-mas-de-x-dias/</link>
		<comments>http://n31m4d.wordpress.com/2009/11/30/borrar-archivos-viejos-de-mas-de-x-dias/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 15:12:34 +0000</pubDate>
		<dc:creator>n31m4d</dc:creator>
				<category><![CDATA[Gnu/Linux]]></category>

		<guid isPermaLink="false">http://n31m4d.wordpress.com/?p=34</guid>
		<description><![CDATA[find /path/* -mtime +10 -exec rm {} \;
borra los archivos viejos de más 10 días.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=n31m4d.wordpress.com&blog=925021&post=34&subd=n31m4d&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><code>find /path/* -mtime +10 -exec rm {} \;</code></p>
<p>borra los archivos viejos de más 10 días.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/n31m4d.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/n31m4d.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/n31m4d.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/n31m4d.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/n31m4d.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/n31m4d.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/n31m4d.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/n31m4d.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/n31m4d.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/n31m4d.wordpress.com/34/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=n31m4d.wordpress.com&blog=925021&post=34&subd=n31m4d&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://n31m4d.wordpress.com/2009/11/30/borrar-archivos-viejos-de-mas-de-x-dias/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/304ea4fdcf7ea5200ccfebb0925e32a5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">n31m4d</media:title>
		</media:content>
	</item>
		<item>
		<title>reemplazar texto en varios archivos</title>
		<link>http://n31m4d.wordpress.com/2009/08/09/reemplazar-texto-en-varios-archivos/</link>
		<comments>http://n31m4d.wordpress.com/2009/08/09/reemplazar-texto-en-varios-archivos/#comments</comments>
		<pubDate>Sun, 09 Aug 2009 13:07:37 +0000</pubDate>
		<dc:creator>n31m4d</dc:creator>
				<category><![CDATA[Gnu/Linux]]></category>

		<guid isPermaLink="false">http://n31m4d.wordpress.com/?p=30</guid>
		<description><![CDATA[grep -lr -e ‘xxx’ * &#124; xargs sed -i ’s/xxx/yyy/g’
xxx es el texto a reemplazar y yyy el nuevo texto.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=n31m4d.wordpress.com&blog=925021&post=30&subd=n31m4d&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><code>grep -lr -e ‘xxx’ * | xargs sed -i ’s/xxx/yyy/g’</code></p>
<p>xxx es el texto a reemplazar y yyy el nuevo texto.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/n31m4d.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/n31m4d.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/n31m4d.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/n31m4d.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/n31m4d.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/n31m4d.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/n31m4d.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/n31m4d.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/n31m4d.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/n31m4d.wordpress.com/30/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=n31m4d.wordpress.com&blog=925021&post=30&subd=n31m4d&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://n31m4d.wordpress.com/2009/08/09/reemplazar-texto-en-varios-archivos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/304ea4fdcf7ea5200ccfebb0925e32a5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">n31m4d</media:title>
		</media:content>
	</item>
		<item>
		<title>Montar imagen iso</title>
		<link>http://n31m4d.wordpress.com/2009/08/09/montar-imagen-iso/</link>
		<comments>http://n31m4d.wordpress.com/2009/08/09/montar-imagen-iso/#comments</comments>
		<pubDate>Sun, 09 Aug 2009 13:02:34 +0000</pubDate>
		<dc:creator>n31m4d</dc:creator>
				<category><![CDATA[Gnu/Linux]]></category>

		<guid isPermaLink="false">http://n31m4d.wordpress.com/?p=27</guid>
		<description><![CDATA[mount /path/to/image-file.iso /mnt/cdrom -o loop 
donde path/to es la ruta de ubicacion de la imagen ISO.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=n31m4d.wordpress.com&blog=925021&post=27&subd=n31m4d&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><code>mount /path/to/image-file.iso /mnt/cdrom -o loop </code></p>
<p>donde path/to es la ruta de ubicacion de la imagen ISO.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/n31m4d.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/n31m4d.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/n31m4d.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/n31m4d.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/n31m4d.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/n31m4d.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/n31m4d.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/n31m4d.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/n31m4d.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/n31m4d.wordpress.com/27/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=n31m4d.wordpress.com&blog=925021&post=27&subd=n31m4d&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://n31m4d.wordpress.com/2009/08/09/montar-imagen-iso/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/304ea4fdcf7ea5200ccfebb0925e32a5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">n31m4d</media:title>
		</media:content>
	</item>
		<item>
		<title>Backup del sistema</title>
		<link>http://n31m4d.wordpress.com/2008/11/26/backup-del-sistema/</link>
		<comments>http://n31m4d.wordpress.com/2008/11/26/backup-del-sistema/#comments</comments>
		<pubDate>Thu, 27 Nov 2008 01:07:45 +0000</pubDate>
		<dc:creator>n31m4d</dc:creator>
				<category><![CDATA[Gnu/Linux]]></category>
		<category><![CDATA[backup]]></category>

		<guid isPermaLink="false">http://n31m4d.wordpress.com/?p=25</guid>
		<description><![CDATA[Backup :
tar cvpjf backup.tar.bz2 --exclude=/proc --exclude=/lost+found --exclude=/backup.tar.bz2 --exclude=/mnt --exclude=/sys /
Restore :
tar xvpfj backup.tar.bz2 -C /
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=n31m4d.wordpress.com&blog=925021&post=25&subd=n31m4d&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Backup :<br />
<code>tar cvpjf backup.tar.bz2 --exclude=/proc --exclude=/lost+found --exclude=/backup.tar.bz2 --exclude=/mnt --exclude=/sys /</code></p>
<p>Restore :<br />
<code>tar xvpfj backup.tar.bz2 -C /</code></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/n31m4d.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/n31m4d.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/n31m4d.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/n31m4d.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/n31m4d.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/n31m4d.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/n31m4d.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/n31m4d.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/n31m4d.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/n31m4d.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=n31m4d.wordpress.com&blog=925021&post=25&subd=n31m4d&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://n31m4d.wordpress.com/2008/11/26/backup-del-sistema/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/304ea4fdcf7ea5200ccfebb0925e32a5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">n31m4d</media:title>
		</media:content>
	</item>
		<item>
		<title>Tab URL Copier for Firefox 3</title>
		<link>http://n31m4d.wordpress.com/2008/08/16/tab-url-copier-for-firefox-3/</link>
		<comments>http://n31m4d.wordpress.com/2008/08/16/tab-url-copier-for-firefox-3/#comments</comments>
		<pubDate>Sat, 16 Aug 2008 13:59:08 +0000</pubDate>
		<dc:creator>n31m4d</dc:creator>
				<category><![CDATA[firefox]]></category>
		<category><![CDATA[firefox extension]]></category>

		<guid isPermaLink="false">http://n31m4d.wordpress.com/?p=19</guid>
		<description><![CDATA[I used a lot the Tab URL Copier for Firefox 2. It was very useful to make bibliographies and to save a list of open tabs to a file to restore them later. Unfortunately it hasn&#8217;t been updated since 2006, and therefore it is not compatible with Firefox 3.
So I updated it, and here is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=n31m4d.wordpress.com&blog=925021&post=19&subd=n31m4d&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I used a lot the Tab URL Copier for Firefox 2. It was very useful to make bibliographies and to save a list of open tabs to a file to restore them later. Unfortunately it hasn&#8217;t been updated since 2006, and therefore it is not compatible with Firefox 3.</p>
<p>So I updated it, and here is version 1.1.9.20080816 for Firefox 3 :<br />
<a href="http://www.mediafire.com/?p1tjjlkt0zv">http://www.mediafire.com/?p1tjjlkt0zv</a></p>
<p>Enjoy!</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/n31m4d.wordpress.com/19/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/n31m4d.wordpress.com/19/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/n31m4d.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/n31m4d.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/n31m4d.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/n31m4d.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/n31m4d.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/n31m4d.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/n31m4d.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/n31m4d.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/n31m4d.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/n31m4d.wordpress.com/19/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=n31m4d.wordpress.com&blog=925021&post=19&subd=n31m4d&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://n31m4d.wordpress.com/2008/08/16/tab-url-copier-for-firefox-3/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/304ea4fdcf7ea5200ccfebb0925e32a5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">n31m4d</media:title>
		</media:content>
	</item>
		<item>
		<title>Reload Tab on Double Click for Firefox 3</title>
		<link>http://n31m4d.wordpress.com/2008/07/21/reload-tab-on-double-click-for-firefox-3/</link>
		<comments>http://n31m4d.wordpress.com/2008/07/21/reload-tab-on-double-click-for-firefox-3/#comments</comments>
		<pubDate>Tue, 22 Jul 2008 01:59:46 +0000</pubDate>
		<dc:creator>n31m4d</dc:creator>
				<category><![CDATA[firefox]]></category>
		<category><![CDATA[firefox extension]]></category>

		<guid isPermaLink="false">http://n31m4d.wordpress.com/?p=13</guid>
		<description><![CDATA[Reload Tab on Double Click is a very simple and useful extension written by Kyo Nagashima and available on his website :
http://hail2u.net/archives/fxexts.html#reload_tab_on_dblclick
Unfortunately it doesn&#8217;t work in Firefox 3. 
So I updated it, and here is version 1.0.7 for Firefox 3 :
http://www.mediafire.com/?ojkw1dlyz0t
Enjoy!
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=n31m4d.wordpress.com&blog=925021&post=13&subd=n31m4d&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Reload Tab on Double Click is a very simple and useful extension written by Kyo Nagashima and available on his website :<br />
<a href="http://hail2u.net/archives/fxexts.html#reload_tab_on_dblclick">http://hail2u.net/archives/fxexts.html#reload_tab_on_dblclick</a></p>
<p>Unfortunately it doesn&#8217;t work in Firefox 3. </p>
<p>So I updated it, and here is version 1.0.7 for Firefox 3 :<br />
<a href="http://www.mediafire.com/?ojkw1dlyz0t">http://www.mediafire.com/?ojkw1dlyz0t</a></p>
<p>Enjoy!</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/n31m4d.wordpress.com/13/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/n31m4d.wordpress.com/13/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/n31m4d.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/n31m4d.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/n31m4d.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/n31m4d.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/n31m4d.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/n31m4d.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/n31m4d.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/n31m4d.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/n31m4d.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/n31m4d.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=n31m4d.wordpress.com&blog=925021&post=13&subd=n31m4d&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://n31m4d.wordpress.com/2008/07/21/reload-tab-on-double-click-for-firefox-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/304ea4fdcf7ea5200ccfebb0925e32a5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">n31m4d</media:title>
		</media:content>
	</item>
		<item>
		<title>Thunderbird con Active Directory</title>
		<link>http://n31m4d.wordpress.com/2008/01/07/thunderbird-con-active-directory/</link>
		<comments>http://n31m4d.wordpress.com/2008/01/07/thunderbird-con-active-directory/#comments</comments>
		<pubDate>Mon, 07 Jan 2008 12:29:56 +0000</pubDate>
		<dc:creator>n31m4d</dc:creator>
				<category><![CDATA[Mail]]></category>

		<guid isPermaLink="false">http://n31m4d.wordpress.com/2008/01/07/thunderbird-con-active-directory/</guid>
		<description><![CDATA[En este articulo veremos como hacer para autocompletar el campo de destinatario en Thunderbird usando el Active Directory como Adress Book.
Consideramos que la IP del server de Active Directory (AD) es 10.10.10.10.
Para tener más datos del AD, tiramos el comando siguiente :

net ads info -S 10.10.10.10

Y obtenemos lo siguiente :

LDAP server: 10.10.10.10
LDAP server name: ad.miempresa.com
Realm: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=n31m4d.wordpress.com&blog=925021&post=10&subd=n31m4d&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>En este articulo veremos como hacer para autocompletar el campo de destinatario en Thunderbird usando el Active Directory como Adress Book.</p>
<p>Consideramos que la IP del server de Active Directory (AD) es 10.10.10.10.</p>
<p>Para tener más datos del AD, tiramos el comando siguiente :</p>
<p><code><br />
net ads info -S 10.10.10.10<br />
</code></p>
<p>Y obtenemos lo siguiente :<br />
<code><br />
LDAP server: 10.10.10.10<br />
LDAP server name: ad.miempresa.com<br />
Realm: MIEMPRESA.COM<br />
Bind Path: dc=MIEMPRESA,dc=COM<br />
LDAP port: 389<br />
Server time: Mon, 07 Jan 2008 09:43:20 ARST<br />
KDC server: 192.168.0.10<br />
Server time offset: 0<br />
</code></p>
<p>Ahora necesitamos determinar cual es nuestro Bind DN para poder autenticar contra el AD :</p>
<p><code><br />
net ads search '(sAMAccountName=<strong>minombredeusuariodeldominio</strong>)' userPrincipalName -U <strong>minombredeusuariodeldominio</strong> -S 10.10.10.10<br />
</code></p>
<p>Ya tenemos todo lo necesario para configurar el Thunderbird. Abrimos la libreta de direcciones en el menu <em>Tools -&gt; Address Book</em>. Ahí vamos a <em>File -&gt; New -&gt; LDAP Directory </em>y ingresamos los datos siguientes :</p>
<p><code><br />
Name: LDAP MiEmpresa<br />
Hostname: 10.10.10.10<br />
Base DN: dc=MIEMPRESA,dc=COM (Bind Path obtenido por el comando net ads info)<br />
Port number: 3268 (El puerto por defecto, 389, no funciona bien, anda lento y cuelga el thunderbird, el 3268 anda perfectamente bien)<br />
Bind DN: el_bind_dn_encontrado_mas_arriba<br />
Use Secure connection (SSL): off<br />
</code></p>
<p>Ahora abrimos las preferencias del Thunderbird y vamos a la solapa <em>Composition</em>. En <em>Adressing</em>, tildar <em>Directory Server</em> y elegir en la lista el server que recien creamos.</p>
<p>Listo, el Thunderbird esta configurado con el AD como Adress Book : )</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/n31m4d.wordpress.com/10/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/n31m4d.wordpress.com/10/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/n31m4d.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/n31m4d.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/n31m4d.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/n31m4d.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/n31m4d.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/n31m4d.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/n31m4d.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/n31m4d.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/n31m4d.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/n31m4d.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=n31m4d.wordpress.com&blog=925021&post=10&subd=n31m4d&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://n31m4d.wordpress.com/2008/01/07/thunderbird-con-active-directory/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/304ea4fdcf7ea5200ccfebb0925e32a5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">n31m4d</media:title>
		</media:content>
	</item>
		<item>
		<title>pagina de mantenimiento con mod_rewrite</title>
		<link>http://n31m4d.wordpress.com/2007/10/03/pagina-de-mantenimiento-con-mod_rewrite/</link>
		<comments>http://n31m4d.wordpress.com/2007/10/03/pagina-de-mantenimiento-con-mod_rewrite/#comments</comments>
		<pubDate>Wed, 03 Oct 2007 20:55:22 +0000</pubDate>
		<dc:creator>n31m4d</dc:creator>
				<category><![CDATA[Apache]]></category>

		<guid isPermaLink="false">http://n31m4d.wordpress.com/2007/10/03/pagina-de-mantenimiento-con-mod_rewrite/</guid>
		<description><![CDATA[Un cliente necesitaba hacer cambios en su base de datos, y por eso me pidió que le arme algo para que todas las conexiones a todos los virtualhost de su servidor vayan a una pagina de mantenimiento. Tambien necesitaba que desde su maquina pueda seguir viendo los sitios, para poder probrar los cambios de la [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=n31m4d.wordpress.com&blog=925021&post=9&subd=n31m4d&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Un cliente necesitaba hacer cambios en su base de datos, y por eso me pidió que le arme algo para que todas las conexiones a todos los virtualhost de su servidor vayan a una pagina de mantenimiento. Tambien necesitaba que desde su maquina pueda seguir viendo los sitios, para poder probrar los cambios de la DB.</p>
<p>Mi solución fue de usar el mod_rewrite de Apache. Como todos sus VirtualHost estan en /var/www, agregue las lineas siguientes a la conf del Apache ( /etc/httpd/conf/httpd.conf en RedHat) :</p>
<p><code><br />
Options +FollowSymlinks<br />
ReWriteEngine On<br />
RewriteCond %{REQUEST_URI} !/maintenance.html$<br />
RewriteCond %{REMOTE_HOST} !^111\.222\.333\.444<br />
RewriteRule $ http://www.dominio.com/maintenance.html [R=302,L]<br />
</code></p>
<p>El primer RewriteCond hace que los pedidos de la pagina maintenance.html no sean reescritos.<br />
El segundo RewriteCond permite que la IP 111.222.333.444 (claro que esa IP no existe, pongase su propia IP) pueda seguir accediendo a los sitios.<br />
El RewriteRule reescribe todos los pedidos como http://www.dominio.com/maintenance.html.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/n31m4d.wordpress.com/9/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/n31m4d.wordpress.com/9/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/n31m4d.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/n31m4d.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/n31m4d.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/n31m4d.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/n31m4d.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/n31m4d.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/n31m4d.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/n31m4d.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/n31m4d.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/n31m4d.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=n31m4d.wordpress.com&blog=925021&post=9&subd=n31m4d&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://n31m4d.wordpress.com/2007/10/03/pagina-de-mantenimiento-con-mod_rewrite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/304ea4fdcf7ea5200ccfebb0925e32a5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">n31m4d</media:title>
		</media:content>
	</item>
		<item>
		<title>wget con resume</title>
		<link>http://n31m4d.wordpress.com/2007/07/30/wget-con-resume/</link>
		<comments>http://n31m4d.wordpress.com/2007/07/30/wget-con-resume/#comments</comments>
		<pubDate>Mon, 30 Jul 2007 20:27:48 +0000</pubDate>
		<dc:creator>n31m4d</dc:creator>
				<category><![CDATA[Gnu/Linux]]></category>

		<guid isPermaLink="false">http://n31m4d.wordpress.com/2007/07/30/wget-con-resume/</guid>
		<description><![CDATA[Como me lo pidió un amigo después de leer lo del scp con resume, ahora vemos el wget con resume. Buscando en la man page, encontré el comando siguiente :
wget -c http://ar.php.net/get/php-5.2.3.tar.bz2/from/this/mirror
La opción -c sirve para el resume cuando se corta una transferencia.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=n31m4d.wordpress.com&blog=925021&post=7&subd=n31m4d&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Como me lo pidió un amigo después de leer lo del scp con resume, ahora vemos el wget con resume. Buscando en la man page, encontré el comando siguiente :</p>
<p><code>wget -c http://ar.php.net/get/php-5.2.3.tar.bz2/from/this/mirror</code></p>
<p>La opción <em>-c</em> sirve para el resume cuando se corta una transferencia.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/n31m4d.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/n31m4d.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/n31m4d.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/n31m4d.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/n31m4d.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/n31m4d.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/n31m4d.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/n31m4d.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/n31m4d.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/n31m4d.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/n31m4d.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/n31m4d.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=n31m4d.wordpress.com&blog=925021&post=7&subd=n31m4d&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://n31m4d.wordpress.com/2007/07/30/wget-con-resume/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/304ea4fdcf7ea5200ccfebb0925e32a5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">n31m4d</media:title>
		</media:content>
	</item>
		<item>
		<title>scp con resume</title>
		<link>http://n31m4d.wordpress.com/2007/07/30/scp-con-resume/</link>
		<comments>http://n31m4d.wordpress.com/2007/07/30/scp-con-resume/#comments</comments>
		<pubDate>Mon, 30 Jul 2007 16:42:11 +0000</pubDate>
		<dc:creator>n31m4d</dc:creator>
				<category><![CDATA[Gnu/Linux]]></category>

		<guid isPermaLink="false">http://n31m4d.wordpress.com/2007/07/30/scp-con-resume/</guid>
		<description><![CDATA[Para poder usar scp con resume, útil en el caso de que se corte la conexión durante la transferencia de muchos datos, agregamos en nuestro archivo .bashrc la linea siguiente :
alias scpr="rsync --partial --progress --rsh=ssh"
Entonces, para transferir un archivo con resume, usaremos scpr en lugar de scp. Eso es posible gracias a nuestro amigo rsync, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=n31m4d.wordpress.com&blog=925021&post=6&subd=n31m4d&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Para poder usar <em>scp</em> con resume, útil en el caso de que se corte la conexión durante la transferencia de muchos datos, agregamos en nuestro archivo <em>.bashrc</em> la linea siguiente :</p>
<p><code>alias scpr="rsync --partial --progress --rsh=ssh"</code></p>
<p>Entonces, para transferir un archivo con resume, usaremos <em>scpr</em> en lugar de <em>scp</em>. Eso es posible gracias a nuestro amigo <em>rsync</em>, quien tiene esa capacidad de resume.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/n31m4d.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/n31m4d.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/n31m4d.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/n31m4d.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/n31m4d.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/n31m4d.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/n31m4d.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/n31m4d.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/n31m4d.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/n31m4d.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/n31m4d.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/n31m4d.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=n31m4d.wordpress.com&blog=925021&post=6&subd=n31m4d&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://n31m4d.wordpress.com/2007/07/30/scp-con-resume/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/304ea4fdcf7ea5200ccfebb0925e32a5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">n31m4d</media:title>
		</media:content>
	</item>
	</channel>
</rss>