<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    <title>Work In Progress - Guías/Trucos</title>
    <link>http://blogs.nologin.es/slopez/</link>
    <description>cat /dev/mind | grep -e freesoftware -e politics</description>
    <dc:language>en</dc:language>
    <generator>Serendipity 1.3.1 - http://www.s9y.org/</generator>
    <pubDate>Thu, 29 Jul 2010 13:58:56 GMT</pubDate>

    <image>
        <url>http://blogs.nologin.es/slopez/templates/default/img/s9y_banner_small.png</url>
        <title>RSS: Work In Progress - Guías/Trucos - cat /dev/mind | grep -e freesoftware -e politics</title>
        <link>http://blogs.nologin.es/slopez/</link>
        <width>100</width>
        <height>21</height>
    </image>

<item>
    <title>Webs de administración y puertos redirigidos</title>
    <link>http://blogs.nologin.es/slopez/archives/24-Webs-de-administracion-y-puertos-redirigidos.html</link>
            <category>Guías/Trucos</category>
    
    <comments>http://blogs.nologin.es/slopez/archives/24-Webs-de-administracion-y-puertos-redirigidos.html#comments</comments>
    <wfw:comment>http://blogs.nologin.es/slopez/wfwcomment.php?cid=24</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blogs.nologin.es/slopez/rss.php?version=2.0&amp;type=comments&amp;cid=24</wfw:commentRss>
    

    <author>nospam@example.com (Sergio Lopez)</author>
    <content:encoded>
    Si trabajas administrando sistemas, es posible que te hayas encontrado en la tesitura de tener que acceder a la consola de administración de algún dispositivo a través de un túnel SSH, redirigiendo algún puerto de la máquina de destino a otro local. Al hacer esto, puedes encontrarte con la circunstancia de que la aplicación a la que estás accediendo tiene referencias estáticas a su IP real, lo cual provoca que no puedas acceder correctamente a ella.&lt;br /&gt;
&lt;br /&gt;
Si este es tu caso, y estás utilizando GNU/Linux, puedes hacer uso de &lt;i&gt;iptables&lt;/i&gt; para salvar el escollo. Por ejemplo con&lt;br /&gt;
&lt;br /&gt;
&lt;code&gt;iptables -t nat -A OUTPUT -p tcp --dport 9000 -j DNAT --to 127.0.0.1:9000&lt;/code&gt;&lt;br /&gt;
&lt;br /&gt;
estaríamos redigiriendo todo el tráfico saliente hacia el puerto 9000, al mismo puerto en nuestra máquina local.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Thu, 29 Jul 2010 15:41:32 +0200</pubDate>
    <guid isPermaLink="false">http://blogs.nologin.es/slopez/archives/24-guid.html</guid>
    
</item>
<item>
    <title>Aspire One: Custom Desktop script</title>
    <link>http://blogs.nologin.es/slopez/archives/13-Aspire-One-Custom-Desktop-script.html</link>
            <category>Guías/Trucos</category>
    
    <comments>http://blogs.nologin.es/slopez/archives/13-Aspire-One-Custom-Desktop-script.html#comments</comments>
    <wfw:comment>http://blogs.nologin.es/slopez/wfwcomment.php?cid=13</wfw:comment>

    <slash:comments>5</slash:comments>
    <wfw:commentRss>http://blogs.nologin.es/slopez/rss.php?version=2.0&amp;type=comments&amp;cid=13</wfw:commentRss>
    

    <author>nospam@example.com (Sergio Lopez)</author>
    <content:encoded>
    &lt;strong&gt;WARNING: This script is deprecated and will not be updated.&lt;/strong&gt; New kernels (&gt;2.6.27) support all the devices of the AOne, so consider installing a standard distribution (ZenWalk, Ubuntu, Debian...).&lt;br /&gt;
