<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>openbsd &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/openbsd/</link>
	<description>Feed of posts on WordPress.com tagged "openbsd"</description>
	<pubDate>Sat, 28 Nov 2009 12:50:04 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Command Aliases]]></title>
<link>http://jasonk2600.wordpress.com/2009/11/26/command-aliases/</link>
<pubDate>Thu, 26 Nov 2009 07:22:00 +0000</pubDate>
<dc:creator>jasonk2600</dc:creator>
<guid>http://jasonk2600.wordpress.com/2009/11/26/command-aliases/</guid>
<description><![CDATA[You can use aliases to decrease the amount of typing you need to do to get commands you commonly use]]></description>
<content:encoded><![CDATA[You can use aliases to decrease the amount of typing you need to do to get commands you commonly use]]></content:encoded>
</item>
<item>
<title><![CDATA[Random Notes &ndash; Creating Symlinks with LN]]></title>
<link>http://jasonk2600.wordpress.com/2009/11/25/random-note-creating-symlinks-with-ln/</link>
<pubDate>Wed, 25 Nov 2009 12:09:00 +0000</pubDate>
<dc:creator>jasonk2600</dc:creator>
<guid>http://jasonk2600.wordpress.com/2009/11/25/random-note-creating-symlinks-with-ln/</guid>
<description><![CDATA[A symlink is simply a pointer to a file or directory.&#160; Symlinks are used in Linux, *BSD, and UN]]></description>
<content:encoded><![CDATA[A symlink is simply a pointer to a file or directory.&#160; Symlinks are used in Linux, *BSD, and UN]]></content:encoded>
</item>
<item>
<title><![CDATA[Quickie HowTo &ndash; Reverse DNS Lookups with Dig]]></title>
<link>http://jasonk2600.wordpress.com/2009/11/21/quickie-howto-reverse-dns-lookups-with-dig/</link>
<pubDate>Sat, 21 Nov 2009 17:32:00 +0000</pubDate>
<dc:creator>jasonk2600</dc:creator>
<guid>http://jasonk2600.wordpress.com/2009/11/21/quickie-howto-reverse-dns-lookups-with-dig/</guid>
<description><![CDATA[Finding out the domain name associated with an IP address is just as simple as finding out the IP ad]]></description>
<content:encoded><![CDATA[Finding out the domain name associated with an IP address is just as simple as finding out the IP ad]]></content:encoded>
</item>
<item>
<title><![CDATA[Setting up Postfix as an SMTP client with SASL authentication and TLS]]></title>
<link>http://bsdclub.wordpress.com/2009/11/18/setting-up-postfix-as-an-smtp-client-with-sasl-authentication/</link>
<pubDate>Wed, 18 Nov 2009 22:26:57 +0000</pubDate>
<dc:creator>bsdclub</dc:creator>
<guid>http://bsdclub.wordpress.com/2009/11/18/setting-up-postfix-as-an-smtp-client-with-sasl-authentication/</guid>
<description><![CDATA[OpenBSD 4.6 Adding the package: # pkg_add -vi postfix-2.6.2-sasl2 Replacing sendmail with postfix: #]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>OpenBSD 4.6</p>
<p>Adding the package:</p>
<blockquote>
<pre># pkg_add -vi postfix-2.6.2-sasl2</pre>
</blockquote>
<p>Replacing sendmail with postfix:</p>
<blockquote>
<pre># /usr/local/sbin/postfix-enable</pre>
</blockquote>
<p>Updating the startup parameters:</p>
<blockquote>
<pre># echo 'sendmail_flags="-bd"' &#62;&#62; /etc/rc.conf.local
# echo 'syslogd_flags="-a /var/spool/postfix/dev/log"' &#62;&#62; \
/etc/rc.conf.local
# kill -HUP `head -1 /var/run/syslog.pid`</pre>
</blockquote>
<p>Remove the &#8220;sendmail clientmqueue runner&#8221; from root&#8217;s crontab:</p>
<blockquote>
<pre># crontab -eu root</pre>
</blockquote>
<p>Configuring address mapping for delivery:</p>
<blockquote>
<pre># echo &#60;local-username&#62; &#60;remote-username@remote-domain&#62; &#62;&#62; \
/etc/postfix/generic
# postmap /etc/postfix/generic</pre>
</blockquote>
<p>Configuring login on remote machine:</p>
<blockquote>
<pre># echo "[&#60;remote-smtp-host&#62;] &#60;remote-login&#62;:&#60;remote-password&#62;" &#62;&#62; \
/etc/postfix/sasl_passwd
# chmod 600 /etc/postfix/sasl_passwd
# postmap /etc/postfix/sasl_passwd</pre>
</blockquote>
<p>Setting up Postfix main configuration:</p>
<blockquote>
<pre># echo "smtp_generic_maps = hash:/etc/postfix/generic" &#62;&#62; \
/etc/postfix/main.cf
# echo "smtp_sasl_auth_enable = yes" &#62;&#62; /etc/postfix/main.cf
# echo "smtp_sasl_security_options = noanonymous" &#62;&#62; \\
/etc/postfix/main.cf
# echo "smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd" &#62;&#62; \
/etc/postfix/main.cf</pre>
</blockquote>
<p>Force TLS encryption:</p>
<blockquote>
<pre># echo "smtp_tls_security_level = encrypt" &#62;&#62; /etc/postfix/main.cf
# echo "smtp_tls_mandatory_protocols = TLSv1" &#62;&#62; /etc/postfix/main.cf
# echo "smtp_tls_mandatory_ciphers = high" &#62;&#62; /etc/postfix/main.cf</pre>
</blockquote>
<p>Restrict listening to localhost.  Set up /etc/postfix/main.cf as follows:</p>
<blockquote>
<pre>inet_interfaces = 127.0.0.1, [::1]</pre>
</blockquote>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[tmpSetting up Postfix as an SMTP client with SASL authentication]]></title>
<link>http://bsdclub.wordpress.com/2009/11/18/setting-up-postfix-as-a-sasl-smtp-client/</link>
<pubDate>Wed, 18 Nov 2009 22:04:37 +0000</pubDate>
<dc:creator>bsdclub</dc:creator>
<guid>http://bsdclub.wordpress.com/2009/11/18/setting-up-postfix-as-a-sasl-smtp-client/</guid>
<description><![CDATA[OpenBSD 4.6 Adding the package: # pkg_add -vi postfix-2.6.2-sasl2 Replacing sendmail with postfix: #]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>OpenBSD 4.6</p>
<p>Adding the package:</p>
<blockquote>
<pre># pkg_add -vi postfix-2.6.2-sasl2</pre>
</blockquote>
<p>Replacing sendmail with postfix:</p>
<blockquote>
<pre># /usr/local/sbin/postfix-enable</pre>
</blockquote>
<p>Updating the startup parameters:</p>
<blockquote>
<pre># echo 'sendmail_flags="-bd"' &#62;&#62; /etc/rc.conf.local
# echo 'syslogd_flags="-a /var/spool/postfix/dev/log"' &#62;&#62;
/etc/rc.conf.local</pre>
</blockquote>
<p>Remove the &#8220;sendmail clientmqueue runner&#8221; from root&#8217;s crontab:</p>
<blockquote>
<pre># crontab -eu root</pre>
</blockquote>
<p>Configuring address mapping for delivery</p>
<blockquote>
<pre># echo &#60;local-username&#62; &#60;remote-username@remote-domain&#62; &#62;&#62;
/etc/postfix/generic
# postmap /etc/postfix/generic</pre>
</blockquote>
<p>Configuring remote login:</p>
<blockquote>
<pre># echo "[&#60;remote-smtp-host&#62;] &#60;remote-login&#62;:&#60;remote-password&#62;" &#62;&#62;
/etc/postfix/sasl_passwd
# postmap /etc/postfix/sasl_passwd</pre>
</blockquote>
<p>Setting up Postfix main configuration:</p>
<blockquote>
<pre>echo "smtp_generic_maps = hash:/etc/postfix/generic" &#62;&#62;
/etc/postfix/main.cf
echo "smtp_sasl_auth_enable = yes" &#62;&#62; /etc/postfix/main.cf
echo "smtp_sasl_security_options = noanonymous" &#62;&#62; \
/etc/postfix/main.cf
echo "smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd" &#62;&#62;
/etc/postfix/main.cf</pre>
</blockquote>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Better Listing with LS]]></title>
<link>http://jasonk2600.wordpress.com/2009/11/18/better-listing-with-ls/</link>
<pubDate>Wed, 18 Nov 2009 21:07:00 +0000</pubDate>
<dc:creator>jasonk2600</dc:creator>
<guid>http://jasonk2600.wordpress.com/2009/11/18/better-listing-with-ls/</guid>
<description><![CDATA[Tired of the plain, monochrome directory and file listings with the ls command?&#160; Try adding a c]]></description>
<content:encoded><![CDATA[Tired of the plain, monochrome directory and file listings with the ls command?&#160; Try adding a c]]></content:encoded>
</item>
<item>
<title><![CDATA[Netstat Usage in FreeBSD]]></title>
<link>http://jasonk2600.wordpress.com/2009/11/17/netstat-usage-in-freebsd/</link>
<pubDate>Tue, 17 Nov 2009 02:03:22 +0000</pubDate>
<dc:creator>jasonk2600</dc:creator>
<guid>http://jasonk2600.wordpress.com/2009/11/17/netstat-usage-in-freebsd/</guid>
<description><![CDATA[The netstat program in FreeBSD (and many other OS&#8217;s) is an invaluable tool used to display var]]></description>
<content:encoded><![CDATA[The netstat program in FreeBSD (and many other OS&#8217;s) is an invaluable tool used to display var]]></content:encoded>
</item>
<item>
<title><![CDATA[Adobe Flash on OpenBSD]]></title>
<link>http://thinkminus.wordpress.com/2009/11/12/adobe-flash-on-openbsd/</link>
<pubDate>Thu, 12 Nov 2009 05:20:02 +0000</pubDate>
<dc:creator>Amber Jain</dc:creator>
<guid>http://thinkminus.wordpress.com/2009/11/12/adobe-flash-on-openbsd/</guid>
<description><![CDATA[Hello, I personally prefer to download youtube etc. videos first and then watch them using Mplayer e]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Hello,</p>
<p>I personally prefer to download youtube etc. videos first and then watch them using Mplayer etc. but here are some useful links if you really want to use Adobe Flash on OpenBSD:</p>
<p><a href="http://kerneltrap.org/mailarchive/openbsd-misc/2007/12/17/512360">Link 1</a><br />
<a href="http://undeadly.org/cgi?action=article&#38;sid=20070907181228">Link 2</a><br />
<a href="http://openbsd.org/faq/faq13.html#flashplugin">Link 3</a></p>
<p>****Update 1: swfdec (<a href="http://swfdec.freedesktop.org/wiki/">http://swfdec.freedesktop.org/wiki/</a>) is also an option other than gnash on OpenBSD (or atleast it seems so) although I have not personally tried swfdec).</p>
<p> <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Recursively search sub-directories in a directory to delete a file with a specific name]]></title>
<link>http://thinkminus.wordpress.com/2009/11/12/recursively-search-sub-directories-in-a-directory-to-delete-a-file-with-a-specific-name/</link>
<pubDate>Thu, 12 Nov 2009 05:13:40 +0000</pubDate>
<dc:creator>Amber Jain</dc:creator>
<guid>http://thinkminus.wordpress.com/2009/11/12/recursively-search-sub-directories-in-a-directory-to-delete-a-file-with-a-specific-name/</guid>
<description><![CDATA[Hello, @Windows OS users: Sometimes when a malware simply installs itself recursively in all the sub]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Hello,</p>
<p>@Windows OS users: Sometimes when a malware simply installs itself recursively in all the sub-directories (starting from root i.e. C:) with the same name, you need to delete each file. Manual deletion is not  usually possible when there are thousands of malware files. This could prove useful to you.<br />
And yes, use some &#8216;better&#8217; OS if you can. </p>
<p>On ##unix at irc.freenode.net, someone (justinko) asked a question that goes like:<br />
Que: How to recursively search all sub-directories in a directory to delete a file with a specific name?</p>
<p>Answer: Rather than providing only the answer, I prefer putting the complete IRC log here (mind you, &#8216;justinko&#8217; and &#8216;Riviera&#8217; are the nicks of persons involved in this conversation):<br />
<code>justinko how do I delete a file in every sub directory?<br />
justinko im in a directory that has directores, and inside those directories there is one file that needs to be deleted<br />
Riviera with a particular name?<br />
justinko yes<br />
justinko I know the exact file name<br />
Riviera okay<br />
Riviera find directory/ -type f -name 'exact_filename' -exec rm -f -- {} +<br />
justinko is find a command?<br />
Riviera yes<br />
justinko the sub-directories are all named differently<br />
Riviera some finds (actually I only know about GNU find) even have the primary -delete<br />
Riviera yes<br />
Riviera i figured<br />
Riviera The find command I gave you recusively checks all files in the "directory/" hierarchy for files with the name "exact_filename",<br />
Riviera executing the command "rm -f --" with the found pathnames as parameters.<br />
Riviera recursively*<br />
Riviera If you want to learn more about find, read this: http://mywiki.wooledge.org/UsingFind<br />
Riviera note that some of the examples given there are related to the bash-shell.<br />
justinko damn that worked<br />
Riviera I'm glad <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
justinko what is - type f ?<br />
justinko I know rm -f is "force remove"<br />
Riviera restricts the filetype to "ordinary files"<br />
justinko k<br />
justinko what does {} mean?<br />
Riviera so that even if you'd have directories with the same name as the files you wish to remove, would be left alone<br />
Riviera when find starts the command given after the -exec primary<br />
Riviera (which, in this case, was "rm")<br />
Riviera it replaces the {} with the pathnames it found.<br />
Riviera the + says to put many of them<br />
justinko amazing<br />
Riviera with a \; instead of a +, one rm would be started per file<br />
justinko are you a system admin by job?<br />
Riviera but since rm can remove more than one file at a time ... using "+" is more efficient<br />
Riviera no, i'm not <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Riviera i study humanities ,)<br />
Riviera am sorry, need to leave now, quite late here <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Riviera nite <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
justinko thank you for the help!<br />
Riviera <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </code></p>
<p> <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[OpenBSD, CUPS, hplip and my hp-910 printer]]></title>
<link>http://thinkminus.wordpress.com/2009/11/11/openbsd-cups-hplip-and-my-hp-910-printer/</link>
<pubDate>Wed, 11 Nov 2009 15:03:02 +0000</pubDate>
<dc:creator>Amber Jain</dc:creator>
<guid>http://thinkminus.wordpress.com/2009/11/11/openbsd-cups-hplip-and-my-hp-910-printer/</guid>
<description><![CDATA[Hello, A couple of times in past months I tried installing my printer (hp 910) under OpenBSD. This t]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Hello, </p>
<p>A couple of times in past months I tried installing my printer (hp 910) under OpenBSD. This thought had previously destroyed many days of mine in an effort to print using my hp-910 printer under OpenBSD. But as someone had rightly said: &#8220;To have no errors would be life without meaning-No struggle, no joy&#8221;. Although there were no errors, but I was missing one step or other every time I tried and thus there was a never ending &#8217;struggle&#8217;) I finally got &#8216;joy&#8217; of printing using my printer under OpenBSD a couple of days ago <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>That day I started in afternoon with plans to print under my OpenBSD 4.5 installation. I tried looking for some help at #openbsd on freenode&#8230;the fine folks there gave me a few pointers. I also tried searching google and got some good stuff (and links) on OpenBSD forum on nabble.com.<br />
I first tried configuring CUPS, then tried using &#8216;lpd&#8217;, then some other stuff. Then I tried configuring CUPS again. This took most of my day and in the end when I was starting to lose hope&#8230;.whoosh, I gave a &#8220;Print test page&#8221; command using CUPS local web interface and my printer made that familiar sound of printing. I was laughing for the first time that day. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<a href="http://thinkminus.wordpress.com/files/2009/11/cups_left.png"><img src="http://thinkminus.wordpress.com/files/2009/11/cups_left.png" alt="CUPS" title="CUPS" /></a><br />
<strong></p>
<blockquote><p>I&#8217;m writing a detailed article on various possibilities/ways to install printers under unixes/linuxes/BSDs (It&#8217;ll take some time as I take a lot of time composing my thoughts nicely) and I will soon link it from my blog. </p></blockquote>
<p></strong><br />
 <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Si eres de los que usa aún Windows "Bad Vista" or "Worst 7even", lo tienes facil para cambiar:  visita Distrowatch.com y elije una Distribución Linux]]></title>
<link>http://arrigorrimendi.wordpress.com/2009/11/08/si-aun-eres-de-los-que-usa-windows-bad-vista-or-worst-7even-lo-tienes-facil-para-cambiar-visita-distrowatch-com/</link>
<pubDate>Sun, 08 Nov 2009 10:25:42 +0000</pubDate>
<dc:creator>Lucio Arrigorrimendi</dc:creator>
<guid>http://arrigorrimendi.wordpress.com/2009/11/08/si-aun-eres-de-los-que-usa-windows-bad-vista-or-worst-7even-lo-tienes-facil-para-cambiar-visita-distrowatch-com/</guid>
<description><![CDATA[&#8220;Actualidad informática Libre Open Source Linux: en estos últimos días en particular, y en las]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>&#8220;Actualidad informática Libre Open Source Linux: en estos últimos días en particular, y en las dos o tres semanas anteriores, han salido las nuevas versiones estables de algunas de las distribuciones Linux mas solidas, importantes, conocidas y utilizadas a nivel mundial: &#8220;openSUSE 11.2&#8243;, &#8220;sidux 2009-03&#8243;, &#8220;Ubuntu 9.10 -Kubuntu, Xubuntu, Ubuntu Studio, Mythbuntu 9.10-&#8221;, &#8220;Mandriva Linux 2010&#8243;, &#8220;MEPIS 8.0.12&#8243;, &#8220;Moblin 2.1&#8243;, &#8220;PCLinuxOS 2009.4 (Phoenix)&#8221;, &#8220;ALT Linux 5.0&#8243;, &#8220;Puppy Linux 4.3.1&#8243;, &#8220;OpenBSD 4.6&#8243; (una excelente Distro BSD), &#8220;Gentoo Linux10.1&#8243;, &#8220;Slackware Linux 13.0&#8243;, &#8220;CentOS 5.4&#8243;, &#8220;SystemRescueCd 1.3.1&#8243;, &#8220;Sabayon Linux 5.0&#8243;, &#8220;Elive 1.9.51&#8243;, &#8220;DragonFly BSD 2.4.1&#8243; (otra innovadora Distro BSD)&#8230; Una floresta de Distros, un autentico festival FLOSS a tu servicio&#8230;&#8221;</strong></p>
<div id="attachment_144" class="wp-caption aligncenter" style="width: 428px"><a href="http://arrigorrimendi.wordpress.com/files/2009/11/750px-trisquel_2-11.png"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/750px-trisquel_2-11.png" alt="Trisquel 2.1" title="Trisquel 2.1" width="418" height="334" class="size-full wp-image-144" /></a><p class="wp-caption-text">Trisquel 2.1</p></div>
<p>La noticia de actualidad en el mundo de la informática es el lanzamiento del sistema operativo de Microsoft: Windows Seven. Bien, esto es así porque las campañas de publicidad y marketing así lo imponen al publico. Hay, sin embargo, otros Sistemas Operativos, de excelente factura, con tanta o seguramente mejor calidad que los de Microsoft: Mac OSX (Apple), Distribuciones de Linux, Solaris o BSD; e incluso muchos otros.</p>
<p>De estos, algunos tienen considerables ventajas respecto a Sistemas propietarios, caros y de código cerrado como los de Microsoft y Apple.<br />
Estos sistemas, basados en la informática de código fuente abierto y Libre, no solo presentan muchas ventajas técnicas sobre los anteriormente citados, sinó que, además son en su mayor parte gratuitos. Cualquiera puede descargarlos gratis en Internet o encargar un CD/DVD por un módico precio.</p>
<div id="attachment_137" class="wp-caption aligncenter" style="width: 428px"><a href="http://arrigorrimendi.wordpress.com/files/2009/11/800px-distrowatch2.png"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/800px-distrowatch2.png" alt="Distrowatch.com" title="Distrowatch.com" width="418" height="313" class="size-full wp-image-137" /></a><p class="wp-caption-text">Distrowatch.com</p></div>
<p>Si pertenecen a alguna empresa, esta los cede gratuitamente y obtiene beneficios mediante servicios informáticos en hardware y software como, consultoria, mantenimiento, adaptación etc.<br />
Estos sistemas son muy numerosos, están basados generalmente en componentes GNU, mas otras aplicaciones FLOSS y usando el núcleo Linux. Este conjunto de elementos conforma una Distribución de software y contiene numerosas aplicaciones informáticas; mas que suficientes para cualquier utilizador final, ya sea en el hogar en en el ámbito empresarial.<br />
Tienen otra importante ventaja, están compuestos de software que es menos vulnerable, y menos susceptible de ser atacado por virus, malware, espías etc.<br />
La buena noticia es que no son de actualidad una vez cada 3, 5 ó 7 años como los de Microsoft, sino que están siempre de actualidad.</p>
<div id="attachment_141" class="wp-caption aligncenter" style="width: 428px"><a href="http://arrigorrimendi.wordpress.com/files/2009/11/800px-trisquel_gnu_linux1.png"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/800px-trisquel_gnu_linux1.png" alt="Trisquel GNU-Linux" title="Trisquel GNU-Linux" width="418" height="261" class="size-full wp-image-141" /></a><p class="wp-caption-text">Trisquel GNU-Linux</p></div>
<p>Hay cientos de Distribuciones Linux, y un buen puñado de otras Distribuciones con otros núcleos no Linux. Y cada semana aparecen nuevas versiones, nuevos lanzamientos y novedades. O sea están siempre de actualidad y siempre mejorando.<br />
Pero si realmente buscas la actualidad, en estos últimos días en particular, y en las dos o tres semanas anteriores, han salido las nuevas versiones estables de algunas de las distribuciones Linux mas solidas, importantes, conocidas y utilizadas a nivel mundial: &#8220;openSUSE 11.2&#8243;, &#8220;sidux 2009-03&#8243;, &#8220;Ubuntu 9.10 -Kubuntu, Xubuntu, Ubuntu Studio, Mythbuntu 9.10-&#8221;, &#8220;Mandriva Linux 2010&#8243;, &#8220;MEPIS 8.0.12&#8243;, &#8220;Moblin 2.1&#8243;, &#8220;PCLinuxOS 2009.4 (Phoenix)&#8221;, &#8220;ALT Linux 5.0&#8243;, &#8220;Puppy Linux 4.3.1&#8243;, &#8220;OpenBSD 4.6&#8243; (una excelente Distro BSD), &#8220;Gentoo Linux10.1&#8243;, &#8220;Slackware Linux 13.0&#8243;, &#8220;CentOS 5.4&#8243;, &#8220;SystemRescueCd 1.3.1&#8243;, &#8220;Sabayon Linux 5.0&#8243;, &#8220;Elive 1.9.51&#8243;, &#8220;DragonFly BSD 2.4.1&#8243; (otra innovadora Distro BSD)&#8230;<br />
 Una floresta de Distros, un autentico festival FLOSS a tu servicio, como puedes ver.<br />
¿A que esperas? Son mas limpios, mas seguros, y gratuitos. Infórmate, decide que distribución te interesa y úsala. Ganarás tu, ganará la informática y ganará todo el mundo en general.</p>
<div id="attachment_192" class="wp-caption aligncenter" style="width: 428px"><a href="http://arrigorrimendi.wordpress.com/files/2009/11/trisquel-beryl-cube-pantallazo.png"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/trisquel-beryl-cube-pantallazo.png" alt="Trisquel + Beryl Cube Pantallazo" title="Trisquel + Beryl Cube Pantallazo" width="418" height="313" class="size-full wp-image-192" /></a><p class="wp-caption-text">Trisquel + Beryl Cube Pantallazo</p></div>
<p>Hay algunos sitios en Español donde se anuncian algunas de estas novedades Linux (barrapunto.com), pero a nivel mundial hay un Sitio web que es la referencia para tener toda la información deseada respecto a estos Sistemas Operativos y Distribuciones. Este sitio es &#8220;Distrowatch.com&#8221;</p>
<div id="attachment_143" class="wp-caption aligncenter" style="width: 428px"><a href="http://arrigorrimendi.wordpress.com/files/2009/11/750px-zenwalk-6-01.png"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/750px-zenwalk-6-01.png" alt="Zenwalk Linux" title="Zenwalk Linux" width="418" height="334" class="size-full wp-image-143" /></a><p class="wp-caption-text">Zenwalk Linux</p></div>
<p>Si eres de los que usa aún Windows &#8220;Bad Vista&#8221; or &#8220;Worst 7even&#8221;, lo tienes fácil para cambiar: visita Distrowatch http://distrowatch.com y elije un Distribución Linux.<br />
Desde hace ya varios años, desde el 2004, al menos, que yo recuerde, visito casi diariamente Distrowatch.com (http://distrowatch.com/). Siempre encuentro un placer extraño, una dicha inexplicable, y probablemente irracional, cada vez que una nueva distribución Linux, o de otro tipo (BSD flavours, Solaris&#8230;) compuesta por aplicaciones informáticas Libres y de código abierto, es lanzada en la Red.<br />
DistroWatch es el sitio de referencia si quieres estar informado respecto a todo tipo de distribuciones de software Libre/Open Source (FLOSS: Free Libre Open source Software). La información esta básicamente Inglés, pero sus páginas tienen versión en otras lenguas, incluido el Español.</p>
<p><a href="http://arrigorrimendi.wordpress.com/files/2009/11/800px-arch_linux-beryl-sshot1.png"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/800px-arch_linux-beryl-sshot1.png" alt="Arch Linux + Beryl" title="Arch Linux + Beryl" width="418" height="313" class="aligncenter size-full wp-image-147" /></a></p>
<p>El Creador y encargado del mantenimiento del sitio es Ladislav Bodnar, aunque ahora tiene algunos colaboradores.<br />
El sitio Web se ocupa básicamente de dar una información exhaustiva de todas las distribuciones de Software Libre/Open Source (FLOSS) existentes en el mundo. Y hay unos cuantos cientos de ellas. Hay una gran variedad de información y de clasificaciones atendiendo a la lengua, tipo, utilidad, componentes, arquitectura de las distribuciones etc.<br />
Si quieres mas información sobre que es una distribución Linux aquí tienes información sobre ello: distribución Linux en Wikipedia http://es.wikipedia.org/wiki/Distribuci%C3%B3n_Linux y Linux distribution en Wikipedia (ingles)  http://en.wikipedia.org/wiki/Linux_distribution</p>
<p>Aparte de en Wikipedia y en Distrowatch puedes encontrar numerosa información el la Red sobre Linux u otros sistemas operativos de software Libre/Open Source (FLOSS: Free Libre Open source Software) Software Libre/Open Source (FLOSS).<br />
Yo mismo hice una pagina en Wikipedia sobre las &#8220;Distribuciones Linux que sólamente contienen &#8216;Free/Libre/Open Source/software. Puedes visitarla aqui (aunque estan en proceso de finalización).</p>
<p><a href="http://arrigorrimendi.wordpress.com/files/2009/11/800px-linux_cap1.png"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/800px-linux_cap1.png" alt="Linux, mejor escritorio que Windows o Mac OSX" title="Linux, mejor escritorio que Windows o Mac OSX" width="418" height="313" class="aligncenter size-full wp-image-150" /></a></p>
<p>Es importante respetar que solo se incluyan aplicaciones FLOSS, por muchas razones.<br />
Puedes encontrar mas información sobre ello aquí (). Pero baste con significar, que si se empieza a llenar una distribución Linux con software propietario, de código cerrado y software comercial caro, acabará siendo como Windows: lento, inseguro, caro, lleno de virus, programas espias, rookits y malware etc. Esto es fácil de comprender. Así que, por tu bien, y el de todos, usa Linux con programas que sean unicamente FLOSS; todos ganaremos. Intenta utilizar Distribuciones que contengan exclusivamente software Libre/Open source.<br />
Puedo señalar que en el caso del idioma español hay algunas excelentes, como &#8220;Trisquel&#8221;, &#8220;Musix&#8221;, o &#8220;Ututo&#8221;, que contienen exclusivamente FLOSS. Si buscas una distro mas internacional, puedes usar &#8220;gNewSense&#8221;, que esta basada en &#8220;Ubuntu&#8221;, pero eliminando el software propietario, o &#8220;Trisquel&#8221;, basada también en &#8220;Ubuntu&#8221;, y que tiene incluidas varias lenguas internacionales e incluso una versión especial para empresas.</p>
<div id="attachment_108" class="wp-caption aligncenter" style="width: 428px"><a href="http://arrigorrimendi.wordpress.com/files/2009/11/mepis_antix_8.png"><img class="size-full wp-image-108" title="MEPIS_antiX_8" src="http://arrigorrimendi.wordpress.com/files/2009/11/mepis_antix_8.png" alt="MEPIS_antiX_8" width="418" height="334" /></a><p class="wp-caption-text">MEPIS antiX 8</p></div>
<p>DistroWatch http://es.wikipedia.org/wiki/DistroWatch  y DistroWatch (en ingles) http://en.wikipedia.org/wiki/DistroWatch</p>
<p><a href="http://distrowatch.com/">DistroWatch</a></p>
<p>http://en.wikipedia.org/wiki/List_of_Linux_distributions_free_of_proprietary_code</p>
<p>Distribuciones Linux.<br />
Distrowatch.com (http://distrowatch.com/)<br />
distribución Linux, o de otro tipo (BSD flavours, Solaris&#8230;)<br />
compuesta por aplicaciones informáticas Libres y de código abierto,<br />
lengua, tipo, utilidad, componentes, arquitectura de las distribuciones etc.</p>
<p>Y ademas de todo las Distribuciones Linux son enormemente bellas, realmente agradables e innovadoras en el aspecto visual. disfruta en estas imágenes de la belleza de algunas de las Interfaces gráficas que se pueden utilizar en Linux. Estas son muy variadas y vienen integradas en cada distribución, al contrario de Windows donde solo hay una interfaz gráfica de base.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8211; TAMOS TRABAJANDO EN EL ARTICULO, PACIENCIA, QUE LO ACABAMOS PRONTO, o tarde&#8230; &#8212;&#8212;&#8212;&#8212;</p>
<p>NO<img src="http://arrigorrimendi.wordpress.com/files/2009/11/750px-trisquel_2-12.png" alt="Trisquel 2.1" title="Trisquel 2.1" width="418" height="334" class="aligncenter size-full wp-image-146" /></p>
<div id="attachment_157" class="wp-caption aligncenter" style="width: 428px"><a href="http://arrigorrimendi.wordpress.com/files/2009/11/750px-beryl2.png"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/750px-beryl2.png" alt="Beryl effects - Window bending" title="Beryl effects - Window bending" width="418" height="334" class="size-full wp-image-157" /></a><p class="wp-caption-text">Beryl effects - Window bending</p></div>
<div id="attachment_158" class="wp-caption aligncenter" style="width: 428px"><a href="http://arrigorrimendi.wordpress.com/files/2009/11/750px-beryl_cube4.png"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/750px-beryl_cube4.png" alt="Beryl Cube" title="Beryl Cube" width="418" height="334" class="size-full wp-image-158" /></a><p class="wp-caption-text">Beryl Cube</p></div>
<p><a href="http://arrigorrimendi.wordpress.com/files/2009/11/750px-beryl_cube_2.png"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/750px-beryl_cube_2.png" alt="Beryl Cube 2" title="Beryl Cube 2" width="418" height="334" class="aligncenter size-full wp-image-159" /></a></p>
<div id="attachment_160" class="wp-caption aligncenter" style="width: 428px"><a href="http://arrigorrimendi.wordpress.com/files/2009/11/750px-beryl_general.png"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/750px-beryl_general.png" alt="Beryl General" title="Beryl General" width="418" height="334" class="size-full wp-image-160" /></a><p class="wp-caption-text">Beryl General</p></div>
<div id="attachment_162" class="wp-caption aligncenter" style="width: 428px"><a href="http://arrigorrimendi.wordpress.com/files/2009/11/750px-beryl_grouping.png"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/750px-beryl_grouping.png" alt="Beryl Grouping" title="Beryl Grouping" width="418" height="334" class="size-full wp-image-162" /></a><p class="wp-caption-text">Beryl Grouping</p></div>
<div id="attachment_163" class="wp-caption aligncenter" style="width: 428px"><a href="http://arrigorrimendi.wordpress.com/files/2009/11/750px-beryl_scale.png"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/750px-beryl_scale.png" alt="Beryl Scale" title="Beryl Scale" width="418" height="334" class="size-full wp-image-163" /></a><p class="wp-caption-text">Beryl Scale</p></div>
<p><a href="http://arrigorrimendi.wordpress.com/files/2009/11/750px-beryl-cube-1.png"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/750px-beryl-cube-1.png" alt="Beryl Cube 1" title="Beryl Cube 1" width="418" height="334" class="aligncenter size-full wp-image-164" /></a></p>
<div id="attachment_165" class="wp-caption aligncenter" style="width: 428px"><a href="http://arrigorrimendi.wordpress.com/files/2009/11/750px-beryl-desktop.png"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/750px-beryl-desktop.png" alt="Beryl Desktop (transparencies)" title="Beryl Desktop (transparencies)" width="418" height="334" class="size-full wp-image-165" /></a><p class="wp-caption-text">Beryl Desktop (transparencies)</p></div>
<div id="attachment_167" class="wp-caption aligncenter" style="width: 428px"><a href="http://arrigorrimendi.wordpress.com/files/2009/11/750px-beryl-scale.png"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/750px-beryl-scale.png" alt="Beryl Scale" title="Beryl Scale" width="418" height="334" class="size-full wp-image-167" /></a><p class="wp-caption-text">Beryl Scale</p></div>
<p><a href="http://arrigorrimendi.wordpress.com/files/2009/11/750px-beryl-switcher.png"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/750px-beryl-switcher.png" alt="Beryl Switcher" title="Beryl Switcher" width="418" height="334" class="aligncenter size-full wp-image-168" /></a></p>
<div id="attachment_169" class="wp-caption aligncenter" style="width: 428px"><a href="http://arrigorrimendi.wordpress.com/files/2009/11/750px-beryl-trasparent.png"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/750px-beryl-trasparent.png" alt="Beryl Trasparent" title="Beryl Trasparent" width="418" height="334" class="size-full wp-image-169" /></a><p class="wp-caption-text">Beryl Trasparent</p></div>
<p><a href="http://arrigorrimendi.wordpress.com/files/2009/11/750px-greenie_linux_1-1a.png"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/750px-greenie_linux_1-1a.png" alt="Greenie Linux" title="Greenie Linux" width="418" height="334" class="aligncenter size-full wp-image-170" /></a></p>
<p><a href="http://arrigorrimendi.wordpress.com/files/2009/11/750px-ubuntu_edgy_with_beryl_and_wikipedia_pl.png"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/750px-ubuntu_edgy_with_beryl_and_wikipedia_pl.png" alt="Ubuntu with Beryl" title="Ubuntu with Beryl" width="418" height="334" class="aligncenter size-full wp-image-171" /></a></p>
<p><a href="http://arrigorrimendi.wordpress.com/files/2009/11/800px-arch_linux.png"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/800px-arch_linux.png" alt="Arch Linux" title="Arch Linux" width="418" height="261" class="aligncenter size-full wp-image-172" /></a></p>
<div id="attachment_174" class="wp-caption aligncenter" style="width: 428px"><a href="http://arrigorrimendi.wordpress.com/files/2009/11/800px-beryl_wobbly.png"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/800px-beryl_wobbly.png" alt="Beryl Wobbly" title="Beryl Wobbly" width="418" height="313" class="size-full wp-image-174" /></a><p class="wp-caption-text">Beryl Wobbly</p></div>
<p><a href="http://arrigorrimendi.wordpress.com/files/2009/11/800px-compiz-2-win-select.png"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/800px-compiz-2-win-select.png" alt="Linux + Compiz" title="Linux + Compiz" width="418" height="261" class="aligncenter size-full wp-image-175" /></a></p>
<p><a href="http://arrigorrimendi.wordpress.com/files/2009/11/800px-fedora-core-6-aiglx.png"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/800px-fedora-core-6-aiglx.png" alt="Fedora Core + AIGLX" title="Fedora Core + AIGLX" width="418" height="313" class="aligncenter size-full wp-image-176" /></a></p>
<p><a href="http://arrigorrimendi.wordpress.com/files/2009/11/800px-xgl_cube.png"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/800px-xgl_cube.png" alt="Linux + Xgl Cube" title="Linux + Xgl Cube" width="418" height="313" class="aligncenter size-full wp-image-177" /></a></p>
<p><a href="http://arrigorrimendi.wordpress.com/files/2009/11/800px-fc6-beryl-2.png"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/800px-fc6-beryl-2.png" alt="Fedora Core + Beryl" title="Fedora Core + Beryl" width="418" height="313" class="aligncenter size-full wp-image-178" /></a></p>
<p><a href="http://arrigorrimendi.wordpress.com/files/2009/11/arch_linux.png"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/arch_linux.png" alt="Arch Linux + Konky" title="Arch Linux + Konky" width="418" height="261" class="aligncenter size-full wp-image-179" /></a></p>
<p><a href="http://arrigorrimendi.wordpress.com/files/2009/11/beryl_grouping.png"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/beryl_grouping.png" alt="Beryl grouping" title="Beryl grouping" width="418" height="334" class="aligncenter size-full wp-image-181" /></a></p>
<div id="attachment_182" class="wp-caption aligncenter" style="width: 428px"><a href="http://arrigorrimendi.wordpress.com/files/2009/11/beryl-cupula_de_cielo_transparente.png"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/beryl-cupula_de_cielo_transparente.png" alt="Beryl - Cupula de Cielo Transparente" title="Beryl - Cupula de Cielo Transparente" width="418" height="313" class="size-full wp-image-182" /></a><p class="wp-caption-text">Beryl - Cupula de Cielo Transparente</p></div>
<div id="attachment_183" class="wp-caption aligncenter" style="width: 428px"><a href="http://arrigorrimendi.wordpress.com/files/2009/11/capture_puppy_linux_jwm.jpg"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/capture_puppy_linux_jwm.jpg" alt="Puppy Linux + jwm" title="Puppy Linux + jwm" width="418" height="284" class="size-full wp-image-183" /></a><p class="wp-caption-text">Puppy Linux + jwm</p></div>
<p><a href="http://arrigorrimendi.wordpress.com/files/2009/11/compiz-fusion-switcher-cover1.jpg"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/compiz-fusion-switcher-cover1.jpg" alt="Linux + Compiz Fusion switcher" title="Linux + Compiz Fusion switcher" width="418" height="334" class="aligncenter size-full wp-image-184" /></a></p>
<p><a href="http://arrigorrimendi.wordpress.com/files/2009/11/compiz-fusion-switcher-flip1.jpg"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/compiz-fusion-switcher-flip1.jpg" alt="Linux + Compiz Fusion switcher flip" title="Linux + Compiz Fusion switcher flip" width="418" height="334" class="aligncenter size-full wp-image-185" /></a></p>
<div id="attachment_186" class="wp-caption aligncenter" style="width: 428px"><a href="http://arrigorrimendi.wordpress.com/files/2009/11/dreamlinux_beryl_desktop1.jpg"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/dreamlinux_beryl_desktop1.jpg" alt="Dreamlinux + Beryl Desktop" title="Dreamlinux + Beryl Desktop" width="418" height="289" class="size-full wp-image-186" /></a><p class="wp-caption-text">Dreamlinux + Beryl Desktop</p></div>
<div id="attachment_188" class="wp-caption aligncenter" style="width: 428px"><a href="http://arrigorrimendi.wordpress.com/files/2009/11/fc6-beryl-2.png"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/fc6-beryl-2.png" alt="Fedora Core 6 + Beryl-2" title="Fedora Core 6 + Beryl-2" width="418" height="313" class="size-full wp-image-188" /></a><p class="wp-caption-text">Fedora Core 6 + Beryl-2</p></div>
<p><a href="http://arrigorrimendi.wordpress.com/files/2009/11/fedora-core-6-aiglx.png"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/fedora-core-6-aiglx.png" alt="Fedora Core 6 + AIGLX" title="Fedora Core 6 + AIGLX" width="418" height="313" class="aligncenter size-full wp-image-189" /></a></p>
<p><a href="http://arrigorrimendi.wordpress.com/files/2009/11/greenie_linux_1-1a.png"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/greenie_linux_1-1a.png" alt="Greenie Linux 1.1a" title="Greenie Linux 1.1a" width="418" height="334" class="aligncenter size-full wp-image-190" /></a></p>
<p><a href="http://arrigorrimendi.wordpress.com/files/2009/11/linux-mint_3-0.png"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/linux-mint_3-0.png" alt="Linux-Mint 3.0" title="Linux-Mint 3.0" width="418" height="261" class="aligncenter size-full wp-image-191" /></a></p>
<div id="attachment_193" class="wp-caption aligncenter" style="width: 428px"><a href="http://arrigorrimendi.wordpress.com/files/2009/11/linux-beryl-esfera.png"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/linux-beryl-esfera.png" alt="Linux + Beryl esfera" title="Linux + Beryl esfera" width="418" height="235" class="size-full wp-image-193" /></a><p class="wp-caption-text">Linux + Beryl esfera</p></div>
<div id="attachment_195" class="wp-caption aligncenter" style="width: 428px"><a href="http://arrigorrimendi.wordpress.com/files/2009/11/sam_linux_desktop1.jpg"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/sam_linux_desktop1.jpg" alt="SAM Linux Desktop" title="SAM Linux Desktop" width="418" height="334" class="size-full wp-image-195" /></a><p class="wp-caption-text">SAM Linux Desktop</p></div>
<div id="attachment_196" class="wp-caption aligncenter" style="width: 428px"><a href="http://arrigorrimendi.wordpress.com/files/2009/11/xgl_cube.png"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/xgl_cube.png" alt="Linux + Xgl Cube" title="Linux + Xgl Cube" width="418" height="313" class="size-full wp-image-196" /></a><p class="wp-caption-text">Linux + Xgl Cube</p></div>
<p><a href="http://arrigorrimendi.wordpress.com/files/2009/11/xgl_transparency.png"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/xgl_transparency.png" alt="Linux + Xgl transparency" title="Linux + Xgl transparency" width="418" height="313" class="aligncenter size-full wp-image-197" /></a></p>
<p><a href="http://arrigorrimendi.wordpress.com/files/2009/11/xgl_window_minimization.png"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/xgl_window_minimization.png" alt="Linux + Xgl window minimization" title="Linux + Xgl window minimization" width="418" height="313" class="aligncenter size-full wp-image-198" /></a></p>
<div id="attachment_199" class="wp-caption aligncenter" style="width: 428px"><a href="http://arrigorrimendi.wordpress.com/files/2009/11/xgl_window_switching.png"><img src="http://arrigorrimendi.wordpress.com/files/2009/11/xgl_window_switching.png" alt="Linux + Xgl window switching" title="Linux + Xgl window switching" width="418" height="313" class="size-full wp-image-199" /></a><p class="wp-caption-text">Linux + Xgl window switching</p></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Quoting tobiasu (#openbsd at freenode IRC)]]></title>
<link>http://thinkminus.wordpress.com/2009/11/07/quoting-tobiasu-openbsd-at-freenode-irc/</link>
<pubDate>Sat, 07 Nov 2009 13:16:27 +0000</pubDate>
<dc:creator>Amber Jain</dc:creator>
<guid>http://thinkminus.wordpress.com/2009/11/07/quoting-tobiasu-openbsd-at-freenode-irc/</guid>
<description><![CDATA[Recently I was logged in to #openbsd at freenode and this conversation started: kleanchap: Do they h]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Recently I was logged in to #openbsd at freenode and this conversation started:</p>
<p><em>kleanchap: Do they have OpenBSD as VM appliances?<br />
viq: &#8220;they&#8221; ?<br />
tcccp: The letter boys?<br />
tcccp: <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /><br />
Bink: kleanchap, no<br />
_obook: kleanchap: you can use cd46.iso for a simple net-installation<br />
_obook: kleanchap: in a Vmware or VirtualBox VM<br />
kleanchap: either<br />
tobiasu: it sucks in both, forget it<br />
tobiasu: virtualbox/vmware is the new god of IT it seems<br />
tobiasu: everybody masturbates to their altar</em><br />
 <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<blockquote><p>Quoting tobiasu:<br />
Virtualbox/Vmware is the new god of IT it seems. Everybody masturbates to their altar.</p></blockquote>
<p> <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Conurbania, conferencias sobre Software Libre en el conurbano bonaerense]]></title>
<link>http://thalskarth.wordpress.com/2009/11/06/conurbania-conferencias-sobre-software-libre-en-el-conurbano-bonaerense/</link>
<pubDate>Fri, 06 Nov 2009 19:35:16 +0000</pubDate>
<dc:creator>Thalskarth</dc:creator>
<guid>http://thalskarth.wordpress.com/2009/11/06/conurbania-conferencias-sobre-software-libre-en-el-conurbano-bonaerense/</guid>
<description><![CDATA[Acá les dejo la información de éste evento que se realizará el 14 de noviembre en Bernal (Quilmes). ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Acá les dejo la información de éste evento que se realizará el <strong>14 de noviembre</strong> en Bernal (Quilmes). Les recomiendo leer <em><strong><a href="http://www.conurbania.org/pagina/cronograma-del-evento" target="_blank">el cronograma de actividades y charlas</a></strong></em> ya que hay varias con temáticas muy interesantes. Yo posiblemente esté allá todo el día, y en el sitio dicen que, aunque no es necesario, conviene<a href="http://www.conurbania.org/contenido/registro"> inscribirse antes</a> para no perder tiempo en la entrada</p>
<blockquote><p>
<strong>Conurbania, conferencias sobre Software Libre en el conurbano bonaerense</strong></p>
<p style="text-align:justify;"><a href="http://www.conurbania.org"><img class="alignleft" style="margin-left:2px;margin-right:20px;" src="http://conurbania.org/imagenes/banner_120x400.png" alt="" width="120" height="400" /></a>El sábado 14 de noviembre, desde las 9 de la mañana y en jornada completa, tendrán lugar las conferencias sobre Software Libre en el conurbano bonaerense, Conurbania 2009, en la Sede Bernal de la Universidad Nacional de Quilmes, Roque Saenz Peña 352 (Bernal).</p>
<p style="text-align:justify;">Conurbania es un evento para la difusión del software y las tecnologías libres en el área del Conurbano Bonaerense, donde empresas, instituciones, escuelas, organizaciones sin fines de lucro, municipios y público en general podrán participar en charlas de diferentes niveles y temáticas, pero todas orientadas a difundir el software libre. Habrá tres ejes temáticos centrales: empresas, educación y gobierno.</p>
<p style="text-align:justify;">Empresarios, profesionales, docentes, estudiantes, tomadores de decisión en el ámbito público, técnicos en general se darán cita en este encuentro que prevé también un amplio espacio para intercambiar opiniones, socializar y compartir una jornada dedicada plenamente al software libre.</p>
<p style="text-align:justify;">El evento cuenta con el apoyo indispensable de la Universidad Nacional de Quilmes y con la coordinación de agrupaciones de Software Libre, asociaciones, grupos de usuarios y colaboradores voluntarios de la región.</p>
<p style="text-align:justify;">En Conurbania contaremos con paneles, charlas y talleres eminentemente técnicos, con sesiones dedicadas a conocer las dferentes distribuciones de software libre, las nuevas tecnologías en comunicaciones, aplicaciones para la gestión de pymes hasta lenguajes de programación, así como presentaciones conceptuales y filosóficas sobre la cultura del Software libre y algunos de sus emergentes más populares como la Wikipedia. Habrá un track específicamente dedicado al uso de Software Libre en el entorno educativo, charlas sobre modelos de negocios con software libre, debates sobre redes libres, Agenda Digital Argentina, los proyectos de ley de Software libre y la problemática del Voto Electrónico, entre otras.</p>
<p style="text-align:justify;">Más información sobre este evento en <a title="http://www.conurbania.org/" href="http://www.conurbania.org/">http://www.conurbania.org/</a></p>
</blockquote>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[New-Old Laptop Update - 20091106]]></title>
<link>http://lucky13linux.wordpress.com/2009/11/06/new-old-laptop-update-20091106/</link>
<pubDate>Fri, 06 Nov 2009 17:32:22 +0000</pubDate>
<dc:creator>lucky</dc:creator>
<guid>http://lucky13linux.wordpress.com/2009/11/06/new-old-laptop-update-20091106/</guid>
<description><![CDATA[I looked at Distrowatch to see what was happening with various distros and downloaded a few ISOs. Am]]></description>
<content:encoded><![CDATA[I looked at Distrowatch to see what was happening with various distros and downloaded a few ISOs. Am]]></content:encoded>
</item>
<item>
<title><![CDATA[Evolution, XFCE4, and OpenBSD]]></title>
<link>http://jasonk2600.wordpress.com/2009/11/05/evolution-xfce4-and-openbsd/</link>
<pubDate>Thu, 05 Nov 2009 20:59:11 +0000</pubDate>
<dc:creator>jasonk2600</dc:creator>
<guid>http://jasonk2600.wordpress.com/2009/11/05/evolution-xfce4-and-openbsd/</guid>
<description><![CDATA[In order to properly run the Evolution email client in XFCE4 on an OpenBSD system, you must ensure t]]></description>
<content:encoded><![CDATA[In order to properly run the Evolution email client in XFCE4 on an OpenBSD system, you must ensure t]]></content:encoded>
</item>
<item>
<title><![CDATA[OpenBSD 4.6]]></title>
<link>http://tecnotaku.wordpress.com/2009/11/04/openbsd-4-6/</link>
<pubDate>Wed, 04 Nov 2009 23:13:19 +0000</pubDate>
<dc:creator>zero2004</dc:creator>
<guid>http://tecnotaku.wordpress.com/2009/11/04/openbsd-4-6/</guid>
<description><![CDATA[Y finalmente después de su anunciado retraso que postergó su lanzamiento por casi un mes debido a pr]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div>
<div id="main">
<div id="HOTWordsTxt">
<p><img src="http://imgur.com/g9MI6.jpg" alt="OpenBSD" /></p>
<p>Y finalmente después de su <a href="http://www.vivabsd.com.ar/distros/openbsd-4.6-demorado">anunciado retraso</a> que postergó su lanzamiento por casi un mes debido a problemas con la fabricación de sus CDs oficiales, Theo de Raadt informó con <a href="http://archive.openbsd.nu/?ml=openbsd-announce&#38;a=2009-10&#38;m=11744982">este mensaje</a> el lanzamiento de <a href="http://www.openbsd.org/46.html">OpenBSD 4.6</a>. Las novedades más  <a href="http://www.vivabsd.com.ar/distros/openbsd-4.6#">importantes</a> en esta  <a href="http://www.vivabsd.com.ar/distros/openbsd-4.6#">nueva</a> versión incluyen:</p>
<ul>
<li>OpenSSH 5.3</li>
<li>Proceso de instalación simplificado.</li>
<li>Documentación y páginas <code>man</code> mejoradas.</li>
<li>5800 paquetes (ports) actualizados, incluyendo X.org 7.4, Perl 5.10, etc.</li>
<li> <a href="http://www.vivabsd.com.ar/distros/openbsd-4.6#">Nuevo</a> soporte para Motorola VME, SGI Octane, SGI Origin 200 y SGI Fuel.</li>
<li>Firewall (pf) activado por defecto, con chequeo del formato de paquetes más estricto.</li>
</ul>
<p>Los interesados en soportar el desarrollo de este proyecto pueden comprar los <a href="https://https.openbsd.org/cgi-bin/order?CD46=1&#38;CD46%2b=Add">3 CDs oficiales de OpenBSD 4.6</a>, o sus muy originales <a href="http://www.openbsd.org/older.html#tshirts">remeras</a> y <a href="http://www.openbsd.org/older.html#posters">pósters</a>. De cualquier forma, no se pierdan la nueva canción de esta versión <a href="http://www.openbsd.org/lyrics.html#46">&#8220;Planet of the Users&#8221;</a>.</p>
</div>
</div>
</div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[OpenBSD [russian_team]]]></title>
<link>http://thefreecountry.wordpress.com/2009/11/04/openbsd-russian_team/</link>
<pubDate>Wed, 04 Nov 2009 21:45:07 +0000</pubDate>
<dc:creator>Alex</dc:creator>
<guid>http://thefreecountry.wordpress.com/2009/11/04/openbsd-russian_team/</guid>
<description><![CDATA[Привет сетяне. Не так давно вышла новая версия Unix-like операционной системы OpenBSD. 4.6. Для всех]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Привет сетяне.</p>
<p>Не так давно вышла новая версия Unix-like операционной системы OpenBSD.  4.6. Для всех хакеров по всему миру это безусловно&#8230; событие, это праздник!</p>
<p>Дата выхода последнего релиза совпала так же с еще одной приятной новостью для русскоязычного сообщества: наши страницы на официальном сервере снова актуальны <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
И хотя ссылки с основной index-страницы пока нет, все же вы можете уже видеть результат: <a href="http://www.openbsd.org/ru/index.html">http://www.openbsd.org/ru/index.html</a></p>
<p>Да, я решил заняться этим вопросом: поднять все, что уже переведенно, перевести то, чего еще нет на русском языке, и залить все это на сервер <strong>openbsd.org</strong>. Проект не поддерживался несколько лет. В переди предстоит большая работа по переводу свежей докуменции на русский язык&#8230; На данный момент готова только основная страница, но это только начало. Я думаю, что к концу года на русском языке будет немешьне материала, чем на английском. Во всяком случае, я буду стараться чтоб так было %)</p>
<p>Поддержка этого проекта не означает, что я больше не буду заниматься GNU/Linux.</p>
<p>Я остаюсь разработчиком SuSE как и раньше, но как и раньше &#8211; большим поклонником одной из самых интересных и привлекательных ОС с точки зрения безопасности.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Instalação do OpenBSD - a saga]]></title>
<link>http://ivanix.wordpress.com/2009/10/31/instalacao-do-openbsd-a-saga/</link>
<pubDate>Sat, 31 Oct 2009 15:32:18 +0000</pubDate>
<dc:creator>Nix</dc:creator>
<guid>http://ivanix.wordpress.com/2009/10/31/instalacao-do-openbsd-a-saga/</guid>
<description><![CDATA[Vou falar aqui sobre a instalação do OpenBSD. O projeto OpenBSD desenvolve um sistema operacional do]]></description>
<content:encoded><![CDATA[Vou falar aqui sobre a instalação do OpenBSD. O projeto OpenBSD desenvolve um sistema operacional do]]></content:encoded>
</item>
<item>
<title><![CDATA[OpenBSD getsockopt(2) NULL Pointer Dereference]]></title>
<link>http://xorl.wordpress.com/2009/10/31/openbsd-getsockopt2-null-pointer-dereference/</link>
<pubDate>Sat, 31 Oct 2009 00:44:01 +0000</pubDate>
<dc:creator>xorl</dc:creator>
<guid>http://xorl.wordpress.com/2009/10/31/openbsd-getsockopt2-null-pointer-dereference/</guid>
<description><![CDATA[Recently, a new reliability fix was posted in OpenBSD&#8217;s errata page. The bug is located in ip_]]></description>
<content:encoded><![CDATA[Recently, a new reliability fix was posted in OpenBSD&#8217;s errata page. The bug is located in ip_]]></content:encoded>
</item>
<item>
<title><![CDATA[Are you a programmer or a lawyer?]]></title>
<link>http://thinkminus.wordpress.com/2009/10/26/are-you-a-programmer-or-a-lawyer/</link>
<pubDate>Mon, 26 Oct 2009 18:33:32 +0000</pubDate>
<dc:creator>Amber Jain</dc:creator>
<guid>http://thinkminus.wordpress.com/2009/10/26/are-you-a-programmer-or-a-lawyer/</guid>
<description><![CDATA[Before starting, let me tell you that I&#8217;m a programmer I recently found out Thomas Pfaff]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Before starting, let me tell you that I&#8217;m a programmer <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
<br />
I recently found out <a href="http://tp76.info/">Thomas Pfaff&#8217;s (#openbsd nick: tp76) website</a>. The home page reads like:<br />
</p>
<blockquote><p><code>$ wc -l license/ISC license/GPL &#124; head -2<br />
         13 ISC<br />
        674 GPL</code></p></blockquote>
<p>In the end it says: &#8220;<b>Are you a programmer or a lawyer?</b>&#8220;. I&#8217;m surely a programmer as I prefer ISC license for all my code. What about you?</p>
<p> <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[FatELF: ¿binarios universales para Linux?]]></title>
<link>http://thalskarth.wordpress.com/2009/10/25/fatelf-%c2%bfbinarios-universales-para-linux/</link>
<pubDate>Sun, 25 Oct 2009 15:16:09 +0000</pubDate>
<dc:creator>Thalskarth</dc:creator>
<guid>http://thalskarth.wordpress.com/2009/10/25/fatelf-%c2%bfbinarios-universales-para-linux/</guid>
<description><![CDATA[Hay un nuevo proyecto, llamado FatELF el cual está desarrollando un formato de archivo especial el c]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="alignright" src="http://i.imagehost.org/0722/fatelf.png" alt="" width="162" height="214" />Hay un nuevo proyecto, llamado <strong>FatELF</strong> el cual está desarrollando un formato de archivo especial el cual permite &#8220;embeber&#8221; múltiples archivos binarios <a href="http://es.wikipedia.org/wiki/Executable_and_Linkable_Format">ELF</a> dentro del mismo.</p>
<p>Pero, <strong><em>¿qué significa ésto?</em></strong>, es simple, al incluirse varios archivos binarios dentro de uno solo, <strong>ésto crearía un solo binario capás de correr en diferentes arquitecturas y sistemas.</strong> O sea, el archivo FatELF no sería multiplataforma, sino que en su interior, tendría un binario compilado para una arquitectura y otro para la otras. Algo similar a los <em><a href="http://en.wikipedia.org/wiki/Universal_binary">Universal Binary</a></em> de MacOS que se usaron en la transición de 32 a 64 bits en ese sistema operativo.</p>
<p>Según la página web, éste sistema traería muchos beneficios a GNU/Linux, como por ejemplo:</p>
<ul>
<li>Las distribuciones no necesitarían descargas separadas para cada plataformas.</li>
<li>Ya no será necesario tener directorios <code>/lib</code>, <code>/lib32</code> y <code>/lib64</code> separados.</li>
<li>Ya no será necesaria la librería de compatibilidad <code>ia32</code>.</li>
<li>Soporte para binarios de 32 y 64 bits en un sólo archivo.</li>
</ul>
<p>Es más, incluso se podría tener un solo archivo <strong><em>capás de correr nativamente en sistemas operativos distintos</em></strong>. Por ejemplo, el desarrollador planea, aparte del actual desarrollo en GNU/Linux, en dar soporte a FreeBSD, NetBSD, OpenBSD y OpenSolaris. Por lo que, el archivo binario sería multisitema y multiplataforma.</p>
<p>Eso sí, no todo son rosas en el camino, ya que, lógicamente, <strong><em>cuanto más plataformas y sistemas vaya soportando el mismo archivo, más pesado será éste</em></strong>. Ya que no es lo mismo, tener un binario compilado para FreeBSD, que uno que dentro contenga un binario para FreeBSD, uno para OpenSolaris, uno para GNU/Linux en versiones de 64 y 32 bits. O sea, <em>estamos hablando de un binario solo contra otro que incluye 6 binarios dentro</em>.</p>
<p>Y bueno, para aquellos interesados, les comento que la página oficial de FatELF es <strong><a href="http://icculus.org/fatelf/">http://icculus.org/fatelf/</a></strong> y que, ahí mismo ofrecen una <a href="http://icculus.org/fatelf/vm/">imágen ISO de 1.8 Gb</a> de una máquina virtual con Ubuntu 9.04 adaptado para usar éste sistema.</p>
<p style="text-align:right;">Fuente: <a href="http://www.vivalinux.com.ar/soft/fatelf" target="_self">VivaLinux</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[OpenBSD 4.6 has been released week ago]]></title>
<link>http://mjcanada.wordpress.com/2009/10/24/openbsd-4-6-has-been-released-week-ago/</link>
<pubDate>Sun, 25 Oct 2009 06:19:55 +0000</pubDate>
<dc:creator>M.J.</dc:creator>
<guid>http://mjcanada.wordpress.com/2009/10/24/openbsd-4-6-has-been-released-week-ago/</guid>
<description><![CDATA[OpenBSD 4.6 has been released a week ago 4.6 song&#8230; enjoy.]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>OpenBSD 4.6 has been released a week ago <a href='http://www.openbsd.org/lyrics.html#46'>4.6 song</a>&#8230; enjoy.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[OpenBSD VPS]]></title>
<link>http://matt40k.co.uk/2009/10/25/openbsd-vps-2/</link>
<pubDate>Sun, 25 Oct 2009 05:29:19 +0000</pubDate>
<dc:creator>matt40k</dc:creator>
<guid>http://matt40k.co.uk/2009/10/25/openbsd-vps-2/</guid>
<description><![CDATA[Synergyworks uses VMWARE for VPS clients, so, you guessed it, they can provide OpenBSD vps DomU!! Fe]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://www.synergyworks.co.uk" target="_blank">Synergyworks</a> uses VMWARE for VPS clients, so, you guessed it, they can provide OpenBSD vps DomU!!</p>
<table style="font-size:9pt;" border="0">
<tbody>
<tr>
<td style="color:white;" width="150" align="center" bgcolor="#000000"><strong>Feature</strong></td>
<td> </td>
<td style="color:white;" align="center" bgcolor="#000000"><strong>Virtual Server 1</strong></td>
<td style="color:white;" align="center" bgcolor="#000000"><strong>Virtual Server 2</strong></td>
<td style="color:white;" align="center" bgcolor="#000000"><strong>Virtual Server 3</strong></td>
</tr>
<tr>
<td style="color:black;" align="center" bgcolor="#d6e3ea">Processor</td>
<td width="4"> </td>
<td width="130" align="center" bgcolor="#d6e3ea">Quad Core 2.33Ghz+</td>
<td width="130" align="center" bgcolor="#d6e3ea">Quad Core 2.33Ghz+</td>
<td width="130" align="center" bgcolor="#d6e3ea">Quad Core 2.33Ghz+</td>
</tr>
<tr>
<td style="color:black;" align="center" bgcolor="#d6e3ea">Hard Disk</td>
<td width="4"> </td>
<td width="130" align="center" bgcolor="#d6e3ea">10GB Virtual HDD</td>
<td width="130" align="center" bgcolor="#d6e3ea">30GB Virtual HDD</td>
<td width="130" align="center" bgcolor="#d6e3ea">60GB Virtual HDD</td>
</tr>
<tr>
<td style="color:black;" align="center" bgcolor="#d6e3ea">RAM Allocation</td>
<td width="4"> </td>
<td width="130" align="center" bgcolor="#d6e3ea">256MB Dedicated</td>
<td width="130" align="center" bgcolor="#d6e3ea">512MB Dedicated</td>
<td width="130" align="center" bgcolor="#d6e3ea">1GB Dedicated</td>
</tr>
</tbody>
</table>
<table style="font-size:9pt;" border="0">
<tbody>
<tr>
<td style="color:black;" width="150" align="center" bgcolor="#d6e3ea">Internet Connection</td>
<td width="4"> </td>
<td width="130" align="center" bgcolor="#d6e3ea">100Mbps Full Duplex</td>
<td width="130" align="center" bgcolor="#d6e3ea">100Mbps Full Duplex</td>
<td width="130" align="center" bgcolor="#d6e3ea">100Mbps Full Duplex</td>
</tr>
<tr>
<td style="color:black;" align="center" bgcolor="#d6e3ea">Bandwidth</td>
<td width="4"> </td>
<td width="130" align="center" bgcolor="#d6e3ea">100GB/month</td>
<td width="130" align="center" bgcolor="#d6e3ea">200GB/month</td>
<td width="130" align="center" bgcolor="#d6e3ea">300GB/month</td>
</tr>
</tbody>
</table>
<table style="font-size:9pt;" border="0">
<tbody>
<tr>
<td style="color:black;" width="150" align="center" bgcolor="#d6e3ea">Contract Term</td>
<td width="4"> </td>
<td width="130" align="center" bgcolor="#d6e3ea">Monthly Rolling</td>
<td width="130" align="center" bgcolor="#d6e3ea">Monthly Rolling</td>
<td width="130" align="center" bgcolor="#d6e3ea">Monthly Rolling</td>
</tr>
<tr>
<td style="color:black;" align="center" bgcolor="#d6e3ea">Telephone Support</td>
<td width="4"> </td>
<td width="130" align="center" bgcolor="#d6e3ea">24/7</td>
<td width="130" align="center" bgcolor="#d6e3ea">24/7</td>
<td width="130" align="center" bgcolor="#d6e3ea">24/7</td>
</tr>
<tr>
<td style="color:black;" align="center" bgcolor="#d6e3ea">Web Based Support</td>
<td width="4"> </td>
<td width="130" align="center" bgcolor="#d6e3ea">24/7</td>
<td width="130" align="center" bgcolor="#d6e3ea">24/7</td>
<td width="130" align="center" bgcolor="#d6e3ea">24/7</td>
</tr>
</tbody>
</table>
<table style="font-size:9pt;" border="0">
<tbody>
<tr>
<td style="color:black;" width="150" align="center" bgcolor="#d6e3ea">NAS Backup Space</td>
<td width="4"> </td>
<td width="130" align="center" bgcolor="#d6e3ea">1GB</td>
<td width="130" align="center" bgcolor="#d6e3ea">5GB</td>
<td width="130" align="center" bgcolor="#d6e3ea">5GB</td>
</tr>
<tr>
<td style="color:black;" align="center" bgcolor="#d6e3ea">Uptime SLA</td>
<td width="4"> </td>
<td width="130" align="center" bgcolor="#d6e3ea">99.97%</td>
<td width="130" align="center" bgcolor="#d6e3ea">99.97%</td>
<td width="130" align="center" bgcolor="#d6e3ea">99.97%</td>
</tr>
</tbody>
</table>
<table style="font-size:9pt;" border="0">
<tbody>
<tr>
<td style="color:black;" width="150" align="center" bgcolor="#d6e3ea"><strong>Setup Fee</strong></td>
<td width="4"> </td>
<td width="130" align="center" bgcolor="#d6e3ea">£FREE</td>
<td width="130" align="center" bgcolor="#d6e3ea">£FREE</td>
<td width="130" align="center" bgcolor="#d6e3ea">£FREE</td>
</tr>
<tr>
<td style="color:black;" align="center" bgcolor="#d6e3ea"><strong>Monthly (ex. VAT)</strong></td>
<td width="4"> </td>
<td width="130" align="center" bgcolor="#d6e3ea"><strong>£17.00</strong></td>
<td width="130" align="center" bgcolor="#d6e3ea"><strong></strong><strong>£27.00</strong></td>
<td width="130" align="center" bgcolor="#d6e3ea"><strong></strong><strong>£37.00</strong></td>
</tr>
</tbody>
</table>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Sonata, elegante cliente GTK+ para MPD]]></title>
<link>http://elsoftwarelibre.wordpress.com/2009/10/18/sonata-elegante-cliente-gtk-para-mpd/</link>
<pubDate>Sun, 18 Oct 2009 18:21:50 +0000</pubDate>
<dc:creator>Soft-Libre</dc:creator>
<guid>http://elsoftwarelibre.wordpress.com/2009/10/18/sonata-elegante-cliente-gtk-para-mpd/</guid>
<description><![CDATA[Sonata Sonata, un excelente y elegante cliente de música GTK+ para Music Player Daemon (MPD), acaba ]]></description>
<content:encoded><![CDATA[Sonata Sonata, un excelente y elegante cliente de música GTK+ para Music Player Daemon (MPD), acaba ]]></content:encoded>
</item>
<item>
<title><![CDATA[OpenBSD i386 XMM Unhandled Exception]]></title>
<link>http://xorl.wordpress.com/2009/10/16/openbsd-i386-xmm-unhandled-exception/</link>
<pubDate>Fri, 16 Oct 2009 19:47:25 +0000</pubDate>
<dc:creator>xorl</dc:creator>
<guid>http://xorl.wordpress.com/2009/10/16/openbsd-i386-xmm-unhandled-exception/</guid>
<description><![CDATA[This bug was reported by Slava Pestov at openbsd-bugs mailing list. The problem was that a simple SS]]></description>
<content:encoded><![CDATA[This bug was reported by Slava Pestov at openbsd-bugs mailing list. The problem was that a simple SS]]></content:encoded>
</item>

</channel>
</rss>
