<?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:creativeCommons="http://backend.userland.com/creativeCommonsRssModule">

<channel>
	<title>pwn-o-rama</title>
	<atom:link href="http://blog.pwn.cl/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.pwn.cl</link>
	<description>occasionally braindumps</description>
	<lastBuildDate>Tue, 09 Mar 2010 02:00:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<creativeCommons:license>http://creativecommons.org/licenses/by/2.0/cl/</creativeCommons:license>		<item>
		<title>Reverse proxy for Zimbra, mod_proxy and apache2</title>
		<link>http://blog.pwn.cl/2010/03/reverse-proxy-for-zimbra-mod_proxy-and-apache2/</link>
		<comments>http://blog.pwn.cl/2010/03/reverse-proxy-for-zimbra-mod_proxy-and-apache2/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 01:58:09 +0000</pubDate>
		<dc:creator>sneira</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[zimbra zcs apache2]]></category>

		<guid isPermaLink="false">http://blog.pwn.cl/?p=304</guid>
		<description><![CDATA[El escenario:
- Un servidor web con Debian 5 (Lenny), apache2, con una sólo una IP pública. Atiende múltiples virtual hosts.
- Un servidor de correo con Zimbra Collaboration Suite 6 (ZCS), con una IP privada.
- Ambos servidores forman parte de la misma red.
Antecedentes:
El hostname mail.example.com está asociado a la IP pública del servidor web.
El hostname internal-mai.example.com [...]]]></description>
			<content:encoded><![CDATA[<p><strong>El escenario:</strong></p>
<p>- Un servidor web con Debian 5 (Lenny), apache2, con una sólo una IP pública. Atiende múltiples virtual hosts.<br />
- Un servidor de correo con Zimbra Collaboration Suite 6 (ZCS), con una IP privada.<br />
- Ambos servidores forman parte de la misma red.</p>
<p><strong>Antecedentes:</strong></p>
<p>El hostname mail.example.com está asociado a la IP pública del servidor web.<br />
El hostname internal-mai.example.com está asociado a la IP privada del servidor de correo.</p>
<p><strong>El requerimiento:</strong></p>
<p>El webmail de ZCS debe ser accesible desde Internet en http://mail.example.com</p>
<p><strong>La solución:</strong></p>
<p>En el servidor web</p>
<pre class="brush: bash; light: true;">

# a2enmod proxy proxy_http
# vim /etc/apache2/mods-available/proxy.conf
</pre>
<p>en el archivo proxy.com reemplaza &#8216;Deny from all&#8217; por &#8216;Allow from all&#8217; (sin las comillas)</p>
<pre class="brush: bash; light: true;">

# vim /etc/apache2/sites-available/mail.example.com
</pre>
<p>Y agrega este contenido:</p>
<pre class="brush: bash; light: true;">

&lt;VirtualHost *:80&gt;
ServerName mail.example.com
ProxyPass / http://internal-mail.example.com/
ProxyPassReverse / http://internal-mail.example.com/
ErrorLog /var/log/apache2/mail.example.com-error.log
LogLevel warn
CustomLog /var/log/apache2/mail.example.com-access.log combined
&lt;/VirtualHost&gt;
</pre>
<p>Por último reinicia apache2</p>
<pre class="brush: bash; light: true;">

/etc/init.d/apache2 restart
</pre>
<p>Ahora a través de un proxy inverso (reverse proxy) todas las peticiones dirigidas a http://mail.example.com serán redirigidas internamente a http://internal-mail.example.com , el servidor de correo.</p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">
<pre class="brush: bash; light: true;">[/code]
</pre>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.pwn.cl/2010/03/reverse-proxy-for-zimbra-mod_proxy-and-apache2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CenterIM spanish UTF-8 support &#8211; Debian Lenny</title>
		<link>http://blog.pwn.cl/2009/12/centerim-spanish-utf-8-support-debian-lenny/</link>
		<comments>http://blog.pwn.cl/2009/12/centerim-spanish-utf-8-support-debian-lenny/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 02:41:15 +0000</pubDate>
		<dc:creator>sneira</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[console]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[lenny]]></category>
		<category><![CDATA[msn]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://blog.pwn.cl/?p=291</guid>
		<description><![CDATA[CenterIM, un fork de CenterICQ, es un cliente de mensajería instantánea multiprotocolo: soporta ICQ, Yahoo!, MSN, AIM, IRC, XMPP, LiveJournal y Gadu-Gadu; además funciona en modo texto.
En los repositorios de Debian Lenny (estable) está disponible la versión 4.22.5-1, sin embargo, con esa versión no es factible conectarse a MSN Messenger, la conexión falla. En el [...]]]></description>
			<content:encoded><![CDATA[<p>CenterIM, un fork de CenterICQ, es un cliente de mensajería instantánea multiprotocolo: soporta ICQ, Yahoo!, MSN, AIM, IRC, XMPP, LiveJournal y Gadu-Gadu; además funciona en modo texto.</p>
<p>En los repositorios de Debian Lenny (estable) está disponible la versión 4.22.5-1, sin embargo, con esa versión no es factible conectarse a MSN Messenger, la conexión falla. En el sitio oficial <a title="important notice: 4.22.9 fixes MSN connectivity." href="http://www.centerim.org/index.php/Main_Page" target="_blank">CenterIM </a>anuncian que en la versión 4.22.9 se soluciona el problema. A continuación los pasos para realizar la compilación desde las fuentes, además, habilitaremos el soporte spanish UTF-8 cómo charset, así podremos utilizar los caracteres acentuados, y otros cómo la &#8220;ñ&#8221; en CenterIM. Todos los comandos a continuación deben ser ejecutados cómo root.</p>
<p>Preparamos nuestro ambiente de compilación:</p>
<pre class="brush: plain; light: true;">

# apt-get install -y libcurl4-openssl-dev libcurses-perl libgnutls-dev liblzo2-2 liblzo2-dev libncurses5 libncurses5-dev libncursesw5 libncursesw5-dev build-essential
</pre>
<p>Descargamos la última versión de CenterIM:</p>
<pre class="brush: plain; light: true;">

# wget http://www.centerim.org/download/releases/centerim-4.22.9.tar.gz
</pre>
<p>Instalaremos la localización (locale) requerida. Edita el archivo <em>/etc/locale.gen</em> y descomenta la línea es_ES.UTF-8</p>
<pre class="brush: plain; light: true;">

# vim /etc/locale.gen
</pre>
<p>Generamos la nueva localización con <strong>locale-gen </strong></p>
<pre class="brush: plain; light: true;">

# locale-gen
Generating locales (this might take a while)...
 es_ES.UTF-8... done
 en_US.UTF-8... done
Generation complete.
</pre>
<p>Utilizaremos esta localización temporalmente, el cambio perdurará hasta que cierres la consola.</p>
<pre class="brush: plain; light: true;">

# export LANG=es_ES.UTF-8
</pre>
<p>Ve al directorio donde descargaste CenterIM, llegó el momento de compilar. Si faltaran dependencias, al momento de hacer el configure te darás cuenta, intenta resolverlas a través de apt-get</p>
<pre class="brush: plain; light: true;">

# tar xzvf centerim-4.22.9.tar.gz
# cd centerim-4.22.9
# ./configure
# make
# make install
</pre>
<p>Ya puedes ejecutar CenterIM, por omisión estará disponible en <strong>/usr/local/bin/centerim.</strong> Luego de registrar tu cuenta MSN, tendrás que hacer unos ajustes en el charset, ó tus contactos sólo verán caracteres extraños cuando tu escribas con acentos o &#8220;ñ&#8221;. Presiona F4 para ir a &#8220;CenterIM config options&#8221; y en la opción &#8220;Codepages conversion&#8221; asigna los siguientes valores:</p>
<pre class="brush: plain; light: true;">

Switch to language preset : None
Remote charset : iso-8859-1
Local charset : utf-8
</pre>
<p>Existen varias formas para que el cambio de localización (en el Sistema Operativo) sea permanente para el usuario. Una de ellas es generar un sencillo script con este contenido:</p>
<pre class="brush: bash; light: true;">

#!/bin/bash

export LANG=es_ES.UTF-8
/usr/local/bin/centerim
</pre>
<p>Le das permisos de ejecución, y a través de este script ejecutas CenterIM. También podrías exportar la varaible LANG en tu ~/.profile o ~/.bashrc</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.pwn.cl/2009/12/centerim-spanish-utf-8-support-debian-lenny/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Samba tuning SnakeOS firmware</title>
		<link>http://blog.pwn.cl/2009/12/samba-tuning-snakeos-firmware/</link>
		<comments>http://blog.pwn.cl/2009/12/samba-tuning-snakeos-firmware/#comments</comments>
		<pubDate>Sun, 13 Dec 2009 02:46:54 +0000</pubDate>
		<dc:creator>sneira</dc:creator>
				<category><![CDATA[hardware]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[firmware]]></category>
		<category><![CDATA[nas]]></category>
		<category><![CDATA[samba]]></category>
		<category><![CDATA[snakeos]]></category>
		<category><![CDATA[tuning]]></category>
		<category><![CDATA[wlx652]]></category>

		<guid isPermaLink="false">http://blog.pwn.cl/?p=282</guid>
		<description><![CDATA[Instalé SnakeOS en mi NAS WLX-652, y estaba experimentando un problema con Samba: en un recurso compartido del NAS que monto en mi PC, existen varios archivos AVI. Una vez iniciada la reproducción de estos, y en un período de tiempo aleatorio, los videos se congelaban. Pero justo en ese instante podía seguir accediendo a [...]]]></description>
			<content:encoded><![CDATA[<p>Instalé <a title=" DealExtreme NAS" href="http://groups.google.com/group/dealextreme-nas-" target="_blank">SnakeOS</a> en <a title="Technical review NAS USB WLX-652" href="http://blog.pwn.cl/2009/11/technical-review-nas-usb-wlx-652/#more-172" target="_blank">mi NAS WLX-652</a>, y estaba experimentando un problema con Samba: en un recurso compartido del NAS que monto en mi PC, existen varios archivos AVI. Una vez iniciada la reproducción de estos, y en un período de tiempo aleatorio, los videos se congelaban. Pero justo en ese instante podía seguir accediendo a otros servicios, cómo FTP y SSH. El nivel de carga era normal en el NAS, estaba seguro que no era un problema de recursos y que algo pasa con Samba. Luego de incluir ciertos parámetros sin éxito en el archivo de configuración /etc/smb.conf, tales cómo:</p>
<pre class="brush: plain; light: true;">
read raw = no
read prediction = true
read size = 65536
level2 oplocks = true
</pre>
<p>Todo seguía igual. Mi hipótesis era que Samba (versión 2.0.10-security-rollup), no se daba por enterado de que yo seguía viendo el video, que mi conexión aún estaba activa. Luego de revisar el man (5) de smb.conf, encontré el parámetro <strong>keepalive</strong></p>
<blockquote><p>keepalive (G)</p>
<p>The value of the parameter (an integer) represents the number of<br />
seconds between keepalive packets. If this parameter is zero, no<br />
keepalive packets will be sent. Keepalive packets, if sent, allow<br />
the server to tell whether a client is still present and<br />
responding</p></blockquote>
<p>Si estás con el mismo problema, encontrarás la solución a continuación:</p>
<p>Copia el archivo /etc/smb.conf desde el NAS a algún directorio en tu computador y edítalo. En la sección global agrega:</p>
<pre class="brush: plain; light: true;">
keepalive = 0
</pre>
<p>Luego súbelo vía SCP o FTP al directorio /etc del NAS, sobrescribe el original.  Ve a la interfaz web de SnakeOS a &#8220;<strong>Services&gt; Samba&gt; Restart</strong>&#8221; para reiniciar el servicio, por último a &#8220;<strong>System&gt; Config&gt; Save Config</strong>&#8221; para que los cambios en el archivo de configuración persistan después de un reinicio.</p>
<p>Esta es la sección global de mi /etc/smb.conf</p>
<pre class="brush: plain; light: true;">

[global]
server string = pulpero
smb passwd file = /etc/smbpasswd
security = SHARE
workgroup = WORKGROUP
encrypt passwords = true
short preserve case = yes
preserve case = yes
guest account = ftp
guest ok = yes
force user = root
force group = root
socket options = SO_KEEPALIVE TCP_NODELAY SO_RCVBUF=16384 SO_SNDBUF=16384
character set = ISO8859-1
client code page = 850
keepalive = 0
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.pwn.cl/2009/12/samba-tuning-snakeos-firmware/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Samba client lanman auth</title>
		<link>http://blog.pwn.cl/2009/12/samba-client-lanman-auth/</link>
		<comments>http://blog.pwn.cl/2009/12/samba-client-lanman-auth/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 04:47:25 +0000</pubDate>
		<dc:creator>sneira</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[samba tips security]]></category>

		<guid isPermaLink="false">http://blog.pwn.cl/?p=277</guid>
		<description><![CDATA[Quería conectarme a un recurso compartido de Samba utilizando Nautilus (en Gnome ve a &#8220;Places &#62; Connect to Server&#8221;) y no podía conseguirlo. Los datos cómo el servidor, recurso, nombre de usuario y contraseña estaban correctos, sim embargo, Nautilus volvía y volvía a pedir la contraseña, no había ningún mensaje de error. Después de un [...]]]></description>
			<content:encoded><![CDATA[<p>Quería conectarme a un recurso compartido de Samba <a title="To Access a remote server" href="http://library.gnome.org/users/user-guide/stable/nautilus-server-connect.html.en" target="_blank">utilizando Nautilus</a> (en Gnome ve a &#8220;Places &gt; Connect to Server&#8221;) y no podía conseguirlo. Los datos cómo el servidor, recurso, nombre de usuario y contraseña estaban correctos, sim embargo, Nautilus volvía y volvía a pedir la contraseña, no había ningún mensaje de error. Después de un poco de debug utilizando smbclient, conseguí más información:</p>
<pre class="brush: plain; light: true;">
[root@awesom-o /]# smbclient -U sebastian //pulpero/torrents
Enter sebastian's password:
Domain=[WORKGROUP] OS=[Unix] Server=[Samba 2.0.10-security-rollup]
Server requested LANMAN password (share-level security) but 'client lanman auth' is disabled
tree connect failed: NT_STATUS_ACCESS_DENIED
</pre>
<p>Ocurre porque el cliente tiene deshabilitada la autenticación utilizando el <a title="LM hash" href="http://en.wikipedia.org/wiki/LM_hash" target="_blank">protocolo lanman</a>, ya que es menos seguro que <a title="NTLM" href="http://en.wikipedia.org/wiki/NTLM" target="_blank">NTLM.</a> Estando consciente <a title=" [Bug 209520] Re: SMB error: Unable to mount location when server configured with security=share" href="http://www.mail-archive.com/ubuntu-bugs@lists.ubuntu.com/msg884832.html" target="_blank">de esto y de los riesgos que involucra</a>, para solucionar el problema sólo tienes que editar el archivo /etc/samba/smb.conf y agregar esta línea en la sección [global]</p>
<pre class="brush: plain; light: true;">
client lanman auth = yes
</pre>
<p>Ahora puedes volver a probar con smbclient</p>
<pre class="brush: plain; light: true;">
[root@awesom-o /]# smbclient -U sebastian //pulpero/torrents
smb: \&gt;
</pre>
<p>Con Nautilus también todo irá bien.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.pwn.cl/2009/12/samba-client-lanman-auth/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cómo instalar Dropbox en Fedora 11</title>
		<link>http://blog.pwn.cl/2009/11/como-instalar-dropbox-en-fedora-11/</link>
		<comments>http://blog.pwn.cl/2009/11/como-instalar-dropbox-en-fedora-11/#comments</comments>
		<pubDate>Sun, 29 Nov 2009 03:25:42 +0000</pubDate>
		<dc:creator>sneira</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[fedora 11]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://blog.pwn.cl/?p=262</guid>
		<description><![CDATA[Dropbox, una aplicación que permite mantener sincronizados archivos entre distintos computadores, y que por cierto lo hace muy bien, no ofrece un paquete para Fedora 11. Acá encontrarás las instrucciones para resolver las dependencias y compilarlo desde el source. Ejecuta todos estos comandos cómo root:

wget https://www.dropbox.com/download?dl=packages/nautilus-dropbox-0.6.1.tar.bz2
yum install libnotify-devel nautilus-devel python-docutils gcc
tar jxvf nautilus-dropbox-0.6.1.tar.bz2
cd nautilus-dropbox-0.6.1
./configure
./make
./make install

Si [...]]]></description>
			<content:encoded><![CDATA[<p>Dropbox, una aplicación que permite mantener sincronizados archivos entre distintos computadores, y que por cierto lo hace muy bien, <a title="Dropbox for Linux" href="https://www.dropbox.com/downloading?os=lnx" target="_blank">no ofrece un paquete para Fedora 11</a>. Acá encontrarás las instrucciones para resolver las dependencias y compilarlo desde el source. Ejecuta todos estos comandos cómo root:</p>
<pre class="brush: plain; light: true;">
wget https://www.dropbox.com/download?dl=packages/nautilus-dropbox-0.6.1.tar.bz2
yum install libnotify-devel nautilus-devel python-docutils gcc
tar jxvf nautilus-dropbox-0.6.1.tar.bz2
cd nautilus-dropbox-0.6.1
./configure
./make
./make install
</pre>
<p>Si quieres probar Dropbox, puedes hacerlo desde <a title="Dropbox - Home - Secure backup, sync and sharing made easy" href="https://www.dropbox.com/referrals/NTMxOTQwNDM5" target="_blank">acá</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.pwn.cl/2009/11/como-instalar-dropbox-en-fedora-11/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Technical review NAS USB WLX-652</title>
		<link>http://blog.pwn.cl/2009/11/technical-review-nas-usb-wlx-652/</link>
		<comments>http://blog.pwn.cl/2009/11/technical-review-nas-usb-wlx-652/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 23:03:37 +0000</pubDate>
		<dc:creator>sneira</dc:creator>
				<category><![CDATA[hardware]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[firmware]]></category>
		<category><![CDATA[nas]]></category>
		<category><![CDATA[review]]></category>

		<guid isPermaLink="false">http://blog.pwn.cl/?p=172</guid>
		<description><![CDATA[Algo ocurre en mí cuando cuando el hardware funciona bajo Linux y permite firmware upgrade. Automáticamente comienzo a pensar que características nuevas -incluso sin conocer del todo las actuales- podría incorporar con una futura actualización. Existe un NAS (Network Attached Storage) que cumple con estas características, e incorpora unas muy atractivas: es un cliente Bittorrent, [...]]]></description>
			<content:encoded><![CDATA[<p>Algo ocurre en mí cuando cuando el hardware funciona bajo Linux y permite <em>firmware upgrade</em>. Automáticamente comienzo a pensar que características nuevas -incluso sin conocer del todo las actuales- podría incorporar con una futura actualización. Existe un NAS <em>(Network Attached Storage)</em> que cumple con estas características, e incorpora unas muy atractivas: es un cliente Bittorrent, actúa cómo servidor de impresión, FTP, Samba y UPnP; y aun bajo precio: 40.35 USD. Es el NAS wlx-652, también conocido en los grupos de google cómo &#8220;<a title="DealExtreme NAS | Google Groups" href="groups.google.com/group/dealextreme-nas-" target="_blank">DealExtreme NAS</a>&#8221; gracias a su distribuidor más popular: <a title="Standalone BitTorrent BT Client + UPNP USB/NAS/FTP/SAMBA/Printer Sharing Network LAN Server" href="http://www.dealextreme.com/details.dx/sku.20383" target="_blank">DealExtreme</a>. Tomé unas capturas de todos los menús y opciones disponibles del firmware por omisión. Así podrás ver si cumple con tus expectativas. <span id="more-172"></span>Transcrito literalmente de su caja, el wlx-652 es:</p>
<ul>
<li><strong>FTP server:</strong> Via the network support long-distance file transfer and management</li>
<li><strong>SAMBA server:</strong> Easily to come true the file-sharing within the local area network</li>
<li><strong>BT download:</strong> Can automatically download the film over internet without computer</li>
<li><strong>A print server:</strong> Can share one printer for more persons</li>
<li><strong>A key recovery:</strong> Avoid the server to get into trouble since the misoperation</li>
<li><strong>Two high-speed USB2.0 HOST interface:</strong> Plug and Play, so can take more important stuffs via USB storage easily</li>
<li><strong>Multi-user permission settings:</strong> Sets the permission for user on your network server in the Working Group, to fill user&#8217;s actual needs, so user can share and edit documents easily. And strengthened confidentiality and security.</li>
</ul>
<p style="text-align: left;">
<p>La descripción del hardware:</p>
<ul>
<li><strong>CPU:</strong> ARMv4 250 MHz</li>
<li><strong>RAM:</strong> 32 MB</li>
<li><strong>FLASH:</strong> 4 MB</li>
<li><strong>USB:</strong> 2 x USB 2.0</li>
<li><strong>Red:</strong> 10/100MB</li>
</ul>
<p style="text-align: left;">
<p>Puedes obtener más info en <a title=" WLX-652 Hardware Info    " href="http://groups.google.com/group/dealextreme-nas-/web/wlx-652-hardware-info" target="_blank">este dmesg</a> en el grupo dealextreme-nas- Mientras tomaba las capturas de pantalla, que más adelante aparecerán cómo galería, me dediqué a configurarlo. Y estas son mis impresiones del proceso:</p>
<h1>Samba Server</h1>
<p>Las opciones de configuración son las justas y necesarias, cómo servidor de archivos puede operar de dos formas, con autenticación y sin autenticación de usuario. Si alguna vez configuraste un Samba, me refiero a las opciones:</p>
<pre class="brush: plain; light: true;">
security = user
security = share
</pre>
<p><strong>Sin autenticación:</strong> accedes al recurso compartido definido, dónde podrás ó no escribir según se haya configurado. Es ideal para operar en entornos controlados dónde la seguridad no importa mucho.</p>
<p><strong>Con autenticación:</strong> accederás al recurso compartido, dónde también podrás ó no escribir, pero estos permisos ahora son asociados a un usuario que previamente deberás haber creado. Sin embargo, 1 recurso compartido es a 1 usuario. Esto quiere decir que sólo un usuario podrá acceder a un recurso en particular, no puedes crear un grupo, o especificar varios usuarios para luego asociarlo a ese recurso. Técnicamente hablando, la interfaz web NO permite hacer esto para un recurso determinado en el smb.conf</p>
<pre class="brush: plain; light: true;">
valid users = user1, user2, user3
valid users = @sysadmin
</pre>
<p>Quizá podría hacer algo por &#8220;debajo&#8221; con la lista de usuarios, pero del grupo ni hablar. No existe el archivo de grupo /etc/group en el filesystem del NAS. 
<a href="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/15-sharemanage-createshare01.png" title="" class="shutterset_singlepic22" >
	<img class="ngg-singlepic" src="http://blog.pwn.cl/wp-content/plugins/nextgen-gallery/nggshow.php?pid=22&amp;width=&amp;height=240</code>&amp;mode=" alt="15-sharemanage-createshare01" title="15-sharemanage-createshare01" />
</a>
</p>
<p style="text-align: left;">
<h1>FTP Server</h1>
<p>El servicio FTP con sus opciones de configuración, son las precisas para funcionar. Puedes habilitar FTP anónimo y crear cuentas de usuario, luego defines los permisos que tendrá el usuario sobre el directorio: lectura ó lectura y escritura. Eso es todo. Acá también 1 directorio es a 1 usuario. Esto quiere decir que sólo un usuario podrá acceder por FTP a un directorio definido, no puedes crear un grupo o asociar varios usuarios a un directorio determinado.<br />

<a href="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/20-ftpserver-newuser.png" title="" class="shutterset_singlepic31" >
	<img class="ngg-singlepic" src="http://blog.pwn.cl/wp-content/plugins/nextgen-gallery/nggshow.php?pid=31&amp;width=&amp;height=240</code>&amp;mode=" alt="20-ftpserver-newuser" title="20-ftpserver-newuser" />
</a>
</p>
<p style="text-align: left;">
<h1>UPnP Media Server</h1>
<p>La configuración es mínima: defines el nombre de tu media server y el directorio donde estarán alojados los archivos multimedia. Luego copias un video a ese directorio (por FTP o Samba) y con tu cliente UPnP favorito te conectas al servidor y a disfrutar. En mi caso utilicé VLC, si quieres saber cómo configurarlo, revisa <a title="Documentation:Modules/upnp intel" href="http://wiki.videolan.org/Documentation:Modules/upnp_intel" target="_blank">esta entrada en su wiki</a> o <a title="UPnP AV clients (ControlPoint)" href="http://en.wikipedia.org/wiki/UPnP_AV_MediaServers#UPnP_AV_clients_.28ControlPoint.29" target="_blank">esta en la wikipedia</a> por si deseas conocer otros clientes.</p>
<p style="text-align: left;">
<h1>Bittorrent Client</h1>
<p>Que este NAS tenga un cliente Bittorrent incorporado lo hace muy deseable, no depender de un computador para descargar siempre es atractivo.  Las opciones de configuración, al igual que con los otros servicios, son muy acotadas, pero justamente las imprescindibles. ¿Cómo funciona? bajas un torrent, lo subes por la interfaz administrativa y comienza la descarga. Podrás configurar el directorio de destino, el puerto a usar, la velocidad límite de bajada y subida y el tiempo a actuar cómo seeder. Pero debo decir que la velocidad de bajada es 1/10 de la que puedes conseguir utilizando un cliente en tu computador, lo comprobé más de una vez. Debe ser por el hardware tan pequeño  que incorpora este NAS. La interfaz web no tiene una buena interacción con el cliente que corre por &#8220;debajo&#8221;, aveces muestra error al refrezcar el estado de la descarga. Si estabas esperando algo similar a <a title="Torrentflux" href="http://www.torrentflux.com/" target="_blank">Torrentflux</a>, te sentirás muy decepcionado.<br />

<a href="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/24-downloader-bittorrent-03.png" title="" class="shutterset_singlepic38" >
	<img class="ngg-singlepic" src="http://blog.pwn.cl/wp-content/plugins/nextgen-gallery/nggshow.php?pid=38&amp;width=&amp;height=240</code>&amp;mode=" alt="24-downloader-bittorrent-03" title="24-downloader-bittorrent-03" />
</a>
</p>
<p style="text-align: left;">
<h1>Print Server</h1>
<p>Al incorporar dos puertos USB, puedes conectar una impresora a uno de estos  y compartirla en red. Para probarlo, conecté una Canon iP1200, automáticamente la reconoció y se vio representada en la interfaz administrativa del NAS. Acá no existe la posibilidad de configurar algo. Técnicamente hablando, lo que hace es implementar una cola de impresión a través de LPD. Si quisieras usarla en Windows por ejemplo, instalas los controladores cómo si la impresora estuviera conectada directamente a tu computador (local), luego cambias el &#8220;puerto de impresión&#8221; para apuntarlo al servidor LPD (remoto). Puedes ir al <a title="HOW TO: Install and Configure Print Services for UNIX" href="http://support.microsoft.com/kb/324078" target="_blank">KB de Microsoft</a> para saber cómo ó ver estas imágenes que tomé mientras reconfiguraba mi impresora en un Windows para hacer las pruebas.</p>
<p><code>
<div class="ngg-galleryoverview" id="ngg-gallery-4-172">

	<!-- Slideshow link -->
	<div class="slideshowlink">
		<a class="slideshowlink" href="http://blog.pwn.cl/2009/11/technical-review-nas-usb-wlx-652/?show=slide">
			[Show as slideshow]		</a>
	</div>

	<!-- Piclense link -->
	<div class="piclenselink">
		<a class="piclenselink" href="javascript:PicLensLite.start({feedUrl:'http://blog.pwn.cl/wp-content/plugins/nextgen-gallery/xml/media-rss.php?gid=4&amp;mode=gallery'});">
			[View with PicLens]		</a>
	</div>
	
	<!-- Thumbnails -->
		
	<div id="ngg-image-45" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.pwn.cl/wp-content/gallery/printerconfig-lpd-winxp/05-printerconfigwindowsxp.JPG" title=" " class="shutterset_set_4" >
								<img title="05-printerconfigwindowsxp" alt="05-printerconfigwindowsxp" src="http://blog.pwn.cl/wp-content/gallery/printerconfig-lpd-winxp/thumbs/thumbs_05-printerconfigwindowsxp.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-44" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.pwn.cl/wp-content/gallery/printerconfig-lpd-winxp/04-printerconfigwindowsxp.JPG" title=" " class="shutterset_set_4" >
								<img title="04-printerconfigwindowsxp" alt="04-printerconfigwindowsxp" src="http://blog.pwn.cl/wp-content/gallery/printerconfig-lpd-winxp/thumbs/thumbs_04-printerconfigwindowsxp.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-43" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.pwn.cl/wp-content/gallery/printerconfig-lpd-winxp/03-printerconfigwindowsxp.JPG" title=" " class="shutterset_set_4" >
								<img title="03-printerconfigwindowsxp" alt="03-printerconfigwindowsxp" src="http://blog.pwn.cl/wp-content/gallery/printerconfig-lpd-winxp/thumbs/thumbs_03-printerconfigwindowsxp.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-42" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.pwn.cl/wp-content/gallery/printerconfig-lpd-winxp/02-printerconfigwindowsxp.JPG" title=" " class="shutterset_set_4" >
								<img title="02-printerconfigwindowsxp" alt="02-printerconfigwindowsxp" src="http://blog.pwn.cl/wp-content/gallery/printerconfig-lpd-winxp/thumbs/thumbs_02-printerconfigwindowsxp.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-41" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.pwn.cl/wp-content/gallery/printerconfig-lpd-winxp/01-printerconfigwindowsxp.JPG" title=" " class="shutterset_set_4" >
								<img title="01-printerconfigwindowsxp" alt="01-printerconfigwindowsxp" src="http://blog.pwn.cl/wp-content/gallery/printerconfig-lpd-winxp/thumbs/thumbs_01-printerconfigwindowsxp.JPG" width="93" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-46" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.pwn.cl/wp-content/gallery/printerconfig-lpd-winxp/06-printerconfigwindowsxp.JPG" title=" " class="shutterset_set_4" >
								<img title="06-printerconfigwindowsxp" alt="06-printerconfigwindowsxp" src="http://blog.pwn.cl/wp-content/gallery/printerconfig-lpd-winxp/thumbs/thumbs_06-printerconfigwindowsxp.JPG" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>

</code></p>
<p style="text-align: left;">
<h1>Configuración general</h1>
<p style="text-align: left;">
<h2>Network Config</h2>
<p>La primera vez que lo configures te pedirá un nombre (hostname), un usuario y contraseña, el encoding a utilizar, la zona horaria y por último la configuración de red: IP estática ó automática. Cuando obtiene IP por DHCP, se identifica cómo &#8220;NAS&#8221;, así será facil encontrarlo para luego -en caso de ser requerido- crear una reservación en el DHCP. Si no tienes un DHCP en tu red, el NAS puede proveer este servicio. Por último, puedes configurar un servicio de DNS dinámico (Dynamic DNS o ddns), pero sólo con <a title="Enhanced Dynamic DNS Solutions" href="http://www.changeip.com" target="_blank">changeip.com</a></p>
<p style="text-align: left;">
<h2>Device Config</h2>
<p>Con respecto al filesystem del disco duro, dice reconocer NTFS, FAT16, FAT32 y EXT3. Al momento de conectr un disco duro al NAS, tienes dos opciones: le das formato utilizando la interfaz administrativa ó tú te encargas de darle formato con alguno de los filesystem soportados. Si escoges la primera, utilizará por omisión FAT32. Recomiendo que tú te encargues de dar formato al disco utilizando EXT3, con FAT32 los archivos <a title="File Allocation Table" href="http://en.wikipedia.org/wiki/File_Allocation_Table#FAT32" target="_blank">no pueden superar los 4 GB</a>, esto te traerá problemas con archivos grandes cómo las imágenes ISO. La interfaz administrativa tampoco permite crear o eliminar particiones.</p>
<p style="text-align: left;">
<h2>La interfaz web</h2>
<p>Se supone que este NAS debería poder configurarlo cualquiera, pero hay ciertas cosas que no son muy intuitivas, cómo por ejemplo, definir un directorio asociado a un servicio: podría ser un recurso compartido, un directorio de acceso a través de FTP, etc. La interfaz permite crearlos de forma sencilla, pero no es facil darse cuenta que el directorio raíz que debes especificar en la interfaz web, previo al directorio creado es &#8220;<strong><em>/mnt/C</em></strong>&#8220;. Por ej: &#8220;<em><strong>/mnt/C/series</strong></em>&#8220;. Si la ruta definida por ti está errónea, el directorio será representado cómo &#8220;<em><strong>/mnt/error</strong></em>&#8220;, esa fue la pista que me llevó a investigar qué había hecho mal, y esta pantalla me dio una idea de cómo debería quedar. 
<a href="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/15-sharemanage-createshare03.png" title="" class="shutterset_singlepic24" >
	<img class="ngg-singlepic" src="http://blog.pwn.cl/wp-content/plugins/nextgen-gallery/nggshow.php?pid=24&amp;width=&amp;height=240</code>&amp;mode=" alt="15-sharemanage-createshare03" title="15-sharemanage-createshare03" />
</a>
 Una vez resuelto el problema, leí manual y sólo lo dice forma implícita, creo podría ser más intuitivo para el usuario. Tampoco se validan muchas cosas, por ejemplo: no puedes crear el mismo nombre de usuario para FTP y Samba. No hay mensajes de error, simplemente no lo crea. Me di cuenta al revisar el /etc/passwd y al intentar la autenticación contra los servicios involucrados. Si deseas dar un vistazo al manual de usuario, puedes descargarlo desde <a title="wlx-652.doc" href="http://bit.ly/64c9Jx" target="_blank">acá</a> . Está en chino e inglés (mas chino que inglés)</p>
<p style="text-align: left;">
<h2>Galería de imágenes</h2>
<p>Las capturas de pantalla de TODAS las opciones que ofrece el firmware</p>
<p><code>
<div class="ngg-galleryoverview" id="ngg-gallery-3-172">

	<!-- Slideshow link -->
	<div class="slideshowlink">
		<a class="slideshowlink" href="http://blog.pwn.cl/2009/11/technical-review-nas-usb-wlx-652/?show=slide">
			[Show as slideshow]		</a>
	</div>

	<!-- Piclense link -->
	<div class="piclenselink">
		<a class="piclenselink" href="javascript:PicLensLite.start({feedUrl:'http://blog.pwn.cl/wp-content/plugins/nextgen-gallery/xml/media-rss.php?gid=3&amp;mode=gallery'});">
			[View with PicLens]		</a>
	</div>
	
	<!-- Thumbnails -->
		
	<div id="ngg-image-8" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/01-naswebadmin.png" title=" " class="shutterset_set_3" >
								<img title="01-naswebadmin" alt="01-naswebadmin" src="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/thumbs/thumbs_01-naswebadmin.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-9" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/02-naswebadmin.png" title=" " class="shutterset_set_3" >
								<img title="02-naswebadmin" alt="02-naswebadmin" src="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/thumbs/thumbs_02-naswebadmin.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-10" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/03-naswebadmin.png" title=" " class="shutterset_set_3" >
								<img title="03-naswebadmin" alt="03-naswebadmin" src="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/thumbs/thumbs_03-naswebadmin.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-11" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/04-naswebadmin.png" title=" " class="shutterset_set_3" >
								<img title="04-naswebadmin" alt="04-naswebadmin" src="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/thumbs/thumbs_04-naswebadmin.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-12" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/05-naswebadmin.png" title=" " class="shutterset_set_3" >
								<img title="05-naswebadmin" alt="05-naswebadmin" src="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/thumbs/thumbs_05-naswebadmin.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-13" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/06-system-generalinfo.png" title=" " class="shutterset_set_3" >
								<img title="06-system-generalinfo" alt="06-system-generalinfo" src="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/thumbs/thumbs_06-system-generalinfo.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-14" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/07-system-servername.png" title=" " class="shutterset_set_3" >
								<img title="07-system-servername" alt="07-system-servername" src="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/thumbs/thumbs_07-system-servername.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-15" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/08-system-webadmin.png" title=" " class="shutterset_set_3" >
								<img title="08-system-webadmin" alt="08-system-webadmin" src="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/thumbs/thumbs_08-system-webadmin.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-16" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/09-system-encoding.png" title=" " class="shutterset_set_3" >
								<img title="09-system-encoding" alt="09-system-encoding" src="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/thumbs/thumbs_09-system-encoding.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-17" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/10-system-time.png" title=" " class="shutterset_set_3" >
								<img title="10-system-time" alt="10-system-time" src="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/thumbs/thumbs_10-system-time.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-18" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/11-networkconfig-ipaddress.png" title=" " class="shutterset_set_3" >
								<img title="11-networkconfig-ipaddress" alt="11-networkconfig-ipaddress" src="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/thumbs/thumbs_11-networkconfig-ipaddress.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-19" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/12-networkconfig-dhcpserver.png" title=" " class="shutterset_set_3" >
								<img title="12-networkconfig-dhcpserver" alt="12-networkconfig-dhcpserver" src="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/thumbs/thumbs_12-networkconfig-dhcpserver.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-20" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/13-networkconfig-ddns.png" title=" " class="shutterset_set_3" >
								<img title="13-networkconfig-ddns" alt="13-networkconfig-ddns" src="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/thumbs/thumbs_13-networkconfig-ddns.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-21" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/14-sharemanage-general.png" title=" " class="shutterset_set_3" >
								<img title="14-sharemanage-general" alt="14-sharemanage-general" src="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/thumbs/thumbs_14-sharemanage-general.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-22" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/15-sharemanage-createshare01.png" title=" " class="shutterset_set_3" >
								<img title="15-sharemanage-createshare01" alt="15-sharemanage-createshare01" src="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/thumbs/thumbs_15-sharemanage-createshare01.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-23" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/15-sharemanage-createshare02.png" title=" " class="shutterset_set_3" >
								<img title="15-sharemanage-createshare02" alt="15-sharemanage-createshare02" src="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/thumbs/thumbs_15-sharemanage-createshare02.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-24" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/15-sharemanage-createshare03.png" title=" " class="shutterset_set_3" >
								<img title="15-sharemanage-createshare03" alt="15-sharemanage-createshare03" src="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/thumbs/thumbs_15-sharemanage-createshare03.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-25" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/15-sharemanage-createshare04.png" title=" " class="shutterset_set_3" >
								<img title="15-sharemanage-createshare04" alt="15-sharemanage-createshare04" src="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/thumbs/thumbs_15-sharemanage-createshare04.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-26" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/15-sharemanage-createshare05.png" title=" " class="shutterset_set_3" >
								<img title="15-sharemanage-createshare05" alt="15-sharemanage-createshare05" src="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/thumbs/thumbs_15-sharemanage-createshare05.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-27" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/16-sharemanage-usermanage.png" title=" " class="shutterset_set_3" >
								<img title="16-sharemanage-usermanage" alt="16-sharemanage-usermanage" src="http://blog.pwn.cl/wp-content/gallery/wlx652-webadmin/thumbs/thumbs_16-sharemanage-usermanage.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-navigation'><span>1</span><a class="page-numbers" href="http://blog.pwn.cl/2009/11/technical-review-nas-usb-wlx-652/?nggpage=2">2</a><a class="next" id="ngg-next-2" href="http://blog.pwn.cl/2009/11/technical-review-nas-usb-wlx-652/?nggpage=2">&#9658;</a></div> 	
</div>

</code></p>
<h1>Calificación</h1>
<p style="text-align: left;">
<h2>Lo bueno:</h2>
<p style="text-align: left;">
<ul>
<li>precio</li>
<li>el servidor de impresión USB más barato que puedas encontrar</li>
<li>funciona bajo linux</li>
<li>permite firmware upgrade</li>
<li>el concepto de &#8220;todo en uno&#8221;</li>
<li>bajo consumo de energía</li>
</ul>
<p style="text-align: left;">
<h2>Lo malo:</h2>
<p style="text-align: left;">
<ul>
<li>cómo NAS deja mucho que desear</li>
<li>cómo cliente Bittorrent no funciona bien</li>
<li>la interfaz web es muy básica</li>
</ul>
<p style="text-align: left;">
<p>Si deseas llevar este NAS más allá, entonces recomiendo que te unas al grupo <a title="DealExtreme NAS | Google Groups" href="groups.google.com/group/dealextreme-nas-" target="_blank">DealExtreme NAS</a> y evalúes las características del firmware Snake OS, al momento de escribir este post la última versión es <a href="http://groups.google.com/group/dealextreme-nas-/web/snake-os---v1-0-0?hl=en" target="_blank">snakeos-V1.0.0-20091027</a> . Si deseas leer el manual de usuario, entonces descárgalo de <a title="SNAKE_OS_beta3_20090811_User_Manual.pdf" href="http://groups.google.com/group/dealextreme-nas-/web/SNAKE_OS_beta3_20090811_User_Manual.pdf" target="_blank">acá</a>, podrás hacer una comparación y sacar tus propias conclusiones.</p>
<p style="text-align: left;">
<h1>Bonus</h1>
<p>A continuación unas fotos del NAS wlx-652</p>
<p><code>
<div class="ngg-galleryoverview" id="ngg-gallery-5-172">

	<!-- Slideshow link -->
	<div class="slideshowlink">
		<a class="slideshowlink" href="http://blog.pwn.cl/2009/11/technical-review-nas-usb-wlx-652/?show=slide">
			[Show as slideshow]		</a>
	</div>

	<!-- Piclense link -->
	<div class="piclenselink">
		<a class="piclenselink" href="javascript:PicLensLite.start({feedUrl:'http://blog.pwn.cl/wp-content/plugins/nextgen-gallery/xml/media-rss.php?gid=5&amp;mode=gallery'});">
			[View with PicLens]		</a>
	</div>
	
	<!-- Thumbnails -->
		
	<div id="ngg-image-47" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.pwn.cl/wp-content/gallery/wlx652-unpacking/IMG00173-20091001-1544.jpg" title=" " class="shutterset_set_5" >
								<img title="IMG00173-20091001-1544" alt="IMG00173-20091001-1544" src="http://blog.pwn.cl/wp-content/gallery/wlx652-unpacking/thumbs/thumbs_IMG00173-20091001-1544.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-48" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.pwn.cl/wp-content/gallery/wlx652-unpacking/IMG00174-20091001-1544.jpg" title=" " class="shutterset_set_5" >
								<img title="IMG00174-20091001-1544" alt="IMG00174-20091001-1544" src="http://blog.pwn.cl/wp-content/gallery/wlx652-unpacking/thumbs/thumbs_IMG00174-20091001-1544.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-49" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.pwn.cl/wp-content/gallery/wlx652-unpacking/IMG00175-20091001-1545.jpg" title=" " class="shutterset_set_5" >
								<img title="IMG00175-20091001-1545" alt="IMG00175-20091001-1545" src="http://blog.pwn.cl/wp-content/gallery/wlx652-unpacking/thumbs/thumbs_IMG00175-20091001-1545.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-50" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.pwn.cl/wp-content/gallery/wlx652-unpacking/IMG00176-20091001-1546.jpg" title=" " class="shutterset_set_5" >
								<img title="IMG00176-20091001-1546" alt="IMG00176-20091001-1546" src="http://blog.pwn.cl/wp-content/gallery/wlx652-unpacking/thumbs/thumbs_IMG00176-20091001-1546.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-51" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.pwn.cl/wp-content/gallery/wlx652-unpacking/IMG00177-20091001-1546.jpg" title=" " class="shutterset_set_5" >
								<img title="IMG00177-20091001-1546" alt="IMG00177-20091001-1546" src="http://blog.pwn.cl/wp-content/gallery/wlx652-unpacking/thumbs/thumbs_IMG00177-20091001-1546.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-52" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.pwn.cl/wp-content/gallery/wlx652-unpacking/IMG00178-20091001-1546.jpg" title=" " class="shutterset_set_5" >
								<img title="IMG00178-20091001-1546" alt="IMG00178-20091001-1546" src="http://blog.pwn.cl/wp-content/gallery/wlx652-unpacking/thumbs/thumbs_IMG00178-20091001-1546.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-53" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.pwn.cl/wp-content/gallery/wlx652-unpacking/IMG00179-20091001-1547.jpg" title=" " class="shutterset_set_5" >
								<img title="IMG00179-20091001-1547" alt="IMG00179-20091001-1547" src="http://blog.pwn.cl/wp-content/gallery/wlx652-unpacking/thumbs/thumbs_IMG00179-20091001-1547.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-54" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.pwn.cl/wp-content/gallery/wlx652-unpacking/IMG00181-20091001-1548.jpg" title=" " class="shutterset_set_5" >
								<img title="IMG00181-20091001-1548" alt="IMG00181-20091001-1548" src="http://blog.pwn.cl/wp-content/gallery/wlx652-unpacking/thumbs/thumbs_IMG00181-20091001-1548.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-55" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.pwn.cl/wp-content/gallery/wlx652-unpacking/IMG00182-20091001-1548.jpg" title=" " class="shutterset_set_5" >
								<img title="IMG00182-20091001-1548" alt="IMG00182-20091001-1548" src="http://blog.pwn.cl/wp-content/gallery/wlx652-unpacking/thumbs/thumbs_IMG00182-20091001-1548.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-56" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.pwn.cl/wp-content/gallery/wlx652-unpacking/IMG00183-20091001-1549.jpg" title=" " class="shutterset_set_5" >
								<img title="IMG00183-20091001-1549" alt="IMG00183-20091001-1549" src="http://blog.pwn.cl/wp-content/gallery/wlx652-unpacking/thumbs/thumbs_IMG00183-20091001-1549.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-57" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.pwn.cl/wp-content/gallery/wlx652-unpacking/IMG00185-20091001-1552.jpg" title=" " class="shutterset_set_5" >
								<img title="IMG00185-20091001-1552" alt="IMG00185-20091001-1552" src="http://blog.pwn.cl/wp-content/gallery/wlx652-unpacking/thumbs/thumbs_IMG00185-20091001-1552.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>

</code></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.pwn.cl/2009/11/technical-review-nas-usb-wlx-652/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Cómo actualizar a Fedora 12 Constatine</title>
		<link>http://blog.pwn.cl/2009/11/como-actualizar-a-fedora-12-constatine/</link>
		<comments>http://blog.pwn.cl/2009/11/como-actualizar-a-fedora-12-constatine/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 01:22:42 +0000</pubDate>
		<dc:creator>sneira</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[fedora 12]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://blog.pwn.cl/?p=156</guid>
		<description><![CDATA[Desde hoy 17 de noviembre, está disponible Fedora 12 Constatine.
Si actualmente tienes instalado Fedora 11 y quieres actualizar a Fedora 12, entonces sigue cómo root estos sencillos pasos:

# yum install preupgrade
# preupgrade

Unas capturas del proceso:
Puedes encontrar más información en la &#8220;Guía de actualización a Fedora 12&#8221; y también en este post de FayerWayer.
]]></description>
			<content:encoded><![CDATA[<p>Desde hoy 17 de noviembre, está disponible Fedora 12 Constatine.<br />
Si actualmente tienes instalado Fedora 11 y quieres actualizar a Fedora 12, entonces sigue cómo root estos sencillos pasos:</p>
<pre class="brush: bash; light: true;">
# yum install preupgrade
# preupgrade
</pre>
<p>Unas capturas del proceso:</p>

<div class="ngg-galleryoverview" id="ngg-gallery-2-156">

	<!-- Slideshow link -->
	<div class="slideshowlink">
		<a class="slideshowlink" href="http://blog.pwn.cl/2009/11/como-actualizar-a-fedora-12-constatine/?show=slide">
			[Show as slideshow]		</a>
	</div>

	<!-- Piclense link -->
	<div class="piclenselink">
		<a class="piclenselink" href="javascript:PicLensLite.start({feedUrl:'http://blog.pwn.cl/wp-content/plugins/nextgen-gallery/xml/media-rss.php?gid=2&amp;mode=gallery'});">
			[View with PicLens]		</a>
	</div>
	
	<!-- Thumbnails -->
		
	<div id="ngg-image-5" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.pwn.cl/wp-content/gallery/preupgrade-f11-to-f12/upgrade-your-system.png" title=" " class="shutterset_set_2" >
								<img title="upgrade-your-system" alt="upgrade-your-system" src="http://blog.pwn.cl/wp-content/gallery/preupgrade-f11-to-f12/thumbs/thumbs_upgrade-your-system.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-6" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.pwn.cl/wp-content/gallery/preupgrade-f11-to-f12/upgrade-your-system2.png" title=" " class="shutterset_set_2" >
								<img title="upgrade-your-system2" alt="upgrade-your-system2" src="http://blog.pwn.cl/wp-content/gallery/preupgrade-f11-to-f12/thumbs/thumbs_upgrade-your-system2.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-7" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.pwn.cl/wp-content/gallery/preupgrade-f11-to-f12/upgrade-your-system3.png" title=" " class="shutterset_set_2" >
								<img title="upgrade-your-system3" alt="upgrade-your-system3" src="http://blog.pwn.cl/wp-content/gallery/preupgrade-f11-to-f12/thumbs/thumbs_upgrade-your-system3.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>


<p>Puedes encontrar más información en la &#8220;<a title="Capítulo 17. Actualización de su sistema actual" href="http://docs.fedoraproject.org/install-guide/f12/es-ES/html/ch-upgrade-x86.html" target="_blank">Guía de actualización a Fedora 12</a>&#8221; y también en <a title="Llega Fedora 12 “Constantine” con esperadas mejoras" href="http://www.fayerwayer.com/2009/11/llega-fedora-12-constantine-con-esperadas-mejoras/" target="_blank">este post de FayerWayer</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.pwn.cl/2009/11/como-actualizar-a-fedora-12-constatine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to sendmail masquerading &#8211; CentOS / Red Hat 5</title>
		<link>http://blog.pwn.cl/2009/10/how-to-sendmail-masquerading-centos-red-hat-5/</link>
		<comments>http://blog.pwn.cl/2009/10/how-to-sendmail-masquerading-centos-red-hat-5/#comments</comments>
		<pubDate>Sun, 11 Oct 2009 20:02:29 +0000</pubDate>
		<dc:creator>sneira</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[mta]]></category>
		<category><![CDATA[redhat]]></category>
		<category><![CDATA[sendmail]]></category>

		<guid isPermaLink="false">http://blog.pwn.cl/?p=125</guid>
		<description><![CDATA[Si necesitas enviar correos de tu servidor linux, pero estos no llegan al destinatario final, y el maillog luce similar a este:

server1 sendmail[2513]: n9ALeZ8h002511: to=&#60;user@example.com&#62;, delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=120331, relay=mail.example.com. [200.10.20.3], dsn=4.2.0, stat=Deferred: 450 &#60;root@server1.yourcompany.com&#62;: Sender address rejected: Domain not found

Entonces te interesará seguir leyendo este post.
Este tipo de rechazo se produce por el incumplimiento [...]]]></description>
			<content:encoded><![CDATA[<p>Si necesitas enviar correos de tu servidor linux, pero estos no llegan al destinatario final, y el maillog luce similar a este:</p>
<pre class="brush: plain; light: true;">
server1 sendmail[2513]: n9ALeZ8h002511: to=&lt;user@example.com&gt;, delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=120331, relay=mail.example.com. [200.10.20.3], dsn=4.2.0, stat=Deferred: 450 &lt;root@server1.yourcompany.com&gt;: Sender address rejected: Domain not found
</pre>
<p>Entonces te interesará seguir leyendo este post.</p>
<p>Este tipo de rechazo se produce por el incumplimiento de alguna de las normas descritas en la <a title="Request For Comments 2821" href="http://www.faqs.org/rfcs/rfc2821.html" target="_blank">RFC 2821</a> para el <a title="Simple Mail Transfer Protocol" href="http://es.wikipedia.org/wiki/Simple_Mail_Transfer_Protocol" target="_blank">protocolo SMTP</a>. Generalmente ocurre cuando el host que envía el correo  tiene un <a title="Fully Qualified Domain Name" href="http://es.wikipedia.org/wiki/FQDN" target="_blank">FQDN</a> (<em>Fully Qualified Domain Name</em>) que no puede ser resuelto por DNS en el servidor de destino (no existe un registro para el host en la zona del dominio, o bien, no existe el dominio)</p>
<p>El escenario a analizar será el siguiente:</p>
<ul>
<li>dominio de tu organización: yourcompany.com</li>
</ul>
<ul>
<li>FQDN del servidor linux: server1.yourcompany.com</li>
</ul>
<ul>
<li>dominio del destinatario: example.com</li>
</ul>
<p>&nbsp;<br/><br />
Asumiremos que el dominio yourcompany.com es válido en Internet, sin embargo, no existe un registro tipo A &#8220;server1&#8243; en la zona &#8220;yourcompany.com&#8221;, o sea, el FQDN server1.yourcompnay.com no puede ser resuelto por DNS. Por último server1.yourcompnay.com no actúa cómo un servidor de correo electrónico, sólo envía.</p>
<p>La solución consiste en enmascarar el host de origen: <strong>server1.yourcompnay.com cómo yourcompnay.com</strong></p>
<p><em><strong>Observación: </strong></em>Este Cómo está basado en sendmail 8.13 y Red Hat 5.3 . Aunque las instrucciones son bastante generales, y deberían aplicar para otras distribuciones de Linux con algunos cambios mínimos.</p>
<p>Ejecuta todos los comandos a continuación cómo root:</p>
<pre class="brush: bash; light: true;">
# yum install sendmail sendmail-cf mailx
</pre>
<p>Edita el archivo /etc/mail/sendmail.mc y ubica estas líneas:</p>
<pre class="brush: bash; light: true;">
EXPOSED_USER(`root')dnl
dnl MASQUERADE_AS(`mydomain.tld')dnl
dnl MASQUERADE_DOMAIN(mydomain.tld)dnl
dnl FEATURE(masquerade_entire_domain)dnl
dnl FEATURE(masquerade_envelope)dnl
</pre>
<p>Las lineas que comienzan con &#8220;dnl&#8221; son comentarios. Así que ahora comentaremos y descomentaremos para conseguir nuestro objetivo. Edítalas para que queden así:</p>
<pre class="brush: bash; light: true;">
dnl EXPOSED_USER(`root')dnl
MASQUERADE_AS(`yourcompany.com')dnl
MASQUERADE_DOMAIN(yourcompany.com)dnl
FEATURE(masquerade_entire_domain)dnl
FEATURE(masquerade_envelope)dnl
</pre>
<p>Acá asumimos que el dominio a enmascarar es &#8220;yourcompany.com&#8221;, procura reemplazarlo por el tuyo. Guarda y cierra. Es momento de regenerar el archivo de configuración de sendmail y reiniciar el servicio:</p>
<pre class="brush: bash; light: true;">
# m4 /etc/mail/sendmail.mc &gt; /etc/sendmail.cf
# service sendmail restart
</pre>
<p>¡A probar! si todo salió bien, el destinatario debería recibir el correo:</p>
<pre class="brush: bash; light: true;">
mail -s &quot;hello world&quot; user@example.com &lt; /dev/null
</pre>
<p>El log de sendmail ahora debería lucir así:</p>
<pre class="brush: bash; light: true;">
server1 sendmail[6336]: n9BJkM0Z006334: to=&lt;user@example.com&gt;, ctladdr=&lt;root@server1.yourcompany.com&gt; (0/0), delay=00:00:04, xdelay=00:00:04, mailer=esmtp, pri=120379, relay=mail.example.com. [200.10.20.3], dsn=2.0.0, stat=Sent (Ok: queued as EA4A35EC00B)
</pre>
<p>Si después de los cambios, tus correos aún no llegan al destinatario, es probable que tengas que usar un <a title="Smart host" href="http://en.wikipedia.org/wiki/Smart_host" target="_blank">smart host </a>para despacharlos. Quedará pendiente para el próximo post.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.pwn.cl/2009/10/how-to-sendmail-masquerading-centos-red-hat-5/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Corrección Ortográfica en Pidgin &#8211; Fedora 11</title>
		<link>http://blog.pwn.cl/2009/10/correccion-ortografica-en-pidgin-fedora-11/</link>
		<comments>http://blog.pwn.cl/2009/10/correccion-ortografica-en-pidgin-fedora-11/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 02:49:28 +0000</pubDate>
		<dc:creator>sneira</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[pidgin]]></category>

		<guid isPermaLink="false">http://blog.pwn.cl/?p=109</guid>
		<description><![CDATA[Pidgin, el cliente de mensajería instantánea que uso en linux, para hacer corrección ortográfica de acuerdo a un idioma, se basa en la localización (locale) del sistema. Esta característica está documentado en su FAQ

&#8230; Pidgin currently only supports spell checking in your locale language. This is because gtkspell 2 does not offer a good way [...]]]></description>
			<content:encoded><![CDATA[<p>Pidgin, el cliente de mensajería instantánea que uso en linux, para hacer corrección ortográfica de acuerdo a un idioma, se basa en la localización (<a title="Locale" href="http://en.wikipedia.org/wiki/Locale" target="_blank">locale</a>) del sistema. Esta característica está documentado en <a title="How do I change the language for the Highlight Misspelled words option? ¶" href="http://developer.pidgin.im/wiki/Using%20Pidgin#SpellChecking" target="_blank">su FAQ<br />
</a></p>
<blockquote><p>&#8230; Pidgin currently only supports spell checking in your locale language. This is because gtkspell 2 does not offer a good way for us to know which dictionaries are available or to switch between them &#8230;</p></blockquote>
<p>Una vez identificada la localización, utiliza el diccionario que corresponda para hacer la corrección. Pero para mí esto es un problema: mi sistema utiliza por omisión la localización &#8220;en_US&#8221;, incluyendo a Gnome (o sea, está en inglés), sin embargo, a diario me comunico con mis contactos en español, y requiero de un corrector ortográfico en mi idioma.</p>
<p>Existe una solución, y es establecer manualmente y por usuario, el diccionario a utilizar. Pero esta alternativa no es muy práctica, sobretodo cuando tienes muchos contactos. Si estás en una situación similar, sigue estos pasos:</p>
<p>Para instalar la localización y el diccionario en español, cómo root ejecuta:</p>
<pre class="brush: bash; light: true;">
# yum groupinstall &quot;Spanish Support&quot;
# yum install aspell aspell-es
</pre>
<p>Luego viene el &#8220;hack&#8221;. La idea es hacer creer a pidgin que mi localización es &#8220;es_ES&#8221; en vez de &#8220;en_US&#8221;. Cómo root ejecuta:</p>
<pre class="brush: bash; light: true;">
# touch /usr/bin/pidgin-es &amp;&amp; chmod +x /usr/bin/pidgin-es
</pre>
<p>Con tu editor preferido, edita el archivo /usr/bin/pidgin-es y agrega este contenido:</p>
<pre class="brush: bash; light: true;">
#!/bin/bash
export LANG=es_ES
/usr/bin/pidgin &amp;
</pre>
<p>Por último, edita el acceso directo de Pidgin y apúntalo a este nuevo script: /usr/bin/pidgin-es (en vez de /usr/bin/pidgin). Ve a <strong><em>System &gt; Preferences &gt; Main Menu</em></strong> , en el Menu selecciona <strong><em>Applications &gt; Internet</em></strong> y sobre <strong>Pidgin Internet Messenger</strong> has un clic con el botón derecho, selecciona <em><strong>Properties</strong></em></p>
<p>Esta imagen representa cómo debe quedar</p>
<p style="text-align: center;"><img class="size-medium wp-image-117 aligncenter" title="pidgin-properties" src="http://blog.pwn.cl/wp-content/uploads/2009/10/pidgin-properties-300x125.png" alt="pidgin shortcut properties" width="300" height="125" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.pwn.cl/2009/10/correccion-ortografica-en-pidgin-fedora-11/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Lenovo ThinkPad X61 no suena &#8211; Fedora 11</title>
		<link>http://blog.pwn.cl/2009/10/lenovo-thinkpad-x61-no-suena-fedora-11/</link>
		<comments>http://blog.pwn.cl/2009/10/lenovo-thinkpad-x61-no-suena-fedora-11/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 23:51:49 +0000</pubDate>
		<dc:creator>sneira</dc:creator>
				<category><![CDATA[hardware]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://blog.pwn.cl/?p=99</guid>
		<description><![CDATA[Luego de terminar la instalación de Fedora 11 con Gnome 2.26 , mi laptop no sonaba. La solución es sencilla: ve a System &#62; Preferences &#62; Advanced Volume Control y en la pestaña Switches observarás que sólo está habilitado Headphones, habilita Speaker y ya está.

La solución es simple, pero debo reconocer que me tomó un [...]]]></description>
			<content:encoded><![CDATA[<p>Luego de terminar la instalación de Fedora 11 con Gnome 2.26 , mi laptop no sonaba. La solución es sencilla: ve a <strong><em>System &gt; Preferences &gt; Advanced Volume Control</em> </strong>y en la pestaña <em>Switches</em> observarás que sólo está habilitado <em>Headphones</em>, habilita <em>Speaker </em>y ya está.</p>
<p><img class="aligncenter size-medium wp-image-100" title="alsamixer-gnome" src="http://blog.pwn.cl/wp-content/uploads/2009/10/alsamixer-gnome-300x221.png" alt="alsamixer-gnome" width="300" height="221" /><br />
La solución es simple, pero debo reconocer que me tomó un buen rato descubrir qué estaba pasando, todo estaba en orden: la tarjeta de sonido había sido reconocida por el Sistema Operativo, el volumen estaba al máximo, y el hardware está bueno, me constaba.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.pwn.cl/2009/10/lenovo-thinkpad-x61-no-suena-fedora-11/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