&lt;br /&gt;
After some days tweaking the Desktop of my new shiny Aspire One ;-), I&#039;ve decided to write a script to automate the process if I ever need to restore the system with Acer&#039;s Recovery CD. I think this can be also useful for those who are tired of the boring Linpus desktop and want a fully customizable Xfce 4 environment. My script performs the following operations:&lt;br /&gt;
&lt;ul&gt;&lt;br /&gt;
&lt;li&gt;Replace Linpus modified Xfce4 packages with the standard ones.&lt;br /&gt;
&lt;li&gt;Replace kpowersave with acpid+xfce-battery-monitor.&lt;br /&gt;
&lt;li&gt;Install self-compiled kernel modules for USB Modem (including many mobile phones), PPP compression and Bluetooth.&lt;br /&gt;
&lt;li&gt;Install mplayer (fully featured), vlc (default player for Thunar), claws-mail, pidgin (IM) and bluetooth utils.&lt;br /&gt;
&lt;li&gt;Remove buggy gtkrc-2.0 (makes the xfce standard panel insanely big).&lt;br /&gt;
&lt;li&gt;Add the &lt;i&gt;/usr/bin/rem_driver.sh&lt;/i&gt; script to remove the WiFi driver before suspend (without this the Atheros card sometimes hangs and I need to reboot).&lt;br /&gt;
&lt;li&gt;Download and install Firefox 3.0.1 (consumes less memory and has more features, what else do you want? &lt;img src=&quot;http://blogs.nologin.es/slopez/templates/default/img/emoticons/wink.png&quot; alt=&quot;;-)&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt; and enable mplayer and flash-player plugins.&lt;br /&gt;
&lt;/ul&gt;&lt;br /&gt;
 &lt;br /&gt;&lt;a href=&quot;http://blogs.nologin.es/slopez/archives/13-Aspire-One-Custom-Desktop-script.html#extended&quot;&gt;Continue reading &quot;Aspire One: Custom Desktop script&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Wed, 13 Aug 2008 22:33:51 +0200</pubDate>
    <guid isPermaLink="false">http://blogs.nologin.es/slopez/archives/13-guid.html</guid>
    
</item>
<item>
    <title>Instalando Java Web Console en Debian GNU/Linux</title>
    <link>http://blogs.nologin.es/slopez/archives/3-Instalando-Java-Web-Console-en-Debian-GNULinux.html</link>
            <category>Guías/Trucos</category>
            <category>Software de Sun</category>
    
    <comments>http://blogs.nologin.es/slopez/archives/3-Instalando-Java-Web-Console-en-Debian-GNULinux.html#comments</comments>
    <wfw:comment>http://blogs.nologin.es/slopez/wfwcomment.php?cid=3</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blogs.nologin.es/slopez/rss.php?version=2.0&amp;type=comments&amp;cid=3</wfw:commentRss>
    

    <author>nospam@example.com (admin)</author>
    <content:encoded>
    Sun define Java Web Console como &lt;em&gt;&quot;a web application that provides a single point on entry for many of Sun&#039;s systems management applications&quot;&lt;/em&gt;. A nivel técnico, se trata de un servidor de aplicaciones basado en Tomcat, sobre el cual otras aplicaciones de Sun despliegan sus paneles de administración, de tal forma que el administrador pueda acceder a ellos desde un único punto de origen y con una interfaz homogénea.&lt;br /&gt;
&lt;br /&gt;
Así pues, Java Web Console se está convirtiendo en un requisito previo para poder instalar gran parte del catálogo de aplicaciones que tiene Sun, y la intención es que en un futuro todas hagan uso de este framework (todavía hay unas cuantas que tienen sus paneles de administración propios).&lt;br /&gt;
&lt;br /&gt;
Sun ofrece este producto para Solaris, Windows, HP-UX y también GNU/Linux, pero en el caso de este último sólo está soportado para Red Hat y SuSE, aunque con un poquito de trabajo podemos tenerlo también funcionando en Debian (y por extensión, en Ubuntu).&lt;br /&gt;
 &lt;br /&gt;&lt;a href=&quot;http://blogs.nologin.es/slopez/archives/3-Instalando-Java-Web-Console-en-Debian-GNULinux.html#extended&quot;&gt;Continue reading &quot;Instalando Java Web Console en Debian GNU/Linux&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Fri, 25 Jan 2008 17:13:22 +0100</pubDate>
    <guid isPermaLink="false">http://blogs.nologin.es/slopez/archives/3-guid.html</guid>
    
</item>

</channel>
</rss>
